[Python-modules-commits] r10657 - in packages/simpleparse/trunk/debian (changelog runtests.py)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Wed Dec 2 21:49:32 UTC 2009


    Date: Wednesday, December 2, 2009 @ 21:49:32
  Author: morph
Revision: 10657

* debian/runtests.py
  - replace 'dist-package' with 'site-package', in preparation for the
    upcoming Python 2.6 transition; thanks to Jakub Wilk for the report and
    patch; Closes: #557413

Modified:
  packages/simpleparse/trunk/debian/changelog
  packages/simpleparse/trunk/debian/runtests.py

Modified: packages/simpleparse/trunk/debian/changelog
===================================================================
--- packages/simpleparse/trunk/debian/changelog	2009-12-02 21:45:31 UTC (rev 10656)
+++ packages/simpleparse/trunk/debian/changelog	2009-12-02 21:49:32 UTC (rev 10657)
@@ -1,3 +1,12 @@
+simpleparse (2.1.0a1-4) UNRELEASED; urgency=low
+
+  * debian/runtests.py
+    - replace 'dist-package' with 'site-package', in preparation for the
+      upcoming Python 2.6 transition; thanks to Jakub Wilk for the report and
+      patch; Closes: #557413
+
+ -- Sandro Tosi <morph at debian.org>  Wed, 02 Dec 2009 22:37:58 +0100
+
 simpleparse (2.1.0a1-3) unstable; urgency=low
 
   [ Vincent Bernat ]

Modified: packages/simpleparse/trunk/debian/runtests.py
===================================================================
--- packages/simpleparse/trunk/debian/runtests.py	2009-12-02 21:45:31 UTC (rev 10656)
+++ packages/simpleparse/trunk/debian/runtests.py	2009-12-02 21:49:32 UTC (rev 10657)
@@ -4,7 +4,7 @@
 from site import addsitedir
 
 root = sys.argv.pop(1)
-site_packages = get_python_lib()
+site_packages = get_python_lib().replace('dist-packages', 'site-packages')
 
 _path = sys.path[:]
 sys.path[:] = []




More information about the Python-modules-commits mailing list