[Python-modules-commits] r25152 - in packages/python-scripttest/trunk (9 files)

toabctl-guest at users.alioth.debian.org toabctl-guest at users.alioth.debian.org
Thu Jul 11 09:56:56 UTC 2013


    Date: Thursday, July 11, 2013 @ 09:56:54
  Author: toabctl-guest
Revision: 25152

[svn-inject] Applying Debian modifications (1.2) to trunk

Added:
  packages/python-scripttest/trunk/debian/
  packages/python-scripttest/trunk/debian/changelog
  packages/python-scripttest/trunk/debian/compat
  packages/python-scripttest/trunk/debian/control
  packages/python-scripttest/trunk/debian/copyright
  packages/python-scripttest/trunk/debian/rules
  packages/python-scripttest/trunk/debian/source/
  packages/python-scripttest/trunk/debian/source/format
  packages/python-scripttest/trunk/debian/watch


Property changes on: packages/python-scripttest/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-scripttest/trunk/debian/changelog
===================================================================
--- packages/python-scripttest/trunk/debian/changelog	                        (rev 0)
+++ packages/python-scripttest/trunk/debian/changelog	2013-07-11 09:56:54 UTC (rev 25152)
@@ -0,0 +1,5 @@
+python-scripttest (1.2) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #716667)
+
+ -- Thomas Bechtold <thomasbechtold at jpberlin.de>  Thu, 11 Jul 2013 10:07:19 +0200

Added: packages/python-scripttest/trunk/debian/compat
===================================================================
--- packages/python-scripttest/trunk/debian/compat	                        (rev 0)
+++ packages/python-scripttest/trunk/debian/compat	2013-07-11 09:56:54 UTC (rev 25152)
@@ -0,0 +1 @@
+9

Added: packages/python-scripttest/trunk/debian/control
===================================================================
--- packages/python-scripttest/trunk/debian/control	                        (rev 0)
+++ packages/python-scripttest/trunk/debian/control	2013-07-11 09:56:54 UTC (rev 25152)
@@ -0,0 +1,32 @@
+Source: python-scripttest
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Thomas Bechtold <thomasbechtold at jpberlin.de>
+Standards-Version: 3.9.4
+Build-Depends: debhelper (>= 9),
+               python-all (>= 2.6.6-3~),
+               python3-all (>= 3.1.2-6~),
+               python-setuptools,
+               python3-setuptools
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.0
+Homepage: http://pythonpaste.org/scripttest/
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-scripttest/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-scripttest/trunk/
+
+Package: python-scripttest
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Helper to test command-line scripts
+ 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.
+
+Package: python3-scripttest
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Helper to test command-line scripts
+  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.

Added: packages/python-scripttest/trunk/debian/copyright
===================================================================
--- packages/python-scripttest/trunk/debian/copyright	                        (rev 0)
+++ packages/python-scripttest/trunk/debian/copyright	2013-07-11 09:56:54 UTC (rev 25152)
@@ -0,0 +1,26 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-scripttest
+Source: https://pypi.python.org/pypi/ScriptTest/
+
+Files: scripttest/__init__.py
+Copyright: 2005 - 2007 Ian Bicking <ianb at colorstudy.com>
+License: MIT
+
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+.
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+.
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.

Added: packages/python-scripttest/trunk/debian/rules
===================================================================
--- packages/python-scripttest/trunk/debian/rules	                        (rev 0)
+++ packages/python-scripttest/trunk/debian/rules	2013-07-11 09:56:54 UTC (rev 25152)
@@ -0,0 +1,34 @@
+#!/usr/bin/make -f
+
+
+PYVERS :=  $(shell pyversions -r)
+PY3VERS := $(shell py3versions -r)
+
+%:
+	dh $@ --with python2,python3
+
+override_dh_auto_build:
+	set -ex; \
+	for py in $(PYVERS) $(PY3VERS); do \
+		$$py setup.py build; \
+	done
+
+override_dh_auto_install:
+	set -ex; \
+	for py in $(PYVERS); do \
+		$$py setup.py install --skip-build --no-compile \
+		                      --root debian/python-scripttest \
+		                      --install-layout=deb; \
+	done
+	set -ex; \
+	for py in $(PY3VERS); do \
+		$$py setup.py install --skip-build --no-compile \
+		                      --root debian/python3-scripttest \
+		                      --install-layout=deb; \
+	done
+
+override_dh_clean:
+	dh_clean
+	rm -rf build dist PKG-INFO ScriptTest.egg-info
+	rm -rf scripttest/__pycache__
+	find -name '*.py[co]' -delete


Property changes on: packages/python-scripttest/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-scripttest/trunk/debian/source/format
===================================================================
--- packages/python-scripttest/trunk/debian/source/format	                        (rev 0)
+++ packages/python-scripttest/trunk/debian/source/format	2013-07-11 09:56:54 UTC (rev 25152)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-scripttest/trunk/debian/watch
===================================================================
--- packages/python-scripttest/trunk/debian/watch	                        (rev 0)
+++ packages/python-scripttest/trunk/debian/watch	2013-07-11 09:56:54 UTC (rev 25152)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/S/ScriptTest/ScriptTest-([\d.]*)\.tar.gz 




More information about the Python-modules-commits mailing list