[SCM] pyliblo/master: Do not run test suite on sparc until #721617 is fixed in liblo

sramacher at users.alioth.debian.org sramacher at users.alioth.debian.org
Mon Oct 14 18:59:24 UTC 2013


The following commit has been merged in the master branch:
commit 97a4412f93dee9a40a05dfd08c4e7af06235c56d
Author: Sebastian Ramacher <sramacher at debian.org>
Date:   Mon Oct 14 20:48:09 2013 +0200

    Do not run test suite on sparc until #721617 is fixed in liblo

diff --git a/debian/rules b/debian/rules
index ec70b95..5c58118 100755
--- a/debian/rules
+++ b/debian/rules
@@ -23,6 +23,10 @@ override_dh_auto_install: $(PYTHON3:%=install-python%)
 	dh_auto_install
 
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+DEB_HOST_ARCH=$(shell dpkg-architecture -qDEB_HOST_ARCH)
+# do not run test suite on sparc since liblo has problems with 64 bit integers
+# on sparc (see #721617)
+ifeq (,$(filter sparc,$(DEB_HOST_ARCH)))
 pythonpath = $$(ls -d $(CURDIR)/build/lib.*-$(1))
 
 test-python%:
@@ -31,6 +35,7 @@ test-python%:
 
 override_dh_auto_test: $(PYTHON2:%=test-python%) $(PYTHON3:%=test-python%)
 endif
+endif
 
 override_dh_installchangelogs:
 	dh_installchangelogs NEWS

-- 
pyliblo packaging



More information about the pkg-multimedia-commits mailing list