diff -Nru cython-0.20.1+git90-g0e6e38e/debian/changelog cython-0.20.1+git90-g0e6e38e/debian/changelog --- cython-0.20.1+git90-g0e6e38e/debian/changelog 2014-03-27 09:23:08.000000000 +0000 +++ cython-0.20.1+git90-g0e6e38e/debian/changelog 2014-04-14 18:29:58.000000000 +0000 @@ -1,3 +1,10 @@ +cython (0.20.1+git90-g0e6e38e-1ubuntu2) trusty; urgency=medium + + * Reenable test suite on ppc64el. Fixed by the eglibc copysign + non-stack-trashing fix. + + -- William Grant Mon, 14 Apr 2014 19:27:44 +0100 + cython (0.20.1+git90-g0e6e38e-1ubuntu1) trusty; urgency=medium * Ignore test results on ppc64el (failing numpy tests). diff -Nru cython-0.20.1+git90-g0e6e38e/debian/control cython-0.20.1+git90-g0e6e38e/debian/control --- cython-0.20.1+git90-g0e6e38e/debian/control 2014-03-25 20:10:40.000000000 +0000 +++ cython-0.20.1+git90-g0e6e38e/debian/control 2014-04-14 18:32:24.000000000 +0000 @@ -1,7 +1,8 @@ Source: cython Section: python Priority: optional -Maintainer: Python Applications Packaging Team +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Python Applications Packaging Team Uploaders: Ondrej Certik , Yaroslav Halchenko Build-Depends: debhelper (>= 7.0.50~), dpkg-dev (>= 1.16.1~), diff -Nru cython-0.20.1+git90-g0e6e38e/debian/rules cython-0.20.1+git90-g0e6e38e/debian/rules --- cython-0.20.1+git90-g0e6e38e/debian/rules 2014-03-27 09:32:24.000000000 +0000 +++ cython-0.20.1+git90-g0e6e38e/debian/rules 2014-04-14 18:30:03.000000000 +0000 @@ -101,16 +101,10 @@ override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) - for P in $(PY2VERS) $(PY3VERS); do \ - echo "=============== start running tests for $$P ==============="; \ - if ! PYTHONPATH=`/bin/ls -d $(CURDIR)/build/lib.*-$$P` \ + 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" --work-dir=build/work-dir; \ - then \ - rv=1; \ - fi; \ - echo "=============== stop running tests for $$P ==============="; \ - done; \ - exit $(if $(filter $(DEB_HOST_ARCH),ppc64el),0,$$rv) + done endif override_dh_python2: