summaryrefslogtreecommitdiff
path: root/p/haskell-http-api-data
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2016-10-06 13:14:03 -0400
committerClint Adams <clint@debian.org>2016-10-06 13:14:03 -0400
commitfadaa61bc81976e069a7e1f72e33aca052cfd576 (patch)
tree2a2e0e20ea69de61df6ae03d4631a45a91c6fa66 /p/haskell-http-api-data
parentdca981064c071d87fcc7e63e4316e4aa8b199664 (diff)
downloadDHG_packages-fadaa61bc81976e069a7e1f72e33aca052cfd576.tar.gz
http-api-data: disable testsuite on armel
Diffstat (limited to 'p/haskell-http-api-data')
-rw-r--r--p/haskell-http-api-data/debian/changelog6
-rwxr-xr-xp/haskell-http-api-data/debian/rules6
2 files changed, 12 insertions, 0 deletions
diff --git a/p/haskell-http-api-data/debian/changelog b/p/haskell-http-api-data/debian/changelog
index f4cb37b87..837304da5 100644
--- a/p/haskell-http-api-data/debian/changelog
+++ b/p/haskell-http-api-data/debian/changelog
@@ -1,3 +1,9 @@
+haskell-http-api-data (0.2.4-2) unstable; urgency=medium
+
+ * Disable testsuite on armel, where ghci is broken.
+
+ -- Clint Adams <clint@debian.org> Thu, 06 Oct 2016 13:09:20 -0400
+
haskell-http-api-data (0.2.4-1) unstable; urgency=medium
* New upstream release
diff --git a/p/haskell-http-api-data/debian/rules b/p/haskell-http-api-data/debian/rules
index 7095c7493..82fbf1b26 100755
--- a/p/haskell-http-api-data/debian/rules
+++ b/p/haskell-http-api-data/debian/rules
@@ -2,7 +2,13 @@
DEB_CABAL_PACKAGE = http-api-data
DEB_DEFAULT_COMPILER = ghc
+
+# ghci is broken on armel (#839840)
+ifeq (,$(filter $(DEB_BUILD_ARCH),armel))
DEB_ENABLE_TESTS = yes
+else
+DEB_ENABLE_TESTS = no
+endif
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk