Received: by mail.netbsd.org (Postfix, from userid 605) id 52AE884DAF; Fri, 29 Sep 2017 14:09:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DA6DB84DA1 for ; Fri, 29 Sep 2017 14:09:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id kvqMOyDVySWD for ; Fri, 29 Sep 2017 14:09:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 62B3884CE3 for ; Fri, 29 Sep 2017 14:09:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5F693FBC7; Fri, 29 Sep 2017 14:09:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1506694141289610" MIME-Version: 1.0 Date: Fri, 29 Sep 2017 14:09:01 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/devel/py-test-utils To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20170929140901.5F693FBC7@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1506694141289610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Fri Sep 29 14:09:01 UTC 2017 Added Files: pkgsrc/devel/py-test-utils: DESCR Makefile PLIST distinfo Log Message: Add py-test-utils-0.1.0: This module provides a collection of utility functions and classes which make writing and running functional and integration tests easier. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-test-utils/DESCR \ pkgsrc/devel/py-test-utils/Makefile pkgsrc/devel/py-test-utils/PLIST \ pkgsrc/devel/py-test-utils/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1506694141289610 Content-Disposition: inline Content-Length: 2380 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/py-test-utils/DESCR diff -u /dev/null pkgsrc/devel/py-test-utils/DESCR:1.1 --- /dev/null Fri Sep 29 14:09:01 2017 +++ pkgsrc/devel/py-test-utils/DESCR Fri Sep 29 14:09:01 2017 @@ -0,0 +1,2 @@ +This module provides a collection of utility functions and classes which +make writing and running functional and integration tests easier. Index: pkgsrc/devel/py-test-utils/Makefile diff -u /dev/null pkgsrc/devel/py-test-utils/Makefile:1.1 --- /dev/null Fri Sep 29 14:09:01 2017 +++ pkgsrc/devel/py-test-utils/Makefile Fri Sep 29 14:09:01 2017 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2017/09/29 14:09:01 joerg Exp $ + +DISTNAME= test-utils-0.1.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=t/test-utils/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/Kami/python-test-utils/ +COMMENT= Utility functions for py.test +LICENSE= apache-2.0 + +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-test-utils/PLIST diff -u /dev/null pkgsrc/devel/py-test-utils/PLIST:1.1 --- /dev/null Fri Sep 29 14:09:01 2017 +++ pkgsrc/devel/py-test-utils/PLIST Fri Sep 29 14:09:01 2017 @@ -0,0 +1,11 @@ +@comment $NetBSD: PLIST,v 1.1 2017/09/29 14:09:01 joerg Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/test_utils/__init__.py +${PYSITELIB}/test_utils/__init__.pyc +${PYSITELIB}/test_utils/__init__.pyo +${PYSITELIB}/test_utils/process_runners.py +${PYSITELIB}/test_utils/process_runners.pyc +${PYSITELIB}/test_utils/process_runners.pyo Index: pkgsrc/devel/py-test-utils/distinfo diff -u /dev/null pkgsrc/devel/py-test-utils/distinfo:1.1 --- /dev/null Fri Sep 29 14:09:01 2017 +++ pkgsrc/devel/py-test-utils/distinfo Fri Sep 29 14:09:01 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/09/29 14:09:01 joerg Exp $ + +SHA1 (test-utils-0.1.0.tar.gz) = 4e9f6597a6eeb22e75219f110d735b16a2327e78 +RMD160 (test-utils-0.1.0.tar.gz) = 1e311cfeeb6c8cdfddddbd1b6a64a29294c241b4 +SHA512 (test-utils-0.1.0.tar.gz) = a02b013be2189df4014ae582057ce7f1c0dc4484355ae63819650c5199c5312e1145b79d10e62fc4c689c0cf3698d0f631ac72548faa3131a943ccf1c7f3417a +Size (test-utils-0.1.0.tar.gz) = 2998 bytes --_----------=_1506694141289610--