[Python-modules-commits] r19043 - in packages/pastedeploy/trunk/debian (changelog rules)
jwilk at users.alioth.debian.org
jwilk at users.alioth.debian.org
Sun Oct 23 20:22:07 UTC 2011
Date: Sunday, October 23, 2011 @ 20:22:05
Author: jwilk
Revision: 19043
Protect for loop with set -e.
Modified:
packages/pastedeploy/trunk/debian/changelog
packages/pastedeploy/trunk/debian/rules
Modified: packages/pastedeploy/trunk/debian/changelog
===================================================================
--- packages/pastedeploy/trunk/debian/changelog 2011-10-23 20:05:50 UTC (rev 19042)
+++ packages/pastedeploy/trunk/debian/changelog 2011-10-23 20:22:05 UTC (rev 19043)
@@ -1,3 +1,9 @@
+pastedeploy (1.5.0-3) UNRELEASED; urgency=low
+
+ * Protect for loop with set -e.
+
+ -- Jakub Wilk <jwilk at debian.org> Sun, 23 Oct 2011 22:21:38 +0200
+
pastedeploy (1.5.0-2) unstable; urgency=low
* Remove .pth file (introduced in last upload by accident)
Modified: packages/pastedeploy/trunk/debian/rules
===================================================================
--- packages/pastedeploy/trunk/debian/rules 2011-10-23 20:05:50 UTC (rev 19042)
+++ packages/pastedeploy/trunk/debian/rules 2011-10-23 20:22:05 UTC (rev 19043)
@@ -20,7 +20,7 @@
build-docs:
dh_installdirs
- for NAME in $(DOCS); do \
+ set -e; for NAME in $(DOCS); do \
rst2html --cloak-email-addresses --no-toc-backlinks "docs/$$NAME.txt" \
> "$(PKGDIR)/usr/share/doc/python-pastedeploy/docs/$$NAME.html"; \
done
More information about the Python-modules-commits
mailing list