[Python-modules-commits] r16463 - in packages/pyxine/trunk/debian (changelog rules)
jwilk at users.alioth.debian.org
jwilk at users.alioth.debian.org
Sat Apr 9 18:15:19 UTC 2011
Date: Saturday, April 9, 2011 @ 18:15:11
Author: jwilk
Revision: 16463
Protect for loops in debian/rules with set -e.
Modified:
packages/pyxine/trunk/debian/changelog
packages/pyxine/trunk/debian/rules
Modified: packages/pyxine/trunk/debian/changelog
===================================================================
--- packages/pyxine/trunk/debian/changelog 2011-04-09 13:05:14 UTC (rev 16462)
+++ packages/pyxine/trunk/debian/changelog 2011-04-09 18:15:11 UTC (rev 16463)
@@ -1,3 +1,9 @@
+pyxine (0.1alpha2-7) UNRELEASED; urgency=low
+
+ * Protect for loops in debian/rules with set -e.
+
+ -- Jakub Wilk <jwilk at debian.org> Sat, 09 Apr 2011 20:14:20 +0200
+
pyxine (0.1alpha2-6) unstable; urgency=low
[ Sandro Tosi ]
Modified: packages/pyxine/trunk/debian/rules
===================================================================
--- packages/pyxine/trunk/debian/rules 2011-04-09 13:05:14 UTC (rev 16462)
+++ packages/pyxine/trunk/debian/rules 2011-04-09 18:15:11 UTC (rev 16463)
@@ -26,6 +26,7 @@
rm -f build-stamp configure-stamp
+ set -e; \
for python in ${PYVERS} ; do \
$$python setup.py clean; \
$$python-dbg setup.py clean; \
@@ -42,6 +43,7 @@
dh_clean -k
dh_installdirs
+ set -e; \
for python in ${PYVERS} ; do \
$$python setup.py install --no-compile \
--root=$(CURDIR)/debian/python-pyxine \
More information about the Python-modules-commits
mailing list