commit: bdf3b3987e34aa44084a4c35cf48d8e02c190919
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 1 10:57:19 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Nov 1 11:06:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdf3b398
dev-haskell/test-framework-th: update to EAPI=7
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-haskell/test-framework-th/metadata.xml | 49 ----------------------
.../test-framework-th-0.2.4.ebuild | 20 +++++----
2 files changed, 11 insertions(+), 58 deletions(-)
diff --git a/dev-haskell/test-framework-th/metadata.xml
b/dev-haskell/test-framework-th/metadata.xml
index a8fce2d224a..b7878815d80 100644
--- a/dev-haskell/test-framework-th/metadata.xml
+++ b/dev-haskell/test-framework-th/metadata.xml
@@ -5,53 +5,4 @@
<email>[email protected]</email>
<name>Gentoo Haskell</name>
</maintainer>
- <longdescription>
- @test-framework-th@ contains two interesting functions:
@defaultMainGenerator@ and @testGroupGenerator@.
-
- @defaultMainGenerator@ will extract all functions beginning
with case_ or prop_ in the module and put them in a testGroup.
-
- > -- file SomeModule.hs
- > ( -# LANGUAGE TemplateHaskell #- )
- > module SomeModule where
- > import Test.Framework.TH
- > import Test.Framework
- > import Test.HUnit
- > import Test.Framework.Providers.HUnit
- > import Test.Framework.Providers.QuickCheck2
- >
- > -- observe this line!
- > main = $(defaultMainGenerator)
- > case_1 = do 1 @=? 1
- > case_2 = do 2 @=? 2
- > prop_reverse xs = reverse (reverse xs) == xs
- > where types = xs::[Int]
-
- is the same as
-
- > -- file SomeModule.hs
- > ( -# LANGUAGE TemplateHaskell #- )
- > module SomeModule where
- > import Test.Framework.TH
- > import Test.Framework
- > import Test.HUnit
- > import Test.Framework.Providers.HUnit
- > import Test.Framework.Providers.QuickCheck2
- >
- > -- observe this line!
- > main =
- > defaultMain [
- > testGroup "SomeModule" [ testCase "1" case_1, testCase
"2" case_2, testProperty "reverse" prop_reverse]
- > ]
- >
- > case_1 = do 1 @=? 1
- > case_2 = do 2 @=? 2
- > prop_reverse xs = reverse (reverse xs) == xs
- > where types = xs::[Int]
-
- @testGroupGenerator@ is like @defaultMainGenerator@ but without
@defaultMain@. It is useful if you need a function for the testgroup
- (e.g. if you want to be able to call the testgroup from another
module).
- </longdescription>
- <upstream>
- <remote-id type="github">finnsson/test-generator</remote-id>
- </upstream>
</pkgmetadata>
diff --git a/dev-haskell/test-framework-th/test-framework-th-0.2.4.ebuild
b/dev-haskell/test-framework-th/test-framework-th-0.2.4.ebuild
index 812e3653792..cc8dadb87ad 100644
--- a/dev-haskell/test-framework-th/test-framework-th-0.2.4.ebuild
+++ b/dev-haskell/test-framework-th/test-framework-th-0.2.4.ebuild
@@ -1,14 +1,14 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
-# ebuild generated by hackport 0.3.1.9999
+# ebuild generated by hackport 0.6.6.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
-DESCRIPTION="Automagically generate the HUnit and Quickcheck code using
Template Haskell"
+DESCRIPTION="Automagically generate the HUnit and Quickcheck using Template
Haskell"
HOMEPAGE="https://github.com/finnsson/test-generator"
SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
@@ -18,9 +18,11 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-haskell/haskell-src-exts:=[profile?]
- >=dev-haskell/language-haskell-extract-0.2:=[profile?]
- dev-haskell/regex-posix:=[profile?]
- dev-haskell/test-framework:=[profile?]
- >=dev-lang/ghc-6.10.4:="
+ >=dev-haskell/language-haskell-extract-0.2:=[profile?]
+ dev-haskell/regex-posix:=[profile?]
+ dev-haskell/test-framework:=[profile?]
+ >=dev-lang/ghc-7.4.1:=
+"
DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.6"
+ >=dev-haskell/cabal-1.6
+"