diff options
author | Sean Whitton <spwhitton@spwhitton.name> | 2017-09-10 10:53:28 -0700 |
---|---|---|
committer | Sean Whitton <spwhitton@spwhitton.name> | 2017-09-10 10:53:28 -0700 |
commit | 0ae567c72a1ffb83d256e5a5a5c27f99f82296b5 (patch) | |
tree | 5efaf139644c1d645311d6a637ac398ecc0f6037 | |
parent | 48ce8a978d109fc3cfefbc89fb50927fa87ef162 (diff) | |
download | DHG_packages-0ae567c72a1ffb83d256e5a5a5c27f99f82296b5.tar.gz |
integer-logarithms: disable tests
-rw-r--r-- | p/haskell-integer-logarithms/debian/changelog | 4 | ||||
-rw-r--r-- | p/haskell-integer-logarithms/debian/control | 5 | ||||
-rwxr-xr-x | p/haskell-integer-logarithms/debian/rules | 3 |
3 files changed, 8 insertions, 4 deletions
diff --git a/p/haskell-integer-logarithms/debian/changelog b/p/haskell-integer-logarithms/debian/changelog index 4bc5ef417..b7a9e45c2 100644 --- a/p/haskell-integer-logarithms/debian/changelog +++ b/p/haskell-integer-logarithms/debian/changelog @@ -1,8 +1,10 @@ haskell-integer-logarithms (1.0.2-1) unstable; urgency=medium * New upstream release + * Disable test suite. + Requires quickcheck newer than current LTS Haskell. - -- Sean Whitton <spwhitton@spwhitton.name> Sun, 03 Sep 2017 13:51:09 -0700 + -- Sean Whitton <spwhitton@spwhitton.name> Sun, 10 Sep 2017 10:53:11 -0700 haskell-integer-logarithms (1.0.1-1) unstable; urgency=low diff --git a/p/haskell-integer-logarithms/debian/control b/p/haskell-integer-logarithms/debian/control index d5ca35c0f..556d33f28 100644 --- a/p/haskell-integer-logarithms/debian/control +++ b/p/haskell-integer-logarithms/debian/control @@ -8,8 +8,9 @@ Build-Depends: debhelper (>= 10), cdbs, ghc, ghc-prof, - libghc-quickcheck2-dev (>= 2.10), - libghc-quickcheck2-dev (<< 2.11), +# these are newer than current LTS +# libghc-quickcheck2-dev (>= 2.10), +# libghc-quickcheck2-dev (<< 2.11), libghc-smallcheck-dev (>= 1.1), libghc-smallcheck-dev (<< 1.2), libghc-tasty-dev (>= 0.10), diff --git a/p/haskell-integer-logarithms/debian/rules b/p/haskell-integer-logarithms/debian/rules index ae8292de8..3276284fa 100755 --- a/p/haskell-integer-logarithms/debian/rules +++ b/p/haskell-integer-logarithms/debian/rules @@ -1,6 +1,7 @@ #!/usr/bin/make -f -DEB_ENABLE_TESTS = yes +# needs QuickCheck 2.10 which is newer than current LTS +DEB_ENABLE_TESTS = no DEB_SETUP_BIN_NAME = debian/hlibrary.setup DEB_CABAL_PACKAGE = integer-logarithms DEB_DEFAULT_COMPILER = ghc |