[Python-modules-commits] r31691 - in packages/authres/trunk/debian (6 files)

kitterman at users.alioth.debian.org kitterman at users.alioth.debian.org
Mon Jan 26 01:23:55 UTC 2015


    Date: Monday, January 26, 2015 @ 01:23:53
  Author: kitterman
Revision: 31691

* New upstream release
* Convert to using pybuild and simplify debian/rules
  - Add python-authres/python3-authres.install
* Bump standards version to 3.9.6 without further change
* Bump compat to 8 and debhelper version to 8.1 for build arch/indep
  separation

Added:
  packages/authres/trunk/debian/python-authres.install
  packages/authres/trunk/debian/python3-authres.install
Modified:
  packages/authres/trunk/debian/changelog
  packages/authres/trunk/debian/compat
  packages/authres/trunk/debian/control
  packages/authres/trunk/debian/rules

Modified: packages/authres/trunk/debian/changelog
===================================================================
--- packages/authres/trunk/debian/changelog	2015-01-25 22:19:32 UTC (rev 31690)
+++ packages/authres/trunk/debian/changelog	2015-01-26 01:23:53 UTC (rev 31691)
@@ -1,3 +1,14 @@
+authres (0.702-1) experimental; urgency=medium
+
+  * New upstream release
+  * Convert to using pybuild and simplify debian/rules
+    - Add python-authres/python3-authres.install
+  * Bump standards version to 3.9.6 without further change
+  * Bump compat to 8 and debhelper version to 8.1 for build arch/indep
+    separation
+
+ -- Scott Kitterman <scott at kitterman.com>  Sun, 25 Jan 2015 19:47:09 -0500
+
 authres (0.701-1) unstable; urgency=medium
 
   * New upstream release

Modified: packages/authres/trunk/debian/compat
===================================================================
--- packages/authres/trunk/debian/compat	2015-01-25 22:19:32 UTC (rev 31690)
+++ packages/authres/trunk/debian/compat	2015-01-26 01:23:53 UTC (rev 31691)
@@ -1 +1 @@
-7
+8

Modified: packages/authres/trunk/debian/control
===================================================================
--- packages/authres/trunk/debian/control	2015-01-25 22:19:32 UTC (rev 31690)
+++ packages/authres/trunk/debian/control	2015-01-26 01:23:53 UTC (rev 31691)
@@ -3,8 +3,8 @@
 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 (>= 7.3.16), python-all (>= 2.6.5-2~), python3-all (>= 3.1.2-10~)
-Standards-Version: 3.9.5
+Build-Depends: debhelper (>= 8), python-all (>= 2.6.5-2~), python3-all (>= 3.1.2-10~)
+Standards-Version: 3.9.6
 Homepage: https://launchpad.net/authentication-results-python
 X-Python-Version: >= 2.6
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/authres/trunk/

Added: packages/authres/trunk/debian/python-authres.install
===================================================================
--- packages/authres/trunk/debian/python-authres.install	                        (rev 0)
+++ packages/authres/trunk/debian/python-authres.install	2015-01-26 01:23:53 UTC (rev 31691)
@@ -0,0 +1 @@
+debian/tmp/usr/lib/python2.*/dist-packages/authres

Added: packages/authres/trunk/debian/python3-authres.install
===================================================================
--- packages/authres/trunk/debian/python3-authres.install	                        (rev 0)
+++ packages/authres/trunk/debian/python3-authres.install	2015-01-26 01:23:53 UTC (rev 31691)
@@ -0,0 +1 @@
+debian/tmp/usr/lib/python3.*/dist-packages/authres

Modified: packages/authres/trunk/debian/rules
===================================================================
--- packages/authres/trunk/debian/rules	2015-01-25 22:19:32 UTC (rev 31690)
+++ packages/authres/trunk/debian/rules	2015-01-26 01:23:53 UTC (rev 31691)
@@ -2,40 +2,9 @@
 # -*- makefile -*-
 
 %:
-	dh $@ --with python2,python3
+	dh $@ --with python2,python3 --buildsystem=pybuild
 
-override_dh_auto_install:
-	dh_install
-ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
-	set -e && for pyvers in $(shell pyversions -vr); do \
-		python$$pyvers setup.py install --install-layout=deb \
-			--root $(CURDIR)/debian/python-authres; \
-		cd $(CURDIR)/debian/python-authres/usr/lib/python$$pyvers/dist-packages; \
-		python$$pyvers -m authres; cd $(CURDIR); \
-	done
-	set -e && for pyvers in $(shell py3versions -vr); do \
-		python$$pyvers setup.py install --install-layout=deb \
-			--root $(CURDIR)/debian/python3-authres; \
-		cd $(CURDIR)/debian/python3-authres/usr/lib/python3/dist-packages; \
-		python$$pyvers -m authres; cd $(CURDIR); \
-	done
-else
-	set -e && for pyvers in $(shell pyversions -vr); do \
-		python$$pyvers setup.py install --install-layout=deb \
-			--root $(CURDIR)/debian/python-authres; \
-	done
-	set -e && for pyvers in $(shell py3versions -vr); do \
-		python$$pyvers setup.py install --install-layout=deb \
-			--root $(CURDIR)/debian/python3-authres; \
-	done
-endif
 
 override_dh_auto_clean:
-	set -e && for pyvers in $(shell pyversions -vr); do \
-		python$$pyvers setup.py clean -a; \
-	done
-	set -e && for pyvers in $(shell py3versions -vr); do \
-		python$$pyvers setup.py clean -a; \
-	done
 	rm -rf build
 	dh_clean




More information about the Python-modules-commits mailing list