[commit: packages/bytestring] 0.10.4.x, master: QuickCheck update from yesterday breaks the build (6093aef)

git at git.haskell.org git at git.haskell.org
Fri Jan 23 22:42:01 UTC 2015


Repository : ssh://git@git.haskell.org/bytestring

On branches: 0.10.4.x,master
Link       : http://git.haskell.org/packages/bytestring.git/commitdiff/6093aef1f967f97eebd2ac2e7a98825ae6ec505e

>---------------------------------------------------------------

commit 6093aef1f967f97eebd2ac2e7a98825ae6ec505e
Author: Daniel Peebles <pumpkingod at gmail.com>
Date:   Thu Mar 20 00:06:04 2014 -0400

    QuickCheck update from yesterday breaks the build
    
    QuickCheck 2.7 changed `Property` to a newtype instead of a type synonym. This should fix it until we update our test code.


>---------------------------------------------------------------

6093aef1f967f97eebd2ac2e7a98825ae6ec505e
 bytestring.cabal | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bytestring.cabal b/bytestring.cabal
index 0762d81..5bbae89 100644
--- a/bytestring.cabal
+++ b/bytestring.cabal
@@ -153,7 +153,7 @@ test-suite prop-compiled
                     TestFramework
   hs-source-dirs:   . tests
   build-depends:    base, ghc-prim, deepseq, random, directory,
-                    QuickCheck >= 2.3 && < 3
+                    QuickCheck >= 2.3 && < 2.7
   c-sources:        cbits/fpstring.c
   include-dirs:     include
   ghc-options:      -fwarn-unused-binds
@@ -176,7 +176,7 @@ test-suite test-builder
 
   build-depends:    base, ghc-prim,
                     deepseq,
-                    QuickCheck                 >= 2.4 && < 3,
+                    QuickCheck                 >= 2.4 && < 2.7,
                     byteorder                  == 1.0.*,
                     dlist                      == 0.5.*,
                     directory,



More information about the ghc-commits mailing list