Py test runner, for setup.py It is required for devel/py-irc as build depend Redports: https://redports.org/buildarchive/20130322161201-10881/ Fix: See attached patch
Responsible Changed From-To: freebsd-ports-bugs->freebsd-python freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Responsible Changed From-To: freebsd-python->rm I will take it.
Author: rm Date: Fri Mar 22 19:35:13 2013 New Revision: 314953 URL: http://svnweb.freebsd.org/changeset/ports/314953 Log: Setup scripts can use pytest-runner to add setup.py test support for pytest runner. WWW: https://bitbucket.org/jaraco/pytest-runner PR: 177238 Submitted by: William Grzybowski <william88@gmail.com> Added: head/devel/py-pytest-runner/ head/devel/py-pytest-runner/Makefile (contents, props changed) head/devel/py-pytest-runner/distinfo (contents, props changed) head/devel/py-pytest-runner/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Mar 22 19:00:36 2013 (r314952) +++ head/devel/Makefile Fri Mar 22 19:35:13 2013 (r314953) @@ -3595,6 +3595,7 @@ SUBDIR += py-pyshapelib SUBDIR += py-pytemplate SUBDIR += py-pytest + SUBDIR += py-pytest-runner SUBDIR += py-pythonbrew SUBDIR += py-pytz SUBDIR += py-pyutil Added: head/devel/py-pytest-runner/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-runner/Makefile Fri Mar 22 19:35:13 2013 (r314953) @@ -0,0 +1,21 @@ +# Created by: William Grzybowski <william88@gmail.com> +# $FreeBSD$ + +PORTNAME= pytest-runner +PORTVERSION= 1.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= william88@gmail.com +COMMENT= Test support for pytest runner in setup.py + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hgtools>=0:${PORTSDIR}/devel/py-hgtools + +USE_ZIP= yes +USE_PYTHON= -2.7 +USE_PYDISTUTILS= easy_install + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% + +.include <bsd.port.mk> Added: head/devel/py-pytest-runner/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-runner/distinfo Fri Mar 22 19:35:13 2013 (r314953) @@ -0,0 +1,2 @@ +SHA256 (pytest-runner-1.2.zip) = 1a7ae452115f454a92f94f124c093eae65c8f3cc942d2e16a6b879b813396ead +SIZE (pytest-runner-1.2.zip) = 5030 Added: head/devel/py-pytest-runner/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-runner/pkg-descr Fri Mar 22 19:35:13 2013 (r314953) @@ -0,0 +1,4 @@ +Setup scripts can use pytest-runner to add setup.py test support +for pytest runner. + +WWW: https://bitbucket.org/jaraco/pytest-runner _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, thanks.