r46831 - in /desktop/unstable/pygobject/debian: changelog rules
biebl at users.alioth.debian.org
biebl at users.alioth.debian.org
Thu Oct 29 23:56:10 UTC 2015
Author: biebl
Date: Thu Oct 29 23:56:10 2015
New Revision: 46831
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=46831
Log:
Fix rules when deciding for which architecture the test-suite failure
should be non-fatal. Use filter instead of findstring, as findstring also
matches substrings (e.g. adding kfreebsd-amd64 did also make the amd64
test-suite non-fatal).
Modified:
desktop/unstable/pygobject/debian/changelog
desktop/unstable/pygobject/debian/rules
Modified: desktop/unstable/pygobject/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pygobject/debian/changelog?rev=46831&op=diff
==============================================================================
--- desktop/unstable/pygobject/debian/changelog [utf-8] (original)
+++ desktop/unstable/pygobject/debian/changelog [utf-8] Thu Oct 29 23:56:10 2015
@@ -1,3 +1,12 @@
+pygobject (3.18.2-2) UNRELEASED; urgency=medium
+
+ * Fix rules when deciding for which architecture the test-suite failure
+ should be non-fatal. Use filter instead of findstring, as findstring also
+ matches substrings (e.g. adding kfreebsd-amd64 did also make the amd64
+ test-suite non-fatal).
+
+ -- Michael Biebl <biebl at debian.org> Fri, 30 Oct 2015 00:51:54 +0100
+
pygobject (3.18.2-1) unstable; urgency=medium
* New upstream release.
Modified: desktop/unstable/pygobject/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pygobject/debian/rules?rev=46831&op=diff
==============================================================================
--- desktop/unstable/pygobject/debian/rules [utf-8] (original)
+++ desktop/unstable/pygobject/debian/rules [utf-8] Thu Oct 29 23:56:10 2015
@@ -11,7 +11,7 @@
FLAVOURS := $(PYVERS) $(patsubst %,%-dbg,$(PYVERS))
TESTSUITE_FAIL_CMD=exit 1
-ifneq ($(findstring $(DEB_BUILD_ARCH), s390x mipsel kfreebsd-amd64 kfreebsd-i386 hurd-i386),)
+ifneq ($(filter $(DEB_BUILD_ARCH), s390x mipsel kfreebsd-amd64 kfreebsd-i386 hurd-i386),)
# tests currently fail on these architectures
TESTSUITE_FAIL_CMD=( echo "*** test-suite FAILED but continuing anyway ***"; true; )
endif
More information about the pkg-gnome-commits
mailing list