diff options
author | Mark Wright <gienah@gentoo.org> | 2012-06-02 07:05:41 +0000 |
---|---|---|
committer | Mark Wright <gienah@gentoo.org> | 2012-06-02 07:05:41 +0000 |
commit | 96daecb0d4bdecc0d7fed330f86bba5955218dd2 (patch) | |
tree | 07f48e55805c807dc63d84c4767c23f0907efaee | |
parent | inherit multilib for get_libdir (diff) | |
download | gentoo-2-96daecb0d4bdecc0d7fed330f86bba5955218dd2.tar.gz gentoo-2-96daecb0d4bdecc0d7fed330f86bba5955218dd2.tar.bz2 gentoo-2-96daecb0d4bdecc0d7fed330f86bba5955218dd2.zip |
Add lazysmallcheck
(Portage version: 2.1.10.63/cvs/Linux x86_64)
-rw-r--r-- | dev-haskell/lazysmallcheck/ChangeLog | 10 | ||||
-rw-r--r-- | dev-haskell/lazysmallcheck/lazysmallcheck-0.6.ebuild | 21 | ||||
-rw-r--r-- | dev-haskell/lazysmallcheck/metadata.xml | 17 |
3 files changed, 48 insertions, 0 deletions
diff --git a/dev-haskell/lazysmallcheck/ChangeLog b/dev-haskell/lazysmallcheck/ChangeLog new file mode 100644 index 000000000000..3a82ed3c9d53 --- /dev/null +++ b/dev-haskell/lazysmallcheck/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-haskell/lazysmallcheck +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/lazysmallcheck/ChangeLog,v 1.1 2012/06/02 07:05:41 gienah Exp $ + +*lazysmallcheck-0.6 (02 Jun 2012) + + 02 Jun 2012; Mark Wright <gienah@gentoo.org> +lazysmallcheck-0.6.ebuild, + +metadata.xml: + Add lazysmallcheck + diff --git a/dev-haskell/lazysmallcheck/lazysmallcheck-0.6.ebuild b/dev-haskell/lazysmallcheck/lazysmallcheck-0.6.ebuild new file mode 100644 index 000000000000..36fba6080ee3 --- /dev/null +++ b/dev-haskell/lazysmallcheck/lazysmallcheck-0.6.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/lazysmallcheck/lazysmallcheck-0.6.ebuild,v 1.1 2012/06/02 07:05:41 gienah Exp $ + +EAPI=4 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="A library for demand-driven testing of Haskell programs" +HOMEPAGE="http://www.cs.york.ac.uk/~mfn/lazysmallcheck/" +SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND=">=dev-lang/ghc-6.8.2" +DEPEND="${RDEPEND} + dev-haskell/cabal" diff --git a/dev-haskell/lazysmallcheck/metadata.xml b/dev-haskell/lazysmallcheck/metadata.xml new file mode 100644 index 000000000000..c7c3028b5541 --- /dev/null +++ b/dev-haskell/lazysmallcheck/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>haskell</herd> + <maintainer> + <email>haskell@gentoo.org</email> + </maintainer> + <longdescription> + Lazy SmallCheck is a library for exhaustive, demand-driven testing of + Haskell programs. It is based on the idea that if a property holds + for a partially-defined input then it must also hold for all + fully-defined refinements of the that input. Compared to ``eager'' + input generation as in SmallCheck, Lazy SmallCheck may require + significantly fewer test-cases to verify a property for all inputs up + to a given depth. + </longdescription> +</pkgmetadata> |