r2678 - in zope.interface/trunk/debian (changelog rules)

arnau at users.alioth.debian.org arnau at users.alioth.debian.org
Wed Sep 26 00:24:10 UTC 2012


    Date: Wednesday, September 26, 2012 @ 00:24:08
  Author: arnau
Revision: 2678

Make sure that building fails if any python command fails.

Modified:
  zope.interface/trunk/debian/changelog
  zope.interface/trunk/debian/rules

Modified: zope.interface/trunk/debian/changelog
===================================================================
--- zope.interface/trunk/debian/changelog	2012-08-27 06:26:36 UTC (rev 2677)
+++ zope.interface/trunk/debian/changelog	2012-09-26 00:24:08 UTC (rev 2678)
@@ -1,3 +1,9 @@
+zope.interface (3.6.2-2) UNRELEASED; urgency=low
+
+  * debian/rules: make sure that building fails if any python command fails.
+
+ -- Arnaud Fontaine <arnau at debian.org>  Wed, 26 Sep 2012 09:22:31 +0900
+
 zope.interface (3.6.2-1) unstable; urgency=low
 
   * New upstream release

Modified: zope.interface/trunk/debian/rules
===================================================================
--- zope.interface/trunk/debian/rules	2012-08-27 06:26:36 UTC (rev 2677)
+++ zope.interface/trunk/debian/rules	2012-09-26 00:24:08 UTC (rev 2678)
@@ -14,20 +14,20 @@
 	find -name '*.py[co]' | xargs -r rm -f
 
 override_dh_auto_build:
-	for pyvers in $(shell pyversions -vr); do \
+	set -xe; for pyvers in $(shell pyversions -vr); do \
 		python$$pyvers setup.py build; \
 	done
-	for pyvers in $(shell py3versions -sv); do \
+	set -xe; for pyvers in $(shell py3versions -sv); do \
 		python$$pyvers setup.py build; \
 	done
 
 override_dh_auto_install:
-	set -x; \
+	set -xe; \
 	for pyvers in $(shell pyversions -vr); do \
 		python$$pyvers setup.py install --install-layout=deb \
 			--root $(CURDIR)/debian/$(package); \
 	done
-	set -x; \
+	set -xe; \
 	for pyvers in $(shell py3versions -vs); do \
 		python$$pyvers setup.py install --install-layout=deb \
 			--root $(CURDIR)/debian/$(package3); \




More information about the pkg-zope-developers mailing list