[Python-modules-commits] r25419 - in packages/py3dns/trunk/debian (changelog control rules)
kitterman at users.alioth.debian.org
kitterman at users.alioth.debian.org
Wed Aug 7 07:05:36 UTC 2013
Date: Wednesday, August 7, 2013 @ 07:05:33
Author: kitterman
Revision: 25419
* New upstream release
- Fixes timeout processing issues (Closes: #718579)
* Convert to package to pybuild
- Add dh-python to build-depends
- Build with buildsystem=pybuild
- Simplify debian/rules
Modified:
packages/py3dns/trunk/debian/changelog
packages/py3dns/trunk/debian/control
packages/py3dns/trunk/debian/rules
Modified: packages/py3dns/trunk/debian/changelog
===================================================================
--- packages/py3dns/trunk/debian/changelog 2013-08-07 03:26:21 UTC (rev 25418)
+++ packages/py3dns/trunk/debian/changelog 2013-08-07 07:05:33 UTC (rev 25419)
@@ -1,3 +1,14 @@
+py3dns (3.0.4-1) unstable; urgency=low
+
+ * New upstream release
+ - Fixes timeout processing issues (Closes: #718579)
+ * Convert to package to pybuild
+ - Add dh-python to build-depends
+ - Build with buildsystem=pybuild
+ - Simplify debian/rules
+
+ -- Scott Kitterman <scott at kitterman.com> Wed, 07 Aug 2013 02:48:24 -0400
+
py3dns (3.0.3-1) unstable; urgency=medium
* Urgency medium due to fix for issue than can cause mail loss/delay
Modified: packages/py3dns/trunk/debian/control
===================================================================
--- packages/py3dns/trunk/debian/control 2013-08-07 03:26:21 UTC (rev 25418)
+++ packages/py3dns/trunk/debian/control 2013-08-07 07:05:33 UTC (rev 25419)
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Scott Kitterman <scott at kitterman.com>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 8.1), python3-all (>= 3.1.2-8~), quilt
+Build-Depends: debhelper (>= 8.1), python3-all (>= 3.1.2-8~), dh-python, quilt
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/py3dns/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/py3dns/trunk/
Standards-Version: 3.9.4
Modified: packages/py3dns/trunk/debian/rules
===================================================================
--- packages/py3dns/trunk/debian/rules 2013-08-07 03:26:21 UTC (rev 25418)
+++ packages/py3dns/trunk/debian/rules 2013-08-07 07:05:33 UTC (rev 25419)
@@ -1,16 +1,13 @@
#!/usr/bin/make -f
+export PYBUILD_DESTDIR_python3=debian/python3-dns/
+
%:
- dh $@ --with python3, --with quilt
+ dh $@ --with python3,quilt --buildsystem=pybuild
-override_dh_auto_build:
override_dh_auto_install:
- set -e && for pyvers in $(shell py3versions -sv); do \
- python$$pyvers setup.py install --no-compile --install-layout=deb \
- --root $(CURDIR)/debian/python3-dns; \
- done
find $(CURDIR)/debian/python3-dns -name win32dns.py | xargs rm -f
- dh_install
+ dh_auto_install
override_dh_auto_clean:
dh_clean
More information about the Python-modules-commits
mailing list