This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository postgis.
commit ff1c9dfd726e83f8bb8d338af050dcb04ae2661f Author: Bas Couwenberg <[email protected]> Date: Fri May 20 18:27:02 2016 +0200 Disable tests on Ubuntu (and derivatives), hanging on their buildds. --- debian/changelog | 6 ++++++ debian/rules | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/debian/changelog b/debian/changelog index e364c55..516b40d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +postgis (2.2.2+dfsg-2~exp2) UNRELEASED; urgency=medium + + * Disable tests on Ubuntu (and derivatives), hanging on their buildds. + + -- Bas Couwenberg <[email protected]> Fri, 20 May 2016 18:26:51 +0200 + postgis (2.2.2+dfsg-2~exp1) experimental; urgency=medium * Bump Standards-Version to 3.9.8, no changes. diff --git a/debian/rules b/debian/rules index 3b07fd6..b0f4393 100755 --- a/debian/rules +++ b/debian/rules @@ -20,6 +20,7 @@ export DH_OPTIONS export DEB_BUILD_MAINT_OPTIONS=hardening=+all,-pie DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +VENDOR_DERIVES_FROM_UBUNTU ?= $(shell dpkg-vendor --derives-from Ubuntu && echo yes) DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk @@ -38,6 +39,11 @@ ifneq (,$(findstring $(DEB_HOST_ARCH),"hurd-i386 mipsel armel hppa kfreebsd-i386 CHECK = endif +# Disable tests on Ubuntu (and derivatives), hanging on their buildds. +ifeq ($(VENDOR_DERIVES_FROM_UBUNTU),yes) + CHECK = +endif + # Magic to automatically create a debian/control file for the (or all) # supported versions of Postgres. # -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/postgis.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

