svn commit: r303867 - in head/devel: . py-ScriptTest
Nicola Vitale
nivit at FreeBSD.org
Sat Sep 8 06:23:03 UTC 2012
Author: nivit
Date: Sat Sep 8 06:23:02 2012
New Revision: 303867
URL: http://svn.freebsd.org/changeset/ports/303867
Log:
ScriptTest is a library to help you test your interactive command-line
applications.
With it you can easily run the command (in a subprocess) and see the
output (stdout, stderr) and any file modifications.
WWW: http://pythonpaste.org/scripttest/
Added:
head/devel/py-ScriptTest/
head/devel/py-ScriptTest/Makefile (contents, props changed)
head/devel/py-ScriptTest/distinfo (contents, props changed)
head/devel/py-ScriptTest/pkg-descr (contents, props changed)
head/devel/py-ScriptTest/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Sep 8 05:57:32 2012 (r303866)
+++ head/devel/Makefile Sat Sep 8 06:23:02 2012 (r303867)
@@ -3194,6 +3194,7 @@
SUBDIR += py-Products.validation
SUBDIR += py-RPyC
SUBDIR += py-Record
+ SUBDIR += py-ScriptTest
SUBDIR += py-SymbolType
SUBDIR += py-TGScheduler
SUBDIR += py-ToscaWidgets
Added: head/devel/py-ScriptTest/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-ScriptTest/Makefile Sat Sep 8 06:23:02 2012 (r303867)
@@ -0,0 +1,23 @@
+# New ports collection makefile for: py-ScriptTest
+# Date created: 2012-09-08
+# Whom: Nicola Vitale <nivit at FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= ScriptTest
+PORTVERSION= 1.2
+#PORTREVISION= 0
+CATEGORIES= devel
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= nivit at FreeBSD.org
+COMMENT= Helper to test command-line scripts
+
+LICENSE= MIT
+
+USE_PYTHON= yes
+USE_PYDISTUTILS= easy_install
+
+.include <bsd.port.mk>
Added: head/devel/py-ScriptTest/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-ScriptTest/distinfo Sat Sep 8 06:23:02 2012 (r303867)
@@ -0,0 +1,2 @@
+SHA256 (ScriptTest-1.2.tar.gz) = 158c34cfa736288c33177588572c2bb3372b836eb4c90b05222911b4ff976942
+SIZE (ScriptTest-1.2.tar.gz) = 7208
Added: head/devel/py-ScriptTest/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-ScriptTest/pkg-descr Sat Sep 8 06:23:02 2012 (r303867)
@@ -0,0 +1,7 @@
+ScriptTest is a library to help you test your interactive command-line
+applications.
+
+With it you can easily run the command (in a subprocess) and see the
+output (stdout, stderr) and any file modifications.
+
+WWW: http://pythonpaste.org/scripttest/
Added: head/devel/py-ScriptTest/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-ScriptTest/pkg-plist Sat Sep 8 06:23:02 2012 (r303867)
@@ -0,0 +1,2 @@
+ at comment $FreeBSD$
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
More information about the svn-ports-all
mailing list