[Python-apps-commits] r12219 - in packages/cython/trunk/debian (changelog control rules)

sramacher at users.alioth.debian.org sramacher at users.alioth.debian.org
Sun Aug 9 10:01:14 UTC 2015


    Date: Sunday, August 9, 2015 @ 10:01:12
  Author: sramacher
Revision: 12219

* Team upload.
* debian/rules: Redirect output of testsuite from stderr to stdout. sbuild
  currently does not check for output on stderr when deciding if a build
  timed out (see #731940 for details). This caused the build of cython to be
  killed on slower architectures. (Closes: #787234)
* debian/control: Bump Standards-Version. No changes required.

Modified:
  packages/cython/trunk/debian/changelog
  packages/cython/trunk/debian/control
  packages/cython/trunk/debian/rules

Modified: packages/cython/trunk/debian/changelog
===================================================================
--- packages/cython/trunk/debian/changelog	2015-08-09 08:22:19 UTC (rev 12218)
+++ packages/cython/trunk/debian/changelog	2015-08-09 10:01:12 UTC (rev 12219)
@@ -1,3 +1,14 @@
+cython (0.22.1-2) unstable; urgency=medium
+
+  * Team upload.
+  * debian/rules: Redirect output of testsuite from stderr to stdout. sbuild
+    currently does not check for output on stderr when deciding if a build
+    timed out (see #731940 for details). This caused the build of cython to be
+    killed on slower architectures. (Closes: #787234)
+  * debian/control: Bump Standards-Version. No changes required.
+
+ -- Sebastian Ramacher <sramacher at debian.org>  Sun, 09 Aug 2015 11:02:35 +0200
+
 cython (0.22.1-1) unstable; urgency=medium
 
   * Fresh upstream release

Modified: packages/cython/trunk/debian/control
===================================================================
--- packages/cython/trunk/debian/control	2015-08-09 08:22:19 UTC (rev 12218)
+++ packages/cython/trunk/debian/control	2015-08-09 10:01:12 UTC (rev 12219)
@@ -13,7 +13,7 @@
                python3-all-dbg,
                python3-numpy,
                gdb,
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Homepage: http://cython.org/
 Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/cython/trunk/
 Vcs-Browser: http://anonscm.debian.org/viewvc/python-apps/packages/cython/trunk/

Modified: packages/cython/trunk/debian/rules
===================================================================
--- packages/cython/trunk/debian/rules	2015-08-09 08:22:19 UTC (rev 12218)
+++ packages/cython/trunk/debian/rules	2015-08-09 10:01:12 UTC (rev 12219)
@@ -103,7 +103,7 @@
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 	set -e; for P in $(PY2VERS) $(PY3VERS); do \
 	 PYTHONPATH=`/bin/ls -d $(CURDIR)/build/lib.*-$$P` \
-	  /usr/bin/python$$P runtests.py --no-refnanny -v -v --exclude="(parallel|Debugger)" --work-dir=build/work-dir; \
+	  /usr/bin/python$$P runtests.py --no-refnanny -v -v --exclude="(parallel|Debugger)" --work-dir=build/work-dir 2>&1; \
 	done
 endif
 




More information about the Python-apps-commits mailing list