[Python-modules-commits] r25683 - in packages/nose2/trunk (12 files)

barry at users.alioth.debian.org barry at users.alioth.debian.org
Tue Aug 27 19:48:12 UTC 2013


    Date: Tuesday, August 27, 2013 @ 19:48:11
  Author: barry
Revision: 25683

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

Added:
  packages/nose2/trunk/debian/
  packages/nose2/trunk/debian/changelog
  packages/nose2/trunk/debian/compat
  packages/nose2/trunk/debian/control
  packages/nose2/trunk/debian/copyright
  packages/nose2/trunk/debian/patches/
  packages/nose2/trunk/debian/patches/series
  packages/nose2/trunk/debian/patches/setup-py-reqs.patch
  packages/nose2/trunk/debian/rules
  packages/nose2/trunk/debian/source/
  packages/nose2/trunk/debian/source/format
  packages/nose2/trunk/debian/watch


Property changes on: packages/nose2/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/nose2/trunk/debian/changelog
===================================================================
--- packages/nose2/trunk/debian/changelog	                        (rev 0)
+++ packages/nose2/trunk/debian/changelog	2013-08-27 19:48:11 UTC (rev 25683)
@@ -0,0 +1,5 @@
+nose2 (0.4.7-1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #656589)
+
+ -- Barry Warsaw <barry at debian.org>  Mon, 26 Aug 2013 11:04:53 -0400

Added: packages/nose2/trunk/debian/compat
===================================================================
--- packages/nose2/trunk/debian/compat	                        (rev 0)
+++ packages/nose2/trunk/debian/compat	2013-08-27 19:48:11 UTC (rev 25683)
@@ -0,0 +1 @@
+8

Added: packages/nose2/trunk/debian/control
===================================================================
--- packages/nose2/trunk/debian/control	                        (rev 0)
+++ packages/nose2/trunk/debian/control	2013-08-27 19:48:11 UTC (rev 25683)
@@ -0,0 +1,40 @@
+Source: nose2
+Section: python
+Priority: optional
+Maintainer: Barry Warsaw <barry at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper,
+               dh-python,
+               python-all,
+               python-setuptools,
+               python-six,
+               python-tox,
+               python-unittest2,
+               python3-all,
+               python3-setuptools,
+               python3-six
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Standards-Version: 3.9.4
+Homepage: https://nose2.readthedocs.org/en/latest/index.html
+
+Package: python-nose2-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends}, ${sphinxdoc:Depends}
+Description: next generation of nicer testing for Python (documentation)
+ This is the package documentation.
+
+Package: python-nose2
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Suggests: python-nose2-doc, python3-nose2
+Description: next generation of nicer testing for Python (Python 2)
+ This is the Python 2 package.
+
+Package: python3-nose2
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Suggests: python-nose2, python-nose2-doc
+Description: next generation of nicer testing for Python (Python 3)
+ This is the Python 3 package.

Added: packages/nose2/trunk/debian/copyright
===================================================================
--- packages/nose2/trunk/debian/copyright	                        (rev 0)
+++ packages/nose2/trunk/debian/copyright	2013-08-27 19:48:11 UTC (rev 25683)
@@ -0,0 +1,37 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: nose2
+Upstream-Contact: Jason Pellerin
+Source: https://github.com/nose-devs/nose2
+
+Files: *
+Copyright: 2012 Jason Pellerin
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2013 Barry Warsaw <barry at debian.org>
+License: BSD-2-clause
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+  * Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ .
+  * Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the
+    distribution.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Added: packages/nose2/trunk/debian/patches/series
===================================================================
--- packages/nose2/trunk/debian/patches/series	                        (rev 0)
+++ packages/nose2/trunk/debian/patches/series	2013-08-27 19:48:11 UTC (rev 25683)
@@ -0,0 +1 @@
+setup-py-reqs.patch

Added: packages/nose2/trunk/debian/patches/setup-py-reqs.patch
===================================================================
--- packages/nose2/trunk/debian/patches/setup-py-reqs.patch	                        (rev 0)
+++ packages/nose2/trunk/debian/patches/setup-py-reqs.patch	2013-08-27 19:48:11 UTC (rev 25683)
@@ -0,0 +1,42 @@
+--- a/setup.py
++++ b/setup.py
+@@ -69,7 +69,7 @@
+             '%s = nose2:discover' % SCRIPT2,
+         ],
+     }
+-    params['install_requires'] = REQS
++    #params['install_requires'] = REQS
+     params['test_suite'] = 'nose2.compat.unittest.collector'
+ 
+ setup(**params)
+--- a/tox.ini
++++ b/tox.ini
+@@ -24,6 +24,7 @@
+ deps=-r{toxinidir}/requirements.txt
+      -r{toxinidir}/requirements-docs.txt
+ commands=python -m unittest discover []
++sitepackages=True
+ 
+ [testenv:py32]
+ deps=-r{toxinidir}/requirements.txt
+@@ -34,6 +35,7 @@
+ deps=-r{toxinidir}/requirements.txt
+      -r{toxinidir}/requirements-docs.txt
+ commands=python -m unittest discover []
++sitepackages=True
+ 
+ [testenv:self26]
+ deps=-r{toxinidir}/requirements.txt
+--- a/requirements-docs.txt
++++ /dev/null
+@@ -1 +0,0 @@
+-Sphinx>=1.0.5
+--- a/requirements-py26.txt
++++ /dev/null
+@@ -1,2 +0,0 @@
+-unittest2==0.5.1
+-argparse>=1.2.1
+--- a/requirements.txt
++++ /dev/null
+@@ -1 +0,0 @@
+-six>=1.1,<1.4

Added: packages/nose2/trunk/debian/rules
===================================================================
--- packages/nose2/trunk/debian/rules	                        (rev 0)
+++ packages/nose2/trunk/debian/rules	2013-08-27 19:48:11 UTC (rev 25683)
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+
+DH_VERBOSE=1
+
+# Prevent setuptools/distribute from accessing the internet.
+export http_proxy = http://127.0.9.1:9
+export https_proxy = https://127.0.9.1:9
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+	HOME={home_dir} \
+	PYBUILD_SYSTEM=custom \
+	PYBUILD_TEST_ARGS="tox -e py27,py33" dh_auto_test


Property changes on: packages/nose2/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/nose2/trunk/debian/source/format
===================================================================
--- packages/nose2/trunk/debian/source/format	                        (rev 0)
+++ packages/nose2/trunk/debian/source/format	2013-08-27 19:48:11 UTC (rev 25683)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/nose2/trunk/debian/watch
===================================================================
--- packages/nose2/trunk/debian/watch	                        (rev 0)
+++ packages/nose2/trunk/debian/watch	2013-08-27 19:48:11 UTC (rev 25683)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/n/nose2/nose2-([0-9.]+).tar.gz




More information about the Python-modules-commits mailing list