summaryrefslogtreecommitdiff
path: root/devel/py-unit
diff options
context:
space:
mode:
authordrochner <drochner>2002-01-29 16:19:03 +0000
committerdrochner <drochner>2002-01-29 16:19:03 +0000
commit322c0602ef608b59dde98f3a15af5484689f5fef (patch)
tree4f873cbc5a82c092699d59d91adc487836e414f4 /devel/py-unit
parent361649b22b737e13c62c50d1122b3483d351140d (diff)
downloadpkgsrc-322c0602ef608b59dde98f3a15af5484689f5fef.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/DESCR4
-rw-r--r--devel/py-unit/Makefile15
-rw-r--r--devel/py-unit/PLIST3
-rw-r--r--devel/py-unit/distinfo5
-rw-r--r--devel/py-unit/patches/patch-aa13
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']
+ )
+
+