[Python-modules-commits] r11320 - in packages/pyicu/trunk/debian (changelog rules)

jwilk-guest at users.alioth.debian.org jwilk-guest at users.alioth.debian.org
Mon Jan 25 22:33:24 UTC 2010


    Date: Monday, January 25, 2010 @ 22:33:22
  Author: jwilk-guest
Revision: 11320

* debian/rules:
  - Temporary build directory name has changed in Python 2.6. Adjust
    PYTHONPATH for running tests accordingly.

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

Modified: packages/pyicu/trunk/debian/changelog
===================================================================
--- packages/pyicu/trunk/debian/changelog	2010-01-25 22:11:15 UTC (rev 11319)
+++ packages/pyicu/trunk/debian/changelog	2010-01-25 22:33:22 UTC (rev 11320)
@@ -1,3 +1,11 @@
+pyicu (0.9-2) UNRELEASED; urgency=low
+
+  * debian/rules:
+    - Temporary build directory name has changed in Python 2.6. Adjust
+      PYTHONPATH for running tests accordingly.
+
+ -- Jakub Wilk <ubanus at users.sf.net>  Mon, 25 Jan 2010 23:32:18 +0100
+
 pyicu (0.9-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/pyicu/trunk/debian/rules
===================================================================
--- packages/pyicu/trunk/debian/rules	2010-01-25 22:11:15 UTC (rev 11319)
+++ packages/pyicu/trunk/debian/rules	2010-01-25 22:33:22 UTC (rev 11320)
@@ -23,9 +23,9 @@
 	set -e ;\
 	for test in `ls test/*.py`; do \
 	  for py in $(PYVERS); do  \
-	    PYTHONPATH=`ls -d $(CURDIR)/build/lib.*-*-$$py` \
+	    PYTHONPATH=`ls -d $(CURDIR)/build/lib.*-$$py` \
 	      python$$py $$test ;\
-	    PYTHONPATH=`ls -d $(CURDIR)/build/lib_d.*-*-$$py` \
+	    PYTHONPATH=`ls -d $(CURDIR)/build/lib_d.*-$$py || ls -d $(CURDIR)/build/lib.*-$$py-pydebug` \
 	      python$$py-dbg $$test ;\
 	  done ;\
 	done




More information about the Python-modules-commits mailing list