[Python-modules-commits] r29545 - in packages/python-rarfile/trunk/debian (control rules)

hugo6390-guest at users.alioth.debian.org hugo6390-guest at users.alioth.debian.org
Sun Jun 29 13:52:50 UTC 2014


    Date: Sunday, June 29, 2014 @ 13:52:49
  Author: hugo6390-guest
Revision: 29545

Using both Python 2 and 3

Modified:
  packages/python-rarfile/trunk/debian/control
  packages/python-rarfile/trunk/debian/rules

Modified: packages/python-rarfile/trunk/debian/control
===================================================================
--- packages/python-rarfile/trunk/debian/control	2014-06-29 13:38:13 UTC (rev 29544)
+++ packages/python-rarfile/trunk/debian/control	2014-06-29 13:52:49 UTC (rev 29545)
@@ -5,10 +5,13 @@
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Build-Depends: debhelper (>= 8.0.0),
                dh-python,
+               python-all (>= 2.7.3-4~),
+               python-all-dev (>= 2.7.3-4~),
                python3-all (>= 3.0.0),
-               python3-dev,
+               python3-all-dev (>= 3.0.0),
                python3-setuptools 
 Standards-Version: 3.9.5
+X-Python-Version: >= 2.7
 X-Python3-Version: >= 3.0
 Homepage: https://github.com/markokr/rarfile
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-rarfile/trunk/
@@ -18,6 +21,21 @@
 Architecture: all
 Depends: ${shlibs:Depends}, 
          ${misc:Depends}, 
+         ${python:Depends}, 
+         bsdtar (>= 3.0.4), 
+         unrar-free
+Description: RAR archive reader module for Python
+ This is a Python module for RAR archive reading. The interface is made
+ a zipfile like as possible. It supports both RAR 2.x and 3.x archives,
+ multi volumes archives, unicode filenames, but the password protected are not 
+ supported in this version.
+ .
+ This is the python2 version of the package.
+
+Package: python3-rarfile
+Architecture: all
+Depends: ${shlibs:Depends}, 
+         ${misc:Depends}, 
          ${python3:Depends}, 
          bsdtar (>= 3.0.4), 
          unrar-free
@@ -26,3 +44,5 @@
  a zipfile like as possible. It supports both RAR 2.x and 3.x archives,
  multi volumes archives, unicode filenames, but the password protected are not 
  supported in this version.
+ .
+ This is the python3 version of the package.

Modified: packages/python-rarfile/trunk/debian/rules
===================================================================
--- packages/python-rarfile/trunk/debian/rules	2014-06-29 13:38:13 UTC (rev 29544)
+++ packages/python-rarfile/trunk/debian/rules	2014-06-29 13:52:49 UTC (rev 29545)
@@ -4,7 +4,7 @@
 export PYTHONDONTWRITEBYTECODE=1
 
 %:
-	dh $@ --with python3 --buildsystem=pybuild
+	dh $@ --with python2,python3 --buildsystem=pybuild
 
 override_dh_installchangelogs:
 	cp doc/news.rst changelog




More information about the Python-modules-commits mailing list