[Python-modules-commits] r6717 - in packages/zsi/trunk/debian (changelog rules)

pochu-guest at users.alioth.debian.org pochu-guest at users.alioth.debian.org
Tue Oct 21 00:15:11 UTC 2008


    Date: Tuesday, October 21, 2008 @ 00:15:08
  Author: pochu-guest
Revision: 6717

* debian/rules:
  - Build with the default Python interpreter first, as distutils is
    copying wsdl2py built with a non-default Python version, which has
    pythonX.Y in its shebang and thus makes the package depend on a
    non-default interpreter.
    Also, build it with python instead of pythonX.Y for the default
    interpreter, so that /usr/bin/wsdl2py has a standard shebang and
    the package just depends on python.
    Closes: #502453.

Modified:
  packages/zsi/trunk/debian/changelog
  packages/zsi/trunk/debian/rules

Modified: packages/zsi/trunk/debian/changelog
===================================================================
--- packages/zsi/trunk/debian/changelog	2008-10-20 21:58:01 UTC (rev 6716)
+++ packages/zsi/trunk/debian/changelog	2008-10-21 00:15:08 UTC (rev 6717)
@@ -1,10 +1,22 @@
 zsi (2.1~a1-2) UNRELEASED; urgency=low
 
+  [ Bernd Zeimetz ]
   * NOT RELEASED YET
   * debian/patches:
     - Adding update-to-svn-r1446.dpatch to update the module to the latest svn
       revision.
 
+  [ Emilio Pozuelo Monfort ]
+  * debian/rules:
+    - Build with the default Python interpreter first, as distutils is
+      copying wsdl2py built with a non-default Python version, which has
+      pythonX.Y in its shebang and thus makes the package depend on a
+      non-default interpreter.
+      Also, build it with python instead of pythonX.Y for the default
+      interpreter, so that /usr/bin/wsdl2py has a standard shebang and
+      the package just depends on python.
+      Closes: #502453.
+
  -- Bernd Zeimetz <bzed at debian.org>  Tue, 22 Apr 2008 22:21:25 +0200
 
 zsi (2.1~a1-1) unstable; urgency=low

Modified: packages/zsi/trunk/debian/rules
===================================================================
--- packages/zsi/trunk/debian/rules	2008-10-20 21:58:01 UTC (rev 6716)
+++ packages/zsi/trunk/debian/rules	2008-10-21 00:15:08 UTC (rev 6717)
@@ -4,7 +4,10 @@
 #export DH_VERBOSE=1
 
 PKGNAME:=python-zsi
+
+PYDEFAULTVER:=$(shell pyversions -d)
 PYVERS:=$(shell pyversions -r)
+PYVERS:=python $(filter-out $(PYDEFAULTVER), $(PYVERS))
 
 
 include /usr/share/dpatch/dpatch.make




More information about the Python-modules-commits mailing list