diff options
author | drochner <drochner@pkgsrc.org> | 2002-01-29 16:19:03 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2002-01-29 16:19:03 +0000 |
commit | 4d1aa937d682c274fce07bea6ed5975f59524f42 (patch) | |
tree | 4f873cbc5a82c092699d59d91adc487836e414f4 /devel/py-unit | |
parent | 0dd0a5d492e1d86d6dbb9f2188d26af4022593f3 (diff) | |
download | pkgsrc-4d1aa937d682c274fce07bea6ed5975f59524f42.tar.gz |
initial import of py-unit-1.4.1, a unit testing framework for python,
submitted by Shell Hung per PR pkg/15094
Diffstat (limited to 'devel/py-unit')
-rw-r--r-- | devel/py-unit/DESCR | 4 | ||||
-rw-r--r-- | devel/py-unit/Makefile | 15 | ||||
-rw-r--r-- | devel/py-unit/PLIST | 3 | ||||
-rw-r--r-- | devel/py-unit/distinfo | 5 | ||||
-rw-r--r-- | devel/py-unit/patches/patch-aa | 13 |
5 files changed, 40 insertions, 0 deletions
diff --git a/devel/py-unit/DESCR b/devel/py-unit/DESCR new file mode 100644 index 00000000000..df63a587131 --- /dev/null +++ b/devel/py-unit/DESCR @@ -0,0 +1,4 @@ +A unit testing framework for Python based on JUnit and XUnit, the +de-facto standard frameworks for Java and SmallTalk respectively. +Provides a standard, proven, simple and elegant way to write unit +tests for Python software. GUI also provided. diff --git a/devel/py-unit/Makefile b/devel/py-unit/Makefile new file mode 100644 index 00000000000..d06e2cdb690 --- /dev/null +++ b/devel/py-unit/Makefile @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/01/29 16:19:03 drochner Exp $ + +DISTNAME= pyunit-1.4.1 +PKGNAME= ${PYPKGPREFIX}-unit-1.4.1 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pyunit/} + +MAINTAINER= shell@shellhung.org +HOMEPAGE= http://pyunit.sourceforge.net/ +COMMENT= unit testing framework for python + +PYDISTUTILSPKG= # defined + +.include "../../lang/python/extension.buildlink.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/devel/py-unit/PLIST b/devel/py-unit/PLIST new file mode 100644 index 00000000000..678772c07b4 --- /dev/null +++ b/devel/py-unit/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/01/29 16:19:03 drochner Exp $ +${PYSITELIB}/unittest.py +${PYSITELIB}/unittest.pyc diff --git a/devel/py-unit/distinfo b/devel/py-unit/distinfo new file mode 100644 index 00000000000..d29fbfe84d9 --- /dev/null +++ b/devel/py-unit/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/01/29 16:19:03 drochner Exp $ + +SHA1 (pyunit-1.4.1.tar.gz) = 5c2e4daa6cf49be85de0823896dc8226c4c3c1e3 +Size (pyunit-1.4.1.tar.gz) = 23636 bytes +SHA1 (patch-aa) = 9d6c4a32ce69ed9cb3afe7e7317acaaef4343813 diff --git a/devel/py-unit/patches/patch-aa b/devel/py-unit/patches/patch-aa new file mode 100644 index 00000000000..7e7100c7fc2 --- /dev/null +++ b/devel/py-unit/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/01/29 16:19:03 drochner Exp $ + +--- setup.py.orig Sat Jan 5 18:52:12 2002 ++++ setup.py +@@ -11,7 +11,7 @@ + author_email = "stephen_purcell@yahoo.com", + url = "http://pyunit.sourceforge.net/", + +- py_modules = ['unittest', 'unittestgui'] ++ py_modules = ['unittest'] + ) + + |