r36035 - in /desktop/experimental/pygobject/debian: changelog rules

mpitt at users.alioth.debian.org mpitt at users.alioth.debian.org
Mon Oct 22 09:45:32 UTC 2012


Author: mpitt
Date: Mon Oct 22 09:45:25 2012
New Revision: 36035

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=36035
Log:
Fix renaming of python3 extensions.

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

Modified: desktop/experimental/pygobject/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygobject/debian/changelog?rev=36035&op=diff
==============================================================================
--- desktop/experimental/pygobject/debian/changelog [utf-8] (original)
+++ desktop/experimental/pygobject/debian/changelog [utf-8] Mon Oct 22 09:45:25 2012
@@ -1,3 +1,10 @@
+pygobject (3.4.1-2) UNRELEASED; urgency=low
+
+  [ Matthias Klose ]
+  * Fix renaming of python3 extensions.
+
+ -- Martin Pitt <mpitt at debian.org>  Mon, 22 Oct 2012 11:44:38 +0200
+
 pygobject (3.4.1-1) experimental; urgency=low
 
   * New upstream bug fix release.

Modified: desktop/experimental/pygobject/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygobject/debian/rules?rev=36035&op=diff
==============================================================================
--- desktop/experimental/pygobject/debian/rules [utf-8] (original)
+++ desktop/experimental/pygobject/debian/rules [utf-8] Mon Oct 22 09:45:25 2012
@@ -104,7 +104,7 @@
 	# tag the Python extensions like distutils, as upstream build system
 	# uses autotools and does not know about http://www.python.org/dev/peps/pep-3149/
 	ABITAG=`python3.$* -c "import sysconfig; print(sysconfig.get_config_var('SOABI'))"`; \
-	for f in `find debian/python3-gi/usr/lib/python* -name '*.so'`; do \
+	for f in `find debian/python3-gi/usr/lib/python* -name '*.so' ! -name '*.cpython*.so'`; do \
 	    mv $$f $${f%.so}.$$ABITAG.so; \
 	done
 	
@@ -128,7 +128,7 @@
 	# tag the Python extensions like distutils, as upstream build system
 	# uses autotools and does not know about http://www.python.org/dev/peps/pep-3149/
 	ABITAG=`python3.$*-dbg -c "import sysconfig; print(sysconfig.get_config_var('SOABI'))"`; \
-	for f in `find debian/python3-gi-dbg/usr/lib/python* -name '*.so'`; do \
+	for f in `find debian/python3-gi-dbg/usr/lib/python* -name '*.so' ! -name '*.cpython*.so'`; do \
 	    mv $$f $${f%.so}.$$ABITAG.so; \
 	done
 	




More information about the pkg-gnome-commits mailing list