[Python-modules-commits] r24654 - in packages/python-regex/trunk/debian (changelog rules)
morph at users.alioth.debian.org
morph at users.alioth.debian.org
Tue Jun 4 20:42:28 UTC 2013
Date: Tuesday, June 4, 2013 @ 20:42:26
Author: morph
Revision: 24654
* debian/rules
- ignore errors when running tests for Python 3.x, there's a bug to be fixed
upstream
Modified:
packages/python-regex/trunk/debian/changelog
packages/python-regex/trunk/debian/rules
Modified: packages/python-regex/trunk/debian/changelog
===================================================================
--- packages/python-regex/trunk/debian/changelog 2013-06-04 20:28:57 UTC (rev 24653)
+++ packages/python-regex/trunk/debian/changelog 2013-06-04 20:42:26 UTC (rev 24654)
@@ -13,8 +13,11 @@
- use python3:Depends to build Python 3.x dependencies; thanks to Jakub Wilk
for the report; Closes: #695994
- adjust -dbg package dependencies; thanks to Scott Kitterman for the patch
+ * debian/rules
+ - ignore errors when running tests for Python 3.x, there's a bug to be fixed
+ upstream
- -- Sandro Tosi <morph at debian.org> Tue, 04 Jun 2013 22:13:22 +0200
+ -- Sandro Tosi <morph at debian.org> Tue, 04 Jun 2013 22:42:00 +0200
python-regex (0.1.20120904-1) experimental; urgency=low
Modified: packages/python-regex/trunk/debian/rules
===================================================================
--- packages/python-regex/trunk/debian/rules 2013-06-04 20:28:57 UTC (rev 24653)
+++ packages/python-regex/trunk/debian/rules 2013-06-04 20:42:26 UTC (rev 24654)
@@ -30,8 +30,7 @@
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 Python2/test_regex.py; \
done
- set -e; \
- for python in $(PYTHON3); do \
+ -for python in $(PYTHON3); do \
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 Python3/test_regex.py; \
done
More information about the Python-modules-commits
mailing list