[SCM] Grantlee template engine packaging branch, master, updated. debian/0.3.0-3-8-gf69785f

Pino Toscano pino at alioth.debian.org
Wed May 15 11:10:24 UTC 2013


Gitweb-URL: http://git.debian.org/?p=pkg-kde/krap/grantlee.git;a=commitdiff;h=86f5860

The following commit has been merged in the master branch:
commit 86f586074ede852b547914864ed73b34cb4696c4
Author: Pino Toscano <pino at debian.org>
Date:   Wed May 15 12:57:50 2013 +0200

    rules: allow to ignore test suite failure on specified archs
---
 debian/rules |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/debian/rules b/debian/rules
index c7fa921..367a5af 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,12 @@
 #!/usr/bin/make -f
 
+DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
+
+testsuite_failing_archs := none
+ifneq (,$(filter $(DEB_HOST_ARCH),$(testsuite_failing_archs)))
+  fail_param := || true
+endif
+
 %:
 	dh $@ --parallel --with pkgkde_symbolshelper
 
@@ -7,7 +14,7 @@ override_dh_auto_configure:
 	dh_auto_configure -- -DBUILD_TESTS=ON
 
 override_dh_auto_test:
-	xvfb-run dh_auto_test
+	xvfb-run dh_auto_test $(fail_param)
 
 override_dh_makeshlibs:
 	dh_makeshlibs -V -X/usr/lib/grantlee/

-- 
Grantlee template engine packaging



More information about the pkg-kde-commits mailing list