Commit e3418f6b authored by Clint Adams's avatar Clint Adams
Browse files

uuid: tweaks

parent 4f912600
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
haskell-uuid (1.3.13-4) unstable; urgency=medium

  * Patch for newer test deps, re-enable testsuite.

 -- Clint Adams <clint@debian.org>  Sat, 14 Apr 2018 11:53:50 -0400

haskell-uuid (1.3.13-3) unstable; urgency=medium

  [ Ilias Tsitsimpis ]
+2 −4
Original line number Diff line number Diff line
@@ -23,15 +23,13 @@ Build-Depends:
 libghc-network-info-dev (<< 0.3),
 libghc-network-info-prof,
 libghc-quickcheck2-dev (>= 2.4),
 libghc-quickcheck2-dev (<< 2.10),
 libghc-quickcheck2-dev (<< 2.12),
 libghc-random-dev (<< 1.2),
 libghc-random-dev (>= 1.0.1),
 libghc-random-prof,
 libghc-tasty-dev (<< 0.12),
 libghc-hunit-dev (>= 1.2),
 libghc-tasty-dev (>= 0.10),
 libghc-tasty-hunit-dev (<< 0.10),
 libghc-tasty-hunit-dev (>= 0.9),
 libghc-tasty-quickcheck-dev (<< 0.9),
 libghc-tasty-quickcheck-dev (>= 0.8),
 libghc-text-dev (<< 1.3),
 libghc-text-dev (>= 1),
+29 −0
Original line number Diff line number Diff line
@@ -9,3 +9,21 @@
                        text            >= 1        && < 1.3,
                        uuid-types      >= 1.0.2    && < 2
 
@@ -69,12 +69,12 @@
     Build-Depends:     uuid
     Build-Depends:     base             >= 4.3   && < 5,
                        bytestring       >= 0.9   && < 0.11,
-                       HUnit            >= 1.2   && < 1.4,
-                       QuickCheck       >= 2.4   && < 2.10,
+                       HUnit            >= 1.2   && < 1.7,
+                       QuickCheck       >= 2.4   && < 2.12,
                        random           >= 1.0.1 && < 1.2,
-                       tasty            >= 0.10  && < 0.12,
-                       tasty-hunit      == 0.9.*,
-                       tasty-quickcheck == 0.8.*
+                       tasty            >= 0.10,
+                       tasty-hunit      >= 0.9,
+                       tasty-quickcheck >= 0.8
 
 benchmark benchmark
     Type:              exitcode-stdio-1.0
+1 −1
Original line number Diff line number Diff line
newer-time
newer-deps
+2 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f

DEB_ENABLE_TESTS = yes

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
Loading