r2402 - in zdaemon/trunk/debian (changelog rules)

arnau at users.alioth.debian.org arnau at users.alioth.debian.org
Fri Oct 14 01:50:50 UTC 2011


    Date: Friday, October 14, 2011 @ 01:50:49
  Author: arnau
Revision: 2402

Trap shell command errors if any as per Policy 4.6.

Modified:
  zdaemon/trunk/debian/changelog
  zdaemon/trunk/debian/rules

Modified: zdaemon/trunk/debian/changelog
===================================================================
--- zdaemon/trunk/debian/changelog	2011-10-14 01:50:08 UTC (rev 2401)
+++ zdaemon/trunk/debian/changelog	2011-10-14 01:50:49 UTC (rev 2402)
@@ -5,6 +5,8 @@
   [ Arnaud Fontaine ]
   * debian/control:
     + Add missing Depends on python-pkg-resources. Closes: #645267.
+  * debian/rules:
+    + Trap shell command errors if any as per Policy 4.6.
 
   [ Gediminas Paulauskas ]
   * debian/rules:

Modified: zdaemon/trunk/debian/rules
===================================================================
--- zdaemon/trunk/debian/rules	2011-10-14 01:50:08 UTC (rev 2401)
+++ zdaemon/trunk/debian/rules	2011-10-14 01:50:49 UTC (rev 2402)
@@ -5,7 +5,7 @@
 
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 override_dh_auto_test:
-	for py in $(shell pyversions -vr); do \
+	set -e; for py in $(shell pyversions -vr); do \
 	  for test in tests testzdoptions testzdrun; do \
 		PYTHONPATH=debian/python-zdaemon/usr/lib/python$$py/dist-packages \
 			python$$py setup.py test -m zdaemon.tests.$$test; \




More information about the pkg-zope-developers mailing list