Received: by mail.netbsd.org (Postfix, from userid 605) id D26CB84DBB; Sun, 26 Nov 2017 17:10:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5DFA784DB9 for ; Sun, 26 Nov 2017 17:10:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 2NrCJBP17xTx for ; Sun, 26 Nov 2017 17:10:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D14CC84C8D for ; Sun, 26 Nov 2017 17:10:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CCB41FB40; Sun, 26 Nov 2017 17:10:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_151171621672990" MIME-Version: 1.0 Date: Sun, 26 Nov 2017 17:10:16 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-exam To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20171126171016.CCB41FB40@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. --_----------=_151171621672990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Nov 26 17:10:16 UTC 2017 Added Files: pkgsrc/devel/py-exam: DESCR Makefile PLIST distinfo Log Message: Exam is a Python toolkit for writing better tests. It aims to remove a lot of the boiler plate testing code one often writes, while still following Python conventions and adhering to the unit testing interface. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-exam/DESCR \ pkgsrc/devel/py-exam/Makefile pkgsrc/devel/py-exam/PLIST \ pkgsrc/devel/py-exam/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_151171621672990 Content-Disposition: inline Content-Length: 3021 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/py-exam/DESCR diff -u /dev/null pkgsrc/devel/py-exam/DESCR:1.1 --- /dev/null Sun Nov 26 17:10:16 2017 +++ pkgsrc/devel/py-exam/DESCR Sun Nov 26 17:10:16 2017 @@ -0,0 +1,3 @@ +Exam is a Python toolkit for writing better tests. It aims to remove a lot of +the boiler plate testing code one often writes, while still following Python +conventions and adhering to the unit testing interface. Index: pkgsrc/devel/py-exam/Makefile diff -u /dev/null pkgsrc/devel/py-exam/Makefile:1.1 --- /dev/null Sun Nov 26 17:10:16 2017 +++ pkgsrc/devel/py-exam/Makefile Sun Nov 26 17:10:16 2017 @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1 2017/11/26 17:10:16 adam Exp $ + +DISTNAME= exam-0.10.6 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=e/exam/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/fluxx/exam +COMMENT= Helpers for better testing +LICENSE= mit + +DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock +BUILD_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose + +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-exam/PLIST diff -u /dev/null pkgsrc/devel/py-exam/PLIST:1.1 --- /dev/null Sun Nov 26 17:10:16 2017 +++ pkgsrc/devel/py-exam/PLIST Sun Nov 26 17:10:16 2017 @@ -0,0 +1,31 @@ +@comment $NetBSD: PLIST,v 1.1 2017/11/26 17:10:16 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/exam/__init__.py +${PYSITELIB}/exam/__init__.pyc +${PYSITELIB}/exam/__init__.pyo +${PYSITELIB}/exam/asserts.py +${PYSITELIB}/exam/asserts.pyc +${PYSITELIB}/exam/asserts.pyo +${PYSITELIB}/exam/cases.py +${PYSITELIB}/exam/cases.pyc +${PYSITELIB}/exam/cases.pyo +${PYSITELIB}/exam/decorators.py +${PYSITELIB}/exam/decorators.pyc +${PYSITELIB}/exam/decorators.pyo +${PYSITELIB}/exam/fixtures.py +${PYSITELIB}/exam/fixtures.pyc +${PYSITELIB}/exam/fixtures.pyo +${PYSITELIB}/exam/helpers.py +${PYSITELIB}/exam/helpers.pyc +${PYSITELIB}/exam/helpers.pyo +${PYSITELIB}/exam/mock.py +${PYSITELIB}/exam/mock.pyc +${PYSITELIB}/exam/mock.pyo +${PYSITELIB}/exam/objects.py +${PYSITELIB}/exam/objects.pyc +${PYSITELIB}/exam/objects.pyo Index: pkgsrc/devel/py-exam/distinfo diff -u /dev/null pkgsrc/devel/py-exam/distinfo:1.1 --- /dev/null Sun Nov 26 17:10:16 2017 +++ pkgsrc/devel/py-exam/distinfo Sun Nov 26 17:10:16 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/11/26 17:10:16 adam Exp $ + +SHA1 (exam-0.10.6.tar.gz) = 24311aaaf70367819100f9d580fc5d55ddc19859 +RMD160 (exam-0.10.6.tar.gz) = 38f6df621626c84e9bd831617af9066624150200 +SHA512 (exam-0.10.6.tar.gz) = 1cc082b4fb9a7270ea81750ee3f34400f3f6eac65dd1488af333a43d0623bf8f9176b73e2948c324bb9c0062296284bae66fe215263456baf9db378676c8a4f0 +Size (exam-0.10.6.tar.gz) = 15028 bytes --_----------=_151171621672990--