r2868 - in zope.browser/trunk/debian (7 files)

barry at users.alioth.debian.org barry at users.alioth.debian.org
Tue Jul 8 20:16:10 UTC 2014


    Date: Tuesday, July 8, 2014 @ 20:16:10
  Author: barry
Revision: 2868

* Team upload.
* New upstream release.
* d/compat: Bumped to version 9.
* d/control:
  - Added python3-zope.browser binary package.
  - Updated Build-Depends.
  - Bumped Standards-Version to 3.9.5.
  - Added X-Python3-Version header.
  - Added XS-Testsuite header.  (Closes: #692693)
  - Added myself to Uploaders.
  - wrap-and-sort
* d/rules: Switched to --buildsystem=pybuild and dh_python3.
* d/tests:
  - Simplified to just prove that the imports work.
  - Added a Python 3 test.

Added:
  zope.browser/trunk/debian/tests/all-3
Modified:
  zope.browser/trunk/debian/changelog
  zope.browser/trunk/debian/compat
  zope.browser/trunk/debian/control
  zope.browser/trunk/debian/rules
  zope.browser/trunk/debian/tests/all
  zope.browser/trunk/debian/tests/control

Modified: zope.browser/trunk/debian/changelog
===================================================================
--- zope.browser/trunk/debian/changelog	2014-07-08 19:55:27 UTC (rev 2867)
+++ zope.browser/trunk/debian/changelog	2014-07-08 20:16:10 UTC (rev 2868)
@@ -1,3 +1,23 @@
+zope.browser (2.0.2-1) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * New upstream release.
+  * d/compat: Bumped to version 9.
+  * d/control:
+    - Added python3-zope.browser binary package.
+    - Updated Build-Depends.
+    - Bumped Standards-Version to 3.9.5.
+    - Added X-Python3-Version header.
+    - Added XS-Testsuite header.  (Closes: #692693)
+    - Added myself to Uploaders.
+    - wrap-and-sort
+  * d/rules: Switched to --buildsystem=pybuild and dh_python3.
+  * d/tests:
+    - Simplified to just prove that the imports work.
+    - Added a Python 3 test.
+
+ -- Barry Warsaw <barry at debian.org>  Tue, 08 Jul 2014 16:04:43 -0400
+
 zope.browser (1.3-2) unstable; urgency=low
 
   * Team upload.
@@ -14,7 +34,7 @@
   * debian/control: add Homepage and Vcs-Browser fields.
   * Add debian/clean to get rid of egg-info/* to prevent FTBFS if
     built twice.
-  
+
   [ Gediminas Paulauskas ]
   * New upstream release.
   * Switch to dh_python2. (Closes: #617159)

Modified: zope.browser/trunk/debian/compat
===================================================================
--- zope.browser/trunk/debian/compat	2014-07-08 19:55:27 UTC (rev 2867)
+++ zope.browser/trunk/debian/compat	2014-07-08 20:16:10 UTC (rev 2868)
@@ -1 +1 @@
-7
+9

Modified: zope.browser/trunk/debian/control
===================================================================
--- zope.browser/trunk/debian/control	2014-07-08 19:55:27 UTC (rev 2867)
+++ zope.browser/trunk/debian/control	2014-07-08 20:16:10 UTC (rev 2868)
@@ -3,18 +3,36 @@
 Priority: extra
 Maintainer: Debian/Ubuntu Zope Team <pkg-zope-developers at lists.alioth.debian.org>
 Uploaders: Brian Sutherland <brian at vanguardistas.net>,
-           Fabio Tranchitella <kobold at debian.org>
-Build-Depends: debhelper (>= 7),
+           Fabio Tranchitella <kobold at debian.org>,
+           Barry Warsaw <barry at debian.org>
+Build-Depends: debhelper (>= 9),
+               dh-python,
                python-all (>= 2.6.6-14~),
-               python-setuptools
-Standards-Version: 3.9.2
+               python-setuptools,
+               python-zope.interface,
+               python3-all,
+               python3-setuptools,
+               python3-zope.interface
+Standards-Version: 3.9.5
 X-Python-Version: >= 2.4
+X-Python3-Version: >= 3.2
+XS-Testsuite: autopkgtest
 Vcs-Svn: svn://svn.debian.org/pkg-zope/zope.browser/trunk
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-zope/zope.browser/trunk
 Homepage: http://pypi.python.org/pypi/zope.browser
 
 Package: python-zope.browser
 Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}
+Depends: ${misc:Depends}, ${python:Depends}
 Description: Shared Zope Toolkit browser components
  This package provides shared browser components for the Zope Toolkit.
+ .
+ This is the Python 2 version.
+
+Package: python3-zope.browser
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Shared Zope Toolkit browser components
+ This package provides shared browser components for the Zope Toolkit.
+ .
+ This is the Python 3 version.

Modified: zope.browser/trunk/debian/rules
===================================================================
--- zope.browser/trunk/debian/rules	2014-07-08 19:55:27 UTC (rev 2867)
+++ zope.browser/trunk/debian/rules	2014-07-08 20:16:10 UTC (rev 2868)
@@ -1,4 +1,7 @@
 #!/usr/bin/make -f
 
+export PYBUILD_NAME=zope.browser
+
+
 %:
-	dh --with python2 $@
+	dh $@ --with python2,python3 --buildsystem=pybuild

Modified: zope.browser/trunk/debian/tests/all
===================================================================
--- zope.browser/trunk/debian/tests/all	2014-07-08 19:55:27 UTC (rev 2867)
+++ zope.browser/trunk/debian/tests/all	2014-07-08 20:16:10 UTC (rev 2868)
@@ -1,2 +1,4 @@
-#!/bin/bash
-. /usr/share/python-zope.testing/test_helper
+#!/usr/bin/python
+
+import zope.browser
+print zope.browser

Added: zope.browser/trunk/debian/tests/all-3
===================================================================
--- zope.browser/trunk/debian/tests/all-3	                        (rev 0)
+++ zope.browser/trunk/debian/tests/all-3	2014-07-08 20:16:10 UTC (rev 2868)
@@ -0,0 +1,4 @@
+#!/usr/bin/python3
+
+import zope.browser
+print(zope.browser)

Modified: zope.browser/trunk/debian/tests/control
===================================================================
--- zope.browser/trunk/debian/tests/control	2014-07-08 19:55:27 UTC (rev 2867)
+++ zope.browser/trunk/debian/tests/control	2014-07-08 20:16:10 UTC (rev 2868)
@@ -1,3 +1,2 @@
-Tests: all
-Features: no-build-needed
-Depends: @, python-zope.testing
+Tests: all all-3
+Depends: @




More information about the pkg-zope-developers mailing list