Date: Wed, 4 Apr 2018 18:49:27 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466452 - in head/devel: . py-testresources Message-ID: <201804041849.w34InRUJ018316@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Wed Apr 4 18:49:27 2018 New Revision: 466452 URL: https://svnweb.freebsd.org/changeset/ports/466452 Log: Add py-testresources 2.0.1 Testresources extends unittest with a clean and simple api to provide test optimisation where expensive common resources are needed for test cases - for example sample working trees for VCS systems, reference databases for enterprise applications, or web servers ... let imagination run wild. WWW: https://pypi.python.org/pypi/testresources Added: head/devel/py-testresources/ head/devel/py-testresources/Makefile (contents, props changed) head/devel/py-testresources/distinfo (contents, props changed) head/devel/py-testresources/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Apr 4 18:29:15 2018 (r466451) +++ head/devel/Makefile Wed Apr 4 18:49:27 2018 (r466452) @@ -4978,6 +4978,7 @@ SUBDIR += py-testinfra SUBDIR += py-testoob SUBDIR += py-testpath + SUBDIR += py-testresources SUBDIR += py-testtools SUBDIR += py-threema-msgapi SUBDIR += py-thrift Added: head/devel/py-testresources/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-testresources/Makefile Wed Apr 4 18:49:27 2018 (r466452) @@ -0,0 +1,28 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= testresources +PORTVERSION= 2.0.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= PyUnit extension for managing expensive test resources + +LICENSE= APACHE20 BSD3CLAUSE +LICENSE_COMB= dual +LICENSE_FILE_APACHE20= ${WRKSRC}/Apache-2.0 +LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/BSD + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.3:devel/py-pbr@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.8:devel/py-pbr@${FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>=0:textproc/py-docutils@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}fixtures>=0:devel/py-fixtures@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}testtools>=0:devel/py-testtools@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include <bsd.port.mk> Added: head/devel/py-testresources/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-testresources/distinfo Wed Apr 4 18:49:27 2018 (r466452) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522843487 +SHA256 (testresources-2.0.1.tar.gz) = ee9d1982154a1e212d4e4bac6b610800bfb558e4fb853572a827bc14a96e4417 +SIZE (testresources-2.0.1.tar.gz) = 41948 Added: head/devel/py-testresources/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-testresources/pkg-descr Wed Apr 4 18:49:27 2018 (r466452) @@ -0,0 +1,6 @@ +Testresources extends unittest with a clean and simple api to provide test +optimisation where expensive common resources are needed for test cases - for +example sample working trees for VCS systems, reference databases for enterprise +applications, or web servers ... let imagination run wild. + +WWW: https://pypi.python.org/pypi/testresources
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804041849.w34InRUJ018316>