[Python-modules-commits] r10243 - in packages/pysubnettree/trunk/debian (4 files)
kitterma-guest at users.alioth.debian.org
kitterma-guest at users.alioth.debian.org
Mon Nov 2 07:39:31 UTC 2009
Date: Monday, November 2, 2009 @ 07:39:29
Author: kitterma-guest
Revision: 10243
* Fix debian/rules to build for all supported Python versions
* Prepare for Python 2.6
- Add install-layout=deb to setup.py install rule
- Bump minimum python-all-dev version to 2.5.4-2~
- Remove extraneous site-packages dir for Python 2.6
* Bump standards version to 3.8.3 without further change
* Add for python-subnettree
* Fix use of copyright symbol in debian/copyright
* Fix svn path to DPMT repository in debian/control
Modified:
packages/pysubnettree/trunk/debian/changelog
packages/pysubnettree/trunk/debian/control
packages/pysubnettree/trunk/debian/copyright
packages/pysubnettree/trunk/debian/rules
Modified: packages/pysubnettree/trunk/debian/changelog
===================================================================
--- packages/pysubnettree/trunk/debian/changelog 2009-11-02 05:04:02 UTC (rev 10242)
+++ packages/pysubnettree/trunk/debian/changelog 2009-11-02 07:39:29 UTC (rev 10243)
@@ -1,10 +1,22 @@
-pysubnettree (0.12-2) UNRELEASED; urgency=low
+pysubnettree (0.12-2) unstable; urgency=low
+ [ Sandro Tosi ]
* debian/control
- - switch Vcs-Browser field to viewsvn
+ - Switch Vcs-Browser field to viewsvn
- -- Sandro Tosi <morph at debian.org> Mon, 03 Nov 2008 22:14:46 +0100
+ [ Scott Kitterman ]
+ * Fix debian/rules to build for all supported Python versions
+ * Prepare for Python 2.6
+ - Add install-layout=deb to setup.py install rule
+ - Bump minimum python-all-dev version to 2.5.4-2~
+ - Remove extraneous site-packages dir for Python 2.6
+ * Bump standards version to 3.8.3 without further change
+ * Add ${misc:Depends} for python-subnettree
+ * Fix use of copyright symbol in debian/copyright
+ * Fix svn path to DPMT repository in debian/control
+ -- Scott Kitterman <scott at kitterman.com> Mon, 02 Nov 2009 01:40:46 -0500
+
pysubnettree (0.12-1) unstable; urgency=low
[ Sandro Tosi ]
Modified: packages/pysubnettree/trunk/debian/control
===================================================================
--- packages/pysubnettree/trunk/debian/control 2009-11-02 05:04:02 UTC (rev 10242)
+++ packages/pysubnettree/trunk/debian/control 2009-11-02 07:39:29 UTC (rev 10243)
@@ -3,17 +3,17 @@
Priority: optional
Maintainer: Scott Kitterman <scott at kitterman.com>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.37.1), python-all-dev (>= 2.4.4-3), python-central (>= 0.6)
+Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.37.1), python-all-dev (>= 2.5.4-2~), python-central (>= 0.6)
XS-Python-Version: all
-Standards-Version: 3.8.0.1
+Standards-Version: 3.8.3
Homepage: http://www.icir.org/robin/pysubnettree/
-Vcs-Svn: svn://svn.debian.org/python-modules/packages/pysubnettree/trunk/
-Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pysubnettree/trunk/
+Vcs-Svn: svn://svn.debian.org/python-modules/svn/packages/pysubnettree/trunk/
+Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/pysubnettree/trunk/?op=log
XS-DM-Upload-Allowed: yes
Package: python-subnettree
Architecture: any
-Depends: ${python:Depends}, ${shlibs:Depends}
+Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}
Provides: ${python:Provides}
XB-Python-Version: all
Description: Python Module for CIDR Lookups
Modified: packages/pysubnettree/trunk/debian/copyright
===================================================================
--- packages/pysubnettree/trunk/debian/copyright 2009-11-02 05:04:02 UTC (rev 10242)
+++ packages/pysubnettree/trunk/debian/copyright 2009-11-02 07:39:29 UTC (rev 10243)
@@ -4,7 +4,7 @@
It was downloaded from http://www.icir.org/robin/pysubnettree/
Author:
- Copyright (C) 2007 Robin Sommer <robin at icir.org>
+ Copyright © 2007 Robin Sommer <robin at icir.org>
License:
@@ -71,7 +71,7 @@
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-The Debian packaging is (C) 2007, Scott Kitterman <scott at kitterman.com> and is
+The Debian packaging is © 2007, Scott Kitterman <scott at kitterman.com> and is
licensed under the same terms as the upstream package (as described in the
LICENSE file). See above.
Modified: packages/pysubnettree/trunk/debian/rules
===================================================================
--- packages/pysubnettree/trunk/debian/rules 2009-11-02 05:04:02 UTC (rev 10242)
+++ packages/pysubnettree/trunk/debian/rules 2009-11-02 07:39:29 UTC (rev 10243)
@@ -5,4 +5,17 @@
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk
-include /usr/share/cdbs/1/rules/simple-patchsys.mk
+#include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/python/python.mk
+
+build/python-subnettree::
+ set -e; \
+ for i in $(shell pyversions -s); do \
+ $i ./setup.py build; \
+ done
+
+install/python-subnettree::
+ for i in $(shell pyversions -s); do \
+ $i ./setup.py install --install-layout=deb --root $(CURDIR)/debian/python-subnettree; \
+ done
+ rm -rf $(CURDIR)/debian/python-subnettree/usr/lib/python2.6/site-packages
More information about the Python-modules-commits
mailing list