Bug 228685 - [NEW PORT] devel/py-python-subunit: Python implementation of subunit test streaming protocol
Summary: [NEW PORT] devel/py-python-subunit: Python implementation of subunit test str...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Only Me
Assignee: Martin Wilke
URL: https://pypi.org/project/python-subunit/
Keywords:
Depends on:
Blocks: 228692 228697
  Show dependency treegraph
 
Reported: 2018-06-02 14:40 UTC by Kai Knoblich
Modified: 2018-06-02 19:26 UTC (History)
2 users (show)

See Also:


Attachments
py-python-subunit.patch (3.73 KB, patch)
2018-06-02 14:40 UTC, Kai Knoblich
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Kai Knoblich freebsd_committer freebsd_triage 2018-06-02 14:40:55 UTC
Created attachment 193924 [details]
py-python-subunit.patch

Hello,

attached is the patch from svn for the Python package devel/py-python-subunit, a Python implementation of the Subunit streaming protocol for test results.

QA:
~~~
- poudriere (11.1-RELEASE amd64 + i386) for each py27 + py36 flavor -> OK
- portlint -> OK
Comment 1 commit-hook freebsd_committer freebsd_triage 2018-06-02 19:26:21 UTC
A commit references this bug:

Author: miwi
Date: Sat Jun  2 19:25:42 UTC 2018
New revision: 471399
URL: https://svnweb.freebsd.org/changeset/ports/471399

Log:
  Subunit is a streaming protocol for test results.

  There are two major revisions of the protocol. Version 1 was trivially human
  readable but had significant defects as far as highly parallel testing was
  concerned - it had no room for doing discovery and execution in parallel,
  required substantial buffering when multiplexing and was fragile - a corrupt
  byte could cause an entire stream to be misparsed. Version 1.1 added
  encapsulation of binary streams which mitigated some of the issues but the core
  remained.

  Version 2 shares many of the good characteristics of Version 1 - it can be
  embedded into a regular text stream (e.g. from a build system) and it still
  models xUnit style test execution. It also fixes many of the issues with
  Version 1 - Version 2 can be multiplexed without excessive buffering (in time
  or space), it has a well defined recovery mechanism for dealing with corrupted
  streams (e.g. where two processes write to the same stream concurrently, or
  where the stream generator suffers a bug).

  WWW: http://launchpad.net/subunit

  PR:		228685
  Submitted by:	freebsd_ports@k-worx.org
  Sponsored by:	iXsystems Inc.

Changes:
  head/devel/Makefile
  head/devel/py-python-subunit/
  head/devel/py-python-subunit/Makefile
  head/devel/py-python-subunit/distinfo
  head/devel/py-python-subunit/pkg-descr