diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-08-01 22:03:23 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-08-01 22:03:23 +0100 |
commit | 590b9b7b03bf4651e099949e318755af7cfa81b8 (patch) | |
tree | 54c184b7d26c25f1922bfeaf19a1dd45a2e3b1eb /dev-haskell/reflection | |
parent | f4fc10428424904caf2035cffc442195cb088b2c (diff) |
gentoo resync : 01.08.2021
Diffstat (limited to 'dev-haskell/reflection')
-rw-r--r-- | dev-haskell/reflection/Manifest | 6 | ||||
-rw-r--r-- | dev-haskell/reflection/metadata.xml | 44 | ||||
-rw-r--r-- | dev-haskell/reflection/reflection-2.1.6.ebuild (renamed from dev-haskell/reflection/reflection-2.1.4.ebuild) | 17 |
3 files changed, 11 insertions, 56 deletions
diff --git a/dev-haskell/reflection/Manifest b/dev-haskell/reflection/Manifest index 1e62d5e46eeb..3eb0cef20fdd 100644 --- a/dev-haskell/reflection/Manifest +++ b/dev-haskell/reflection/Manifest @@ -1,3 +1,3 @@ -DIST reflection-2.1.4.tar.gz 18364 BLAKE2B 70cf5fc742deac5555be43a24b2b74930e54a7909e68dea53d8dba7b4547b99d97dbb361ae96776a54a7305069305ea085d8d988b70b86460bd476af6392c417 SHA512 3209bb44a07fedddbb2aeb5f2f09414e6672faff6c8fbdb78eaa8f61a1af4d9fba43be193854f8978ffdd82c0ce54bd79a5d875638a41b6a738bc489bd718295 -EBUILD reflection-2.1.4.ebuild 891 BLAKE2B de69c93cc7997cf24bf5c60cf09321e091a7fbbb061f25a0f4db6382be1635790d25faeb8abfa4e5df0019397d1b3864b8cb33f4af4cd4dc43cc241386e15ef9 SHA512 1aee0548b78d779d2bd2fdaa0f2a9f2bf606476fa7ff0c8d2609d6e74f15100c0b457e1fbd86fcaa1625a326e5c3f50454a1a6d067e31a8e1c66480be8e8b85f -MISC metadata.xml 1993 BLAKE2B 24bce26fb7fbf2494ba2e5b5ac22623d73a1852e04aaefbcd3929ad22486790d7040e90b341de8e4f38952237ed6f7b1fee98db938caa443b4efca60c1f66d39 SHA512 eff155a85567f88de01d1232814c47444757d736e8237200b3043d40fa4f67d7cdf0e09b5614ed29c04bf81ab12cc3a5be0a258bf7db51813b4d58f4d137667e +DIST reflection-2.1.6.tar.gz 19976 BLAKE2B 6e32e9300695b102be4039312b3df62bccce75a590eafa37d96d70cbf73acfc4be98bc716485235e4594548b8649b46bb554eacc230320abc2d92dd809f15176 SHA512 d7f615b6f361b2ca7266e8c4611c939d9f80684ca173080e9ad8227f04f2731899113dcb87ecb051d47b29fb860d7caa15c99c7d3d7493e7e73745d085518fdd +EBUILD reflection-2.1.6.ebuild 823 BLAKE2B de51deb0b788e5c5f0a4ab4b9324dbc9b17738be8503e38985ef164779c26a5ede566eb01b60000f2fe7d392167990797f304e8430d45ca095d2c25cc6236dd8 SHA512 4ae79acc3dbd02f458c9f5987894e7f1bad908b8c34d2f7d412bc92d4eeab01f90970d9d7b1c13f173eaf51c71145346b92832c15d94ec46a79f9311f083ae28 +MISC metadata.xml 331 BLAKE2B 411aea540cfd43198acf1968c160473022e19466e2b9130233be8c3dbc4ab29ccae373a945746894eedab0295e8daf0de959e5f261591e664789e3de95f4cd09 SHA512 4056fd7eaf2fd369f78eb5ba59e29bdc0da20e6fa954bce416e60bf4a5a127a224de9931f16c619a6f3a746b04c9b59581a4e7a9545b1cbfec55e0a47df9332f diff --git a/dev-haskell/reflection/metadata.xml b/dev-haskell/reflection/metadata.xml index 0845fb397e13..81f795d4050f 100644 --- a/dev-haskell/reflection/metadata.xml +++ b/dev-haskell/reflection/metadata.xml @@ -5,50 +5,6 @@ <email>haskell@gentoo.org</email> <name>Gentoo Haskell</name> </maintainer> - <longdescription> - This package provides an implementation of the ideas presented in the paper - \"Functional Pearl: Implicit Configurations\" by Oleg Kiselyov and - Chung-chieh Shan. However, the API has been streamlined to improve performance. - - The original paper can be obtained from - <http://www.cs.rutgers.edu/~ccshan/prepose/prepose.pdf>. - - /Changes in 1.1.6/: - - * Relaxed an unnecessary strictness annotation in the fast implementation - - /Changes in 1.1.5/: - - * Both implementations now work on Hugs; the fast implementation ascends - from the ranks of completely unportable black magic to being merely - /mostly/ unportable black magic. - - /Changes from 0.5 to 1.1/: - - * Much faster implementation available that is about 50 /times/ faster than - 0.9 and which runs purely on black magic. This version is now used by - default. To turn it off install with the @slow@ flag. If you encounter a - problem with the implementation, please contact the author. - - * Removed @ReifiedNum@, @reflectNum@, and @reifyIntegral@; @reify@ and - @reflect@ are about 3 orders of magnitude faster than the special case - combinators were. - - /Changes in 0.5/: - - * Generalized the type signatures in reflect to allow you to pass any type - with kind @* -> *@ wrapped around the desired type as the phantom type - argument rather than just a @Proxy@. - - /Changes in 0.4/: - - * Converted from `Data.Tagged` to using `Data.Proxy` for reflection. This - reduces the need for helper functions and scoped type variables in user - code. - </longdescription> - <use> - <flag name="template-haskell">Enable template haskell.</flag> - </use> <upstream> <remote-id type="github">ekmett/reflection</remote-id> </upstream> diff --git a/dev-haskell/reflection/reflection-2.1.4.ebuild b/dev-haskell/reflection/reflection-2.1.6.ebuild index 6330682ad3d4..e869c96dbe2a 100644 --- a/dev-haskell/reflection/reflection-2.1.4.ebuild +++ b/dev-haskell/reflection/reflection-2.1.6.ebuild @@ -3,10 +3,10 @@ EAPI=8 -# ebuild generated by hackport 0.5.6.9999 -#hackport: flags: -slow +# ebuild generated by hackport 0.7.9999 +#hackport: flags: -slow,+template-haskell -CABAL_FEATURES="lib profile haddock hoogle hscolour" +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" inherit haskell-cabal DESCRIPTION="Reifies arbitrary terms into types that can be reflected back into terms" @@ -16,18 +16,17 @@ SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" LICENSE="BSD" SLOT="0/${PV}" KEYWORDS="~amd64 ~x86" -IUSE="+template-haskell" -RDEPEND=">=dev-haskell/semigroups-0.11:=[profile?] <dev-haskell/semigroups-0.19:=[profile?] - >=dev-haskell/tagged-0.4.4:=[profile?] <dev-haskell/tagged-1:=[profile?] - >=dev-lang/ghc-7.4.1:= +RDEPEND=">=dev-lang/ghc-8.4.3:= " DEPEND="${RDEPEND} - >=dev-haskell/cabal-1.10 + >=dev-haskell/cabal-2.2.0.1 + test? ( >=dev-haskell/hspec-2 <dev-haskell/hspec-3 + >=dev-haskell/quickcheck-2 <dev-haskell/quickcheck-3 ) " src_configure() { haskell-cabal_src_configure \ --flag=-slow \ - $(cabal_flag template-haskell template-haskell) + --flag=template-haskell } |