Modified: trunk/dports/devel/hs-quickcheck-devel/Portfile (138234 => 138243)
--- trunk/dports/devel/hs-boolean/Portfile 2015-07-02 19:45:46 UTC (rev 138234)
+++ trunk/dports/devel/hs-quickcheck-devel/Portfile 2015-07-02 22:17:40 UTC (rev 138243)
@@ -3,14 +3,20 @@
PortSystem 1.0
PortGroup haskell 1.0
-haskell.setup Boolean 0.2
-revision 3
-checksums rmd160 197c2fd0d6c0b79bad81201d95834eb54e07d997 \
- sha256 23fff11419defab048b71eec4eea4a4d1154788a2cf9764721d749b79cde18e5
+haskell.setup QuickCheck 2.8.1
+name hs-quickcheck-devel
+checksums rmd160 b7a5df0f86fd4c5d6cd4ed9241cc1c843e8bd020 \
+ sha256 7073aa3635660476aa31df7cf0476926a1ac0231235020122eb276070675763b
license BSD
maintainers nomaintainer
platforms darwin
-description Generalized booleans and numbers
-long_description Some classes for generalized boolean operations.
+depends_lib-append port:hs-tf-random
+
+description Automatic testing of Haskell programs
+long_description \
+ QuickCheck is a library for random testing of program properties. The \
+ programmer provides a specification of the program, in the form of \
+ properties which functions should satisfy, and QuickCheck then tests \
+ that the properties hold in a large number of randomly generated cases.