[Python-modules-commits] r11131 - in packages/python-axiom/trunk/debian (changelog runtrial.py)
bernat at users.alioth.debian.org
bernat at users.alioth.debian.org
Wed Jan 13 19:46:57 UTC 2010
Date: Wednesday, January 13, 2010 @ 19:46:55
Author: bernat
Revision: 11131
New upstream release
Modified:
packages/python-axiom/trunk/debian/changelog
packages/python-axiom/trunk/debian/runtrial.py
Modified: packages/python-axiom/trunk/debian/changelog
===================================================================
--- packages/python-axiom/trunk/debian/changelog 2010-01-12 22:29:32 UTC (rev 11130)
+++ packages/python-axiom/trunk/debian/changelog 2010-01-13 19:46:55 UTC (rev 11131)
@@ -1,11 +1,15 @@
-python-axiom (0.5.31-3) UNRELEASED; urgency=low
+python-axiom (0.6.0-1) UNRELEASED; urgency=low
+ [ Sandro Tosi ]
* debian/rules
- don't FTBFS when removing not-existing dirs; thanks to Lucas Nussbaum for
the report; Closes: #560565
- -- Sandro Tosi <morph at debian.org> Fri, 11 Dec 2009 21:02:57 +0100
+ [ Vincent Bernat ]
+ * New upstream release.
+ -- Debian Python Modules Team <python-modules-team at lists.alioth.debian.org> Wed, 13 Jan 2010 20:38:50 +0100
+
python-axiom (0.5.31-2) unstable; urgency=low
[ Vincent Bernat ]
Modified: packages/python-axiom/trunk/debian/runtrial.py
===================================================================
--- packages/python-axiom/trunk/debian/runtrial.py 2010-01-12 22:29:32 UTC (rev 11130)
+++ packages/python-axiom/trunk/debian/runtrial.py 2010-01-13 19:46:55 UTC (rev 11131)
@@ -1,4 +1,5 @@
import sys
+import os
from os.path import join
from distutils.sysconfig import get_python_lib
from site import addsitedir
@@ -11,5 +12,9 @@
addsitedir(join(root, site_packages[1:]))
sys.path.extend(_path)
+# Some tests need PYTHONPATH. We provide a sensible value for it (although not really correct)
+if 'PYTHONPATH' not in os.environ:
+ os.environ['PYTHONPATH'] = os.pathsep.join(sys.path)
+
from twisted.scripts.trial import run
run()
More information about the Python-modules-commits
mailing list