r17078 - in /desktop/experimental/pygtk/debian: changelog rules

pochu-guest at users.alioth.debian.org pochu-guest at users.alioth.debian.org
Thu Sep 25 14:02:51 UTC 2008


Author: pochu-guest
Date: Thu Sep 25 14:02:50 2008
New Revision: 17078

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=17078
Log:
Make $(PYVERS) have the default Python version at the end, so that
the last pygtk build is with the default Python version and
pygtk-demo has the default Python in the hashbang. Also this avoids
python-gtk2-doc depending on a non-default Python version.
Closes: #500118.

Modified:
    desktop/experimental/pygtk/debian/changelog
    desktop/experimental/pygtk/debian/rules

Modified: desktop/experimental/pygtk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygtk/debian/changelog?rev=17078&op=diff
==============================================================================
--- desktop/experimental/pygtk/debian/changelog (original)
+++ desktop/experimental/pygtk/debian/changelog Thu Sep 25 14:02:50 2008
@@ -55,10 +55,15 @@
   * debian/rules:
     - Call dh_pysupport for python-gtk2-doc, so example scripts are
       byte-compiled.
+    - Make $(PYVERS) have the default Python version at the end, so that
+      the last pygtk build is with the default Python version and
+      pygtk-demo has the default Python in the hashbang. Also this avoids
+      python-gtk2-doc depending on a non-default Python version.
+      Closes: #500118.
   * debian/copyright:
     - Add Copyright holders.
 
- -- Emilio Pozuelo Monfort <pochu at ubuntu.com>  Mon, 15 Sep 2008 03:35:45 +0200
+ -- Emilio Pozuelo Monfort <pochu at ubuntu.com>  Thu, 25 Sep 2008 16:02:14 +0200
 
 pygtk (2.13.0-0ubuntu3) intrepid; urgency=low
 

Modified: desktop/experimental/pygtk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygtk/debian/rules?rev=17078&op=diff
==============================================================================
--- desktop/experimental/pygtk/debian/rules (original)
+++ desktop/experimental/pygtk/debian/rules Thu Sep 25 14:02:50 2008
@@ -15,8 +15,9 @@
 	configure_flags += --host=$(DEB_HOST_GNU_TYPE)
 endif
 
+PYDEFAULTVER := $(shell pyversions --default --version)
 PYVERS := $(shell pyversions --requested --version debian/control)
-PYDEFAULTVER := $(shell pyversions --default --version)
+PYVERS := $(filter-out $(PYDEFAULTVER), $(PYVERS)) $(PYDEFAULTVER)
 
 .PRECIOUS: build-%/configure-stamp dbg-build-%/configure-stamp
 




More information about the pkg-gnome-commits mailing list