[Python-modules-commits] r23230 - in packages/python-psutil/trunk/debian (changelog rules)
morph at users.alioth.debian.org
morph at users.alioth.debian.org
Tue Jan 1 22:40:49 UTC 2013
Date: Tuesday, January 1, 2013 @ 22:40:47
Author: morph
Revision: 23230
* debian/rules
- fix syntax error when executing the test suite; thanks to Julian Taylor
for the report; Closes: #687316
Modified:
packages/python-psutil/trunk/debian/changelog
packages/python-psutil/trunk/debian/rules
Modified: packages/python-psutil/trunk/debian/changelog
===================================================================
--- packages/python-psutil/trunk/debian/changelog 2012-12-31 21:22:33 UTC (rev 23229)
+++ packages/python-psutil/trunk/debian/changelog 2013-01-01 22:40:47 UTC (rev 23230)
@@ -1,3 +1,11 @@
+python-psutil (0.6.1-3) UNRELEASED; urgency=low
+
+ * debian/rules
+ - fix syntax error when executing the test suite; thanks to Julian Taylor
+ for the report; Closes: #687316
+
+ -- Sandro Tosi <morph at debian.org> Tue, 01 Jan 2013 23:21:17 +0100
+
python-psutil (0.6.1-2) experimental; urgency=low
* debian/rules
Modified: packages/python-psutil/trunk/debian/rules
===================================================================
--- packages/python-psutil/trunk/debian/rules 2012-12-31 21:22:33 UTC (rev 23229)
+++ packages/python-psutil/trunk/debian/rules 2013-01-01 22:40:47 UTC (rev 23230)
@@ -29,12 +29,12 @@
echo "running "test/$$test" on "$$python ; \
LIB=$$($$python -c "from distutils.command.build import build ; from distutils.core import Distribution ; b = build(Distribution()) ; b.finalize_options() ; print b.build_platlib") ; \
PYTHONPATH=$$LIB $$python test/$$test ; \
- done \
+ done ; \
for python in $(PY3VERS) ; do \
echo "running "test/$$test" on "$$python ; \
LIB=$$($$python -c "from distutils.command.build import build ; from distutils.core import Distribution ; b = build(Distribution()) ; b.finalize_options() ; print (b.build_platlib)") ; \
PYTHONPATH=$$LIB $$python test/$$test ; \
- done \
+ done ; \
done
endif
More information about the Python-modules-commits
mailing list