Commit 4202fae0 authored by Ilias Tsitsimpis's avatar Ilias Tsitsimpis
Browse files

lzma: Relax dependency on libghc-quickcheck2-dev

parent a93de4d2
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
haskell-lzma (0.0.0.3-3) unstable; urgency=medium

  * Relax dependency on libghc-quickcheck2-dev, libghc-tasty-dev
    and libghc-tasty-quickcheck-dev.

 -- Ilias Tsitsimpis <iliastsi@debian.org>  Sat, 20 Oct 2018 11:00:24 +0300

haskell-lzma (0.0.0.3-2) unstable; urgency=medium

  * Bump debhelper compat level to 10
+3 −3
Original line number Diff line number Diff line
@@ -13,16 +13,16 @@ Build-Depends: debhelper (>= 10),
 libghc-hunit-dev (<< 1.7),
 libghc-hunit-prof,
 libghc-quickcheck2-dev (>= 2.8),
 libghc-quickcheck2-dev (<< 2.11),
 libghc-quickcheck2-dev (<< 2.12),
 libghc-quickcheck2-prof,
 libghc-tasty-dev (>= 0.10),
 libghc-tasty-dev (<< 1.1),
 libghc-tasty-dev (<< 1.2),
 libghc-tasty-prof,
 libghc-tasty-hunit-dev (>= 0.9),
 libghc-tasty-hunit-dev (<< 0.11),
 libghc-tasty-hunit-prof,
 libghc-tasty-quickcheck-dev (>= 0.8.3.2),
 libghc-tasty-quickcheck-dev (<< 0.10),
 libghc-tasty-quickcheck-dev (<< 0.11),
 libghc-tasty-quickcheck-prof,
Build-Depends-Indep: ghc-doc,
Standards-Version: 4.1.5
+8 −6
Original line number Diff line number Diff line
Index: b/lzma.cabal
===================================================================
--- a/lzma.cabal
+++ b/lzma.cabal
@@ -44,7 +44,7 @@
@@ -44,7 +44,7 @@ library
   exposed-modules:     Codec.Compression.Lzma
   other-modules:       LibLzma
 
-  build-depends:       base       >=4.5    && <4.10
+  build-depends:       base       >=4.5    && <4.11
+  build-depends:       base       >=4.5    && <4.13
                      , bytestring >=0.9.2  && <0.11
 
   if os(windows)
@@ -70,10 +70,10 @@
@@ -70,10 +70,10 @@ test-suite lzma-tests
                      , base
                      , bytestring
   -- additional dependencies that require version bounds
@@ -19,9 +21,9 @@
-                     , tasty-hunit                == 0.9.*
-                     , tasty-quickcheck           >= 0.8.3.2  && < 0.9
+  build-depends:       HUnit                      >= 1.2      && < 1.7
+                     , QuickCheck                 >= 2.8      && < 2.11
+                     , tasty                      >= 0.10     && < 1.1
+                     , QuickCheck                 >= 2.8      && < 2.12
+                     , tasty                      >= 0.10     && < 1.2
+                     , tasty-hunit                >= 0.9      && < 0.11
+                     , tasty-quickcheck           >= 0.8.3.2  && < 0.10
+                     , tasty-quickcheck           >= 0.8.3.2  && < 0.11
 
   ghc-options:         -Wall -threaded