r2742 - in zope.testing/trunk/debian (6 files)

menesis-guest at users.alioth.debian.org menesis-guest at users.alioth.debian.org
Thu Jul 4 00:37:44 UTC 2013


    Date: Thursday, July 4, 2013 @ 00:37:40
  Author: menesis-guest
Revision: 2742

* Team upload.
* debian/control:
  - enable autopkgtest (Closes: #692694).
  - use canonical URI for Vcs-Svn and Vcs-Browser.
  - bump Standards-Version to 3.9.4
* Drop the use of python-van.pydeb

Modified:
  zope.testing/trunk/debian/changelog
  zope.testing/trunk/debian/control
  zope.testing/trunk/debian/copyright
  zope.testing/trunk/debian/rules
  zope.testing/trunk/debian/test_helper
  zope.testing/trunk/debian/tests/control

Modified: zope.testing/trunk/debian/changelog
===================================================================
--- zope.testing/trunk/debian/changelog	2013-07-03 23:48:50 UTC (rev 2741)
+++ zope.testing/trunk/debian/changelog	2013-07-04 00:37:40 UTC (rev 2742)
@@ -1,8 +1,18 @@
 zope.testing (3.10.2-2) UNRELEASED; urgency=low
 
+  * Team upload.
+
+  [ Gediminas Paulauskas ]
+  * debian/control:
+    - enable autopkgtest (Closes: #692694).
+    - use canonical URI for Vcs-Svn and Vcs-Browser.
+    - bump Standards-Version to 3.9.4
+  * Drop the use of python-van.pydeb
+
+  [ Arnaud Fontaine ]
   * debian/source/options: ignore .egg-info directory.
 
- -- Arnaud Fontaine <arnau at debian.org>  Tue, 08 Nov 2011 23:30:40 +0900
+ -- Gediminas Paulauskas <menesis at pov.lt>  Thu, 04 Jul 2013 03:33:30 +0300
 
 zope.testing (3.10.2-1) unstable; urgency=low
 
@@ -63,7 +73,7 @@
 
 zope.testing (3.8.3-2) unstable; urgency=low
 
-  * debian/control: build-depend on pyton-vab.pydeb >= 1.3.0-2.
+  * debian/control: build-depend on python-van.pydeb >= 1.3.0-2.
     (Closes: #552923)
 
  -- Fabio Tranchitella <kobold at debian.org>  Sun, 08 Nov 2009 11:12:13 +0100

Modified: zope.testing/trunk/debian/control
===================================================================
--- zope.testing/trunk/debian/control	2013-07-03 23:48:50 UTC (rev 2741)
+++ zope.testing/trunk/debian/control	2013-07-04 00:37:40 UTC (rev 2742)
@@ -8,22 +8,16 @@
 Build-Depends: debhelper (>= 7.0.50~),
                python-all (>= 2.6.6-3~),
                python-setuptools,
-               python-van.pydeb
-Standards-Version: 3.9.2
+Standards-Version: 3.9.4
 X-Python-Version: >= 2.4
+XS-Testsuite: autopkgtest
 Homepage: http://pypi.python.org/pypi/zope.testing
-Vcs-Svn: svn://svn.debian.org/pkg-zope/zope.testing/trunk
-Vcs-Browser: http://svn.debian.org/viewsvn/pkg-zope/zope.testing/trunk
+Vcs-Svn: svn://anonscm.debian.org/pkg-zope/zope.testing/trunk
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-zope/zope.testing/trunk
 
 Package: python-zope.testing
 Architecture: all
-Depends: python-zope.testrunner,
-         ${pydeb:Depends},
-         ${python:Depends},
-         ${misc:Depends}
-Provides: ${pydeb:Provides}, ${python:Provides}
-Suggests: ${pydeb:Suggests}
-Conflicts: zope3, python-zodb (<< 2.9)
+Depends: ${python:Depends}, ${misc:Depends}
 Description: Zope testing helpers
  This package provides a number of testing frameworks. It includes a flexible
  test runner, and supports both doctest and unittest. 

Modified: zope.testing/trunk/debian/copyright
===================================================================
--- zope.testing/trunk/debian/copyright	2013-07-03 23:48:50 UTC (rev 2741)
+++ zope.testing/trunk/debian/copyright	2013-07-04 00:37:40 UTC (rev 2742)
@@ -1,4 +1,4 @@
-Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=174
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: zope.testing
 Upstream-Contact: Zope Foundation and Contributors <zope-dev at zope.org>
 Source: http://pypi.python.org/pypi/zope.testing

Modified: zope.testing/trunk/debian/rules
===================================================================
--- zope.testing/trunk/debian/rules	2013-07-03 23:48:50 UTC (rev 2741)
+++ zope.testing/trunk/debian/rules	2013-07-04 00:37:40 UTC (rev 2742)
@@ -1,4 +1,4 @@
 #!/usr/bin/make -f
 
 %:
-	dh --with pydeb --with python2 $@
+	dh $@ --with python2

Modified: zope.testing/trunk/debian/test_helper
===================================================================
--- zope.testing/trunk/debian/test_helper	2013-07-03 23:48:50 UTC (rev 2741)
+++ zope.testing/trunk/debian/test_helper	2013-07-04 00:37:40 UTC (rev 2742)
@@ -2,7 +2,7 @@
 
 set -e
 
-echo "This script is deprecated, please use teh corresponding script in the python-zope.testrunner package."
+echo "This script is deprecated, please use the corresponding script in the python-zope.testrunner package."
 
 if [ ! -x /usr/bin/zope-testrunner ]; then
     echo "Could not find /usr/bin/zope-testrunner, please install python-zope.testrunner."
@@ -14,7 +14,7 @@
        testfilter="-m $(van-pydeb src_to_py $(grep 'Source: ' debian/control | sed 's/Source: //'))"
    else
        echo "Could not find van-pydeb to guess the python package name. You should have your tests depend on it or you "
-       echo "must specify testfilter variable, something like -p package_name, see zope-testrunner --help for details."
+       echo "must specify testfilter variable, something like -s package_name, see zope-testrunner --help for details."
        exit 1
    fi
 fi 

Modified: zope.testing/trunk/debian/tests/control
===================================================================
--- zope.testing/trunk/debian/tests/control	2013-07-03 23:48:50 UTC (rev 2741)
+++ zope.testing/trunk/debian/tests/control	2013-07-04 00:37:40 UTC (rev 2742)
@@ -1,3 +1,2 @@
 Depends: @, python-all, python-zope.testrunner
 Tests: all
-Features: no-build-needed




More information about the pkg-zope-developers mailing list