Index: head/devel/py-python-subunit/Makefile =================================================================== --- head/devel/py-python-subunit/Makefile (revision 489567) +++ head/devel/py-python-subunit/Makefile (revision 489568) @@ -1,34 +1,35 @@ # $FreeBSD$ PORTNAME= python-subunit DISTVERSION= 1.3.0 PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= freebsd_ports@k-worx.org COMMENT= Python implementation of subunit test streaming protocol -LICENSE= MIT +LICENSE= BSD3CLAUSE APACHE20 +LICENSE_COMB= dual RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}extras>=0:devel/py-extras@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}testtools>=0.9.34:devel/py-testtools@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fixtures>=0:devel/py-fixtures@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}hypothesis>=0:devel/py-hypothesis@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}testscenarios>=0:devel/py-testscenarios@${PY_FLAVOR} USES= python USE_PYTHON= distutils concurrent autoplist NO_ARCH= yes PORTDOCS= NEWS README.rst OPTIONS_DEFINE= DOCS post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/NEWS ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR} .include Index: head/devel/py-python-subunit/pkg-descr =================================================================== --- head/devel/py-python-subunit/pkg-descr (revision 489567) +++ head/devel/py-python-subunit/pkg-descr (revision 489568) @@ -1,19 +1,19 @@ 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 +WWW: https://launchpad.net/subunit