commit: 7dfe0934b01d9b71a461a172ce26cbdd14a1ca29 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Sun Sep 11 09:55:18 2016 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Sun Sep 11 10:01:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dfe0934
dev-haskell/testing-feat: funtional enumeration of ADTs, a depend of dev-haskell/language-ecmascript Package-Manager: portage-2.3.0 dev-haskell/testing-feat/Manifest | 1 + dev-haskell/testing-feat/metadata.xml | 23 ++++++++++++++++++ .../testing-feat/testing-feat-0.4.0.3.ebuild | 28 ++++++++++++++++++++++ 3 files changed, 52 insertions(+) diff --git a/dev-haskell/testing-feat/Manifest b/dev-haskell/testing-feat/Manifest new file mode 100644 index 00000000..693cbdc --- /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 00000000..665eeb0 --- /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>[email protected]</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 00000000..e9598d2 --- /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 +"
