diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2016-09-11 10:55:18 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2016-09-11 11:01:40 +0100 |
commit | 7dfe0934b01d9b71a461a172ce26cbdd14a1ca29 (patch) | |
tree | 068532575c88aac89f34dd5fdc7b8c246e99ee5b /dev-haskell/testing-feat | |
parent | dev-haskell/tagshare: explicit sharing with tags, a depend of dev-haskell/tes... (diff) | |
download | gentoo-7dfe0934b01d9b71a461a172ce26cbdd14a1ca29.tar.gz gentoo-7dfe0934b01d9b71a461a172ce26cbdd14a1ca29.tar.bz2 gentoo-7dfe0934b01d9b71a461a172ce26cbdd14a1ca29.zip |
dev-haskell/testing-feat: funtional enumeration of ADTs, a depend of dev-haskell/language-ecmascript
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-haskell/testing-feat')
-rw-r--r-- | dev-haskell/testing-feat/Manifest | 1 | ||||
-rw-r--r-- | dev-haskell/testing-feat/metadata.xml | 23 | ||||
-rw-r--r-- | dev-haskell/testing-feat/testing-feat-0.4.0.3.ebuild | 28 |
3 files changed, 52 insertions, 0 deletions
diff --git a/dev-haskell/testing-feat/Manifest b/dev-haskell/testing-feat/Manifest new file mode 100644 index 000000000000..693cbdc53c0a --- /dev/null +++ b/dev-haskell/testing-feat/Manifest @@ -0,0 +1 @@ +DIST testing-feat-0.4.0.3.tar.gz 17864 SHA256 34ca9c7849c4054b951cb359dc55ec1d24f5c2f7cf31d6211959778ad35407ce SHA512 0dabd9129472d9cf91b87a31aec9265369cdf58ec47fe74997df08097d4e93edb4f4bf52050bbca0c345e5993c12d0fcf755b94dd80093a33ba8fef366b08516 WHIRLPOOL b95d7d606679b39dc4f166600d5318fb918156543d292d7896bf4d456a8a66d2f2f1b92cedaf6c8c0d5bdb0ec067a4e6876e70803998d9b2c72c43ca7fb17f95 diff --git a/dev-haskell/testing-feat/metadata.xml b/dev-haskell/testing-feat/metadata.xml new file mode 100644 index 000000000000..665eeb0f74e3 --- /dev/null +++ b/dev-haskell/testing-feat/metadata.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>haskell@gentoo.org</email> + <name>Gentoo Haskell</name> + </maintainer> + <longdescription> + Feat (Functional Enumeration of Abstract Types) provides + enumerations as functions from natural numbers to values + (similar to @toEnum@ but for any algebraic data type). This + can be used for SmallCheck-style systematic testing, + QuickCheck style random testing, and hybrids of the two. + + The enumerators are defined in a very boilerplate manner + and there is a Template Haskell script for deriving the + class instance for most types. + "Test.Feat" contain a subset of the other modules that + should be sufficient for most test usage. There + are some small and large example in the tar + ball. + </longdescription> +</pkgmetadata> diff --git a/dev-haskell/testing-feat/testing-feat-0.4.0.3.ebuild b/dev-haskell/testing-feat/testing-feat-0.4.0.3.ebuild new file mode 100644 index 000000000000..e9598d2da48d --- /dev/null +++ b/dev-haskell/testing-feat/testing-feat-0.4.0.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.4.7.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Functional Enumeration of Algebraic Types" +HOMEPAGE="http://hackage.haskell.org/package/testing-feat" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/mtl-1:=[profile?] <dev-haskell/mtl-3:=[profile?] + >dev-haskell/quickcheck-2:2=[profile?] <dev-haskell/quickcheck-3:2=[profile?] + <dev-haskell/tagshare-0.1:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6 +" |