samplet pushed a commit to branch wip-haskell-updates
in repository guix.
commit 527123abd92b6f7610fb28f0be8c985673452982
Author: Timothy Sample <[email protected]>
Date: Sun Nov 3 21:06:33 2019 -0500
gnu: ghc-chell-quickcheck: Update to 0.2.5.2.
* gnu/packages/haskell-xyz.scm (ghc-chell-quickcheck): Update to 0.2.5.2.
[arguments]: Change the 'update-constraints' phase to allow even newer
versions of 'QuickCheck'.
(ghc-chell-quickcheck-bootstrap): Likewise.
---
gnu/packages/haskell-xyz.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index a368a35..14fba34 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -1610,7 +1610,7 @@ testing strategies.")
(define-public ghc-chell-quickcheck
(package
(name "ghc-chell-quickcheck")
- (version "0.2.5.1")
+ (version "0.2.5.2")
(source
(origin
(method url-fetch)
@@ -1619,7 +1619,7 @@ testing strategies.")
"chell-quickcheck-" version ".tar.gz"))
(sha256
(base32
- "1iicsys9igx7m7n4l2b8djardmjy2ah5ibzp7kzs758h460fq53a"))))
+ "0n8c57n88r2bx0bh8nabsz07m42rh23ahs3hgyzf8gr76l08zq03"))))
(build-system haskell-build-system)
(arguments
`(#:phases
@@ -1627,8 +1627,8 @@ testing strategies.")
(add-before 'configure 'update-constraints
(lambda _
(substitute* "chell-quickcheck.cabal"
- (("QuickCheck >= 2\\.3 && < 2\\.11")
- "QuickCheck >= 2.3 && < 2.12")))))))
+ (("QuickCheck >= 2\\.3 && < 2\\.13")
+ "QuickCheck >= 2.3 && < 2.14")))))))
(inputs
`(("ghc-chell" ,ghc-chell)
("ghc-chell-quickcheck-bootstrap" ,ghc-chell-quickcheck-bootstrap)
@@ -1642,7 +1642,7 @@ testing strategies.")
(define ghc-chell-quickcheck-bootstrap
(package
(name "ghc-chell-quickcheck-bootstrap")
- (version "0.2.5.1")
+ (version "0.2.5.2")
(source
(origin
(method url-fetch)
@@ -1651,7 +1651,7 @@ testing strategies.")
"chell-quickcheck-" version ".tar.gz"))
(sha256
(base32
- "1iicsys9igx7m7n4l2b8djardmjy2ah5ibzp7kzs758h460fq53a"))))
+ "0n8c57n88r2bx0bh8nabsz07m42rh23ahs3hgyzf8gr76l08zq03"))))
(build-system haskell-build-system)
(inputs
`(("ghc-chell" ,ghc-chell)
@@ -1664,8 +1664,8 @@ testing strategies.")
(add-before 'configure 'update-constraints
(lambda _
(substitute* "chell-quickcheck.cabal"
- (("QuickCheck >= 2\\.3 && < 2\\.11")
- "QuickCheck >= 2.3 && < 2.12")))))))
+ (("QuickCheck >= 2\\.3 && < 2\\.13")
+ "QuickCheck >= 2.3 && < 2.14")))))))
(home-page "https://john-millikin.com/software/chell/")
(synopsis "QuickCheck support for the Chell testing library")
(description "More complex tests for @code{chell}.")