diff options
author | drochner <drochner@pkgsrc.org> | 2002-01-29 16:20:47 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2002-01-29 16:20:47 +0000 |
commit | 9ae2c4cd5b7f2d98b56a361ba59dadf7827e90c2 (patch) | |
tree | 38534bf20e21c6338463d83ed1967627bf81dedb /devel | |
parent | 4d1aa937d682c274fce07bea6ed5975f59524f42 (diff) | |
download | pkgsrc-9ae2c4cd5b7f2d98b56a361ba59dadf7827e90c2.tar.gz |
initial import of py-unitgui-1.4.1, a GUI for py-unit,
submitted by Shell Hung per PR pkg/15095
Diffstat (limited to 'devel')
-rw-r--r-- | devel/py-unitgui/DESCR | 5 | ||||
-rw-r--r-- | devel/py-unitgui/Makefile | 16 | ||||
-rw-r--r-- | devel/py-unitgui/PLIST | 3 | ||||
-rw-r--r-- | devel/py-unitgui/distinfo | 5 | ||||
-rw-r--r-- | devel/py-unitgui/patches/patch-aa | 13 |
5 files changed, 42 insertions, 0 deletions
diff --git a/devel/py-unitgui/DESCR b/devel/py-unitgui/DESCR new file mode 100644 index 00000000000..2f861b3d72b --- /dev/null +++ b/devel/py-unitgui/DESCR @@ -0,0 +1,5 @@ +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. This is GUI version of unit testing +framework. diff --git a/devel/py-unitgui/Makefile b/devel/py-unitgui/Makefile new file mode 100644 index 00000000000..ed96bb19256 --- /dev/null +++ b/devel/py-unitgui/Makefile @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/01/29 16:20:47 drochner Exp $ + +DISTNAME= pyunit-1.4.1 +PKGNAME= ${PYPKGPREFIX}-unitgui-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 tk + +PYDISTUTILSPKG= # defined + +.include "../../lang/python/extension.buildlink.mk" +.include "../../x11/py-Tk/buildlink.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/devel/py-unitgui/PLIST b/devel/py-unitgui/PLIST new file mode 100644 index 00000000000..fc06f797234 --- /dev/null +++ b/devel/py-unitgui/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/01/29 16:20:47 drochner Exp $ +${PYSITELIB}/unittestgui.py +${PYSITELIB}/unittestgui.pyc diff --git a/devel/py-unitgui/distinfo b/devel/py-unitgui/distinfo new file mode 100644 index 00000000000..9afd04339e3 --- /dev/null +++ b/devel/py-unitgui/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/01/29 16:20:47 drochner Exp $ + +SHA1 (pyunit-1.4.1.tar.gz) = 5c2e4daa6cf49be85de0823896dc8226c4c3c1e3 +Size (pyunit-1.4.1.tar.gz) = 23636 bytes +SHA1 (patch-aa) = 0c61d338b0aacf8bf6c7574015de57244789c8e5 diff --git a/devel/py-unitgui/patches/patch-aa b/devel/py-unitgui/patches/patch-aa new file mode 100644 index 00000000000..cccfa74097d --- /dev/null +++ b/devel/py-unitgui/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/01/29 16:20:47 drochner Exp $ + +--- setup.py.orig Sat Jan 5 18:55: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 = ['unittestgui'] + ) + + |