[Python-modules-commits] r14554 - in packages/ipy/trunk/debian (changelog control rules)

bzed at users.alioth.debian.org bzed at users.alioth.debian.org
Mon Oct 11 08:25:55 UTC 2010


    Date: Monday, October 11, 2010 @ 08:25:43
  Author: bzed
Revision: 14554

* New upstream bugfix release:
  * Use xrange() instead of range()
  * Use isinstance(x, int) instead of type(x) == types.IntType
  * Prepare support of Python3 (use integer division: x // y)
  * Fix IP(long) constructor: ensure that the address is not too large
  * Constructor raise a TypeError if the type is not int, long,
    str or unicode
  * 223.0.0.0/8 is now public (belongs to APNIC)
* Adding support for Python3.

Modified:
  packages/ipy/trunk/debian/changelog
  packages/ipy/trunk/debian/control
  packages/ipy/trunk/debian/rules

Modified: packages/ipy/trunk/debian/changelog
===================================================================
--- packages/ipy/trunk/debian/changelog	2010-10-11 03:11:58 UTC (rev 14553)
+++ packages/ipy/trunk/debian/changelog	2010-10-11 08:25:43 UTC (rev 14554)
@@ -1,3 +1,17 @@
+ipy (1:0.71-1) UNRELEASED; urgency=low
+
+  * New upstream bugfix release:
+    * Use xrange() instead of range()
+    * Use isinstance(x, int) instead of type(x) == types.IntType
+    * Prepare support of Python3 (use integer division: x // y)
+    * Fix IP(long) constructor: ensure that the address is not too large
+    * Constructor raise a TypeError if the type is not int, long,
+      str or unicode
+    * 223.0.0.0/8 is now public (belongs to APNIC)
+  * Adding support for Python3.
+
+ -- Bernd Zeimetz <bzed at debian.org>  Mon, 11 Oct 2010 10:14:30 +0200
+
 ipy (1:0.70-1) unstable; urgency=low
 
   * New upstream version. 

Modified: packages/ipy/trunk/debian/control
===================================================================
--- packages/ipy/trunk/debian/control	2010-10-11 03:11:58 UTC (rev 14553)
+++ packages/ipy/trunk/debian/control	2010-10-11 08:25:43 UTC (rev 14554)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Bernd Zeimetz <bzed at debian.org>, Morten Werner Forsbring <werner at debian.org>
-Build-Depends: debhelper (>= 7.3.5), python-all
+Build-Depends: debhelper (>= 7.3.5), python-all, python3-all
 Build-Depends-Indep: python-support (>= 0.7.1), python-docutils
 Standards-Version: 3.8.3
 Homepage: http://software.inl.fr/trac/trac.cgi/wiki/IPy
@@ -21,3 +21,13 @@
  networks in a fashion similar to perl's Net::IP and friends. The IP
  class allows a comfortable parsing and handling for most notations in
  use for IPv4 and IPv6 addresses and networks.
+
+Package: python3-ipy
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: Python3 module for handling IPv4 and IPv6 addresses and networks
+ IPy is a Python module for handling IPv4 and IPv6 addresses and
+ networks in a fashion similar to perl's Net::IP and friends. The IP
+ class allows a comfortable parsing and handling for most notations in
+ use for IPv4 and IPv6 addresses and networks.
+

Modified: packages/ipy/trunk/debian/rules
===================================================================
--- packages/ipy/trunk/debian/rules	2010-10-11 03:11:58 UTC (rev 14553)
+++ packages/ipy/trunk/debian/rules	2010-10-11 08:25:43 UTC (rev 14554)
@@ -3,10 +3,10 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-PYTHONS:=$(shell pyversions -vr)
+PYTHONS:=$(shell pyversions -vr && py3versions -vr)
 
 %:
-	dh $@
+	dh --with python3 $@
 
 IPy.html:
 	rst2html README IPy.html 
@@ -15,7 +15,7 @@
 binary-arch:
 	# nothing to do here.
 binary-indep: $(PYTHONS:%=test/test-%-stamp) IPy.html
-	dh $@
+	dh --with python3 $@
 
 test/test-%-stamp:
 ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))




More information about the Python-modules-commits mailing list