[Python-modules-commits] r4856 - in packages/python-processing/trunk/debian (changelog rules)

morph-guest at users.alioth.debian.org morph-guest at users.alioth.debian.org
Wed Mar 19 18:56:22 UTC 2008


    Date: Wednesday, March 19, 2008 @ 18:56:20
  Author: morph-guest
Revision: 4856

dont run tests by default

Modified:
  packages/python-processing/trunk/debian/changelog
  packages/python-processing/trunk/debian/rules

Modified: packages/python-processing/trunk/debian/changelog
===================================================================
--- packages/python-processing/trunk/debian/changelog	2008-03-19 07:35:55 UTC (rev 4855)
+++ packages/python-processing/trunk/debian/changelog	2008-03-19 18:56:20 UTC (rev 4856)
@@ -1,3 +1,10 @@
+python-processing (0.40-2) unstable; urgency=low
+
+  * debian/rules
+    - don't run tests by default (Closes: #471656)
+
+ -- Sandro Tosi <matrixhasu at gmail.com>  Wed, 19 Mar 2008 19:54:01 +0100
+
 python-processing (0.40-1) unstable; urgency=low
 
   * Initial release (Closes: #454359)

Modified: packages/python-processing/trunk/debian/rules
===================================================================
--- packages/python-processing/trunk/debian/rules	2008-03-19 07:35:55 UTC (rev 4855)
+++ packages/python-processing/trunk/debian/rules	2008-03-19 18:56:20 UTC (rev 4856)
@@ -28,7 +28,10 @@
 
 	# performing tests
 
-ifeq (,$(findstring notest,$(DEB_BUILD_OPTIONS)))
+	# By default, tests are skipped; this is to avoit FTBFS because
+	# semaphores need /dev/shm to be a real filesystem, but in chroots
+	# (like sbuilds in buildd) this is not true.
+ifneq (,$(findstring runtest,$(DEB_BUILD_OPTIONS)))
 	set -e ;\
 	for py in $(PYVERS); do  \
 	    PYTHONPATH=$(CURDIR)/build/lib.$(DEB_BUILD_ARCH_OS)-$(shell uname -m)-$$py \




More information about the Python-modules-commits mailing list