[Git][haskell-team/DHG_packages][master] text-show: don't run tests on 32-bit architectures
Clint Adams
gitlab at salsa.debian.org
Tue Apr 17 20:29:58 BST 2018
Clint Adams pushed to branch master at Debian Haskell Group / DHG_packages
Commits:
5ad21014 by Clint Adams at 2018-04-17T15:27:48-04:00
text-show: don't run tests on 32-bit architectures
- - - - -
2 changed files:
- p/haskell-text-show/debian/changelog
- p/haskell-text-show/debian/rules
Changes:
=====================================
p/haskell-text-show/debian/changelog
=====================================
--- a/p/haskell-text-show/debian/changelog
+++ b/p/haskell-text-show/debian/changelog
@@ -1,3 +1,10 @@
+haskell-text-show (3.7.3.isreally.3.7.2-2) unstable; urgency=medium
+
+ * Don't run tests on 32-bit architectures as some of them are not
+ 32-bit-safe.
+
+ -- Clint Adams <clint at debian.org> Tue, 17 Apr 2018 15:27:43 -0400
+
haskell-text-show (3.7.3.isreally.3.7.2-1) unstable; urgency=medium
* Revert to 3.7.2 for now.
=====================================
p/haskell-text-show/debian/rules
=====================================
--- a/p/haskell-text-show/debian/rules
+++ b/p/haskell-text-show/debian/rules
@@ -2,7 +2,11 @@
DEB_CABAL_PACKAGE = text-show
DEB_DEFAULT_COMPILER = ghc
-DEB_ENABLE_TESTS = yes
+ifeq (four,$(shell ghc --info | grep -q 'target word size.*"4"' && echo four))
+ DEB_ENABLE_TESTS = no
+else
+ DEB_ENABLE_TESTS = yes
+endif
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/commit/5ad2101410097f4e0ab0ff6e8dfb57a0ee915ea8
---
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/commit/5ad2101410097f4e0ab0ff6e8dfb57a0ee915ea8
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20180417/c9bcd20f/attachment.html>
More information about the Pkg-haskell-commits
mailing list