This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository geos.
commit 7b7cf53d94866ed6313ed305817d9d2b44cbf165 Author: Bas Couwenberg <[email protected]> Date: Fri Jan 20 15:57:11 2017 +0100 Ignore test failures on problematic architectures only. --- debian/changelog | 6 ++++++ debian/rules | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/debian/changelog b/debian/changelog index 4de854c..178da6b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +geos (3.5.1-4) UNRELEASED; urgency=medium + + * Ignore test failures on problematic architectures only. + + -- Bas Couwenberg <[email protected]> Fri, 20 Jan 2017 15:57:07 +0100 + geos (3.5.1-3) unstable; urgency=medium * Fix architectures for getGeometryN(unsigned long) symbol. diff --git a/debian/rules b/debian/rules index f44936f..295cb16 100755 --- a/debian/rules +++ b/debian/rules @@ -64,7 +64,12 @@ override_dh_auto_build-indep: $(MAKE) -C doc doxygen-html override_dh_auto_test: +# Ignore test failures on problematic architectures only +ifneq (,$(findstring $(DEB_BUILD_ARCH),"arm64 armel armhf mips mips64el mipsel ppc64el s390x powerpc ppc64")) dh_auto_test || echo "Ignoring test failures" +else + dh_auto_test +endif override_dh_install-arch: # add C++ headers to C++ dev package install file -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/geos.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

