diff options
author | matoro <matoro@users.noreply.github.com> | 2022-07-11 20:54:44 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-22 22:15:10 +0000 |
commit | 050ddba941f53f880a44a5db091e6e913a04635b (patch) | |
tree | 5fe81c1e52c95857c36362604228df37b5cdeeff /dev-haskell/hashable | |
parent | dev-haskell/happy: keyword 1.19.12 for ~ppc64 (diff) | |
download | gentoo-050ddba941f53f880a44a5db091e6e913a04635b.tar.gz gentoo-050ddba941f53f880a44a5db091e6e913a04635b.tar.bz2 gentoo-050ddba941f53f880a44a5db091e6e913a04635b.zip |
dev-haskell/hashable: add 1.4.0.2
Signed-off-by: matoro <matoro@users.noreply.github.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-haskell/hashable')
-rw-r--r-- | dev-haskell/hashable/Manifest | 1 | ||||
-rw-r--r-- | dev-haskell/hashable/hashable-1.4.0.2.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/dev-haskell/hashable/Manifest b/dev-haskell/hashable/Manifest index b8f7c7c6c831..4ef2bf1fd89e 100644 --- a/dev-haskell/hashable/Manifest +++ b/dev-haskell/hashable/Manifest @@ -1 +1,2 @@ DIST hashable-1.2.7.0.tar.gz 30182 BLAKE2B 7dee78e531fb396c51531f7b239f45a316bad3494590684b13814894a606ab8ddf7ef85a2027f26eeddad0a38f2c06a8a16d03b1b67ce009f9e8aed6cc872232 SHA512 41accac8fa38ab5c243caa058deaf31644d4df670520010d0d593e84fd42970f3fe2d4e945a31ac5491050467e843c7bdb299283a4c6d1446dfcbc2dbc58eec7 +DIST hashable-1.4.0.2.tar.gz 25528 BLAKE2B a9d219ce08db64b2bccf691f26ea5e248785ac3263ce1045eb612d2deaf51baa5f0b14270a9810aa1d32193fe9f52b26c2ca4fccb94b98e2ccdcb0b6ba6e8a56 SHA512 a8cc2b7cafa8f18d9a74490d2dff7edf12901b7c40ca0c1881af579695135c1ca7629347d34d0c7dc662078d7669d5d6234bd889c1f77f344297942243fe7dda diff --git a/dev-haskell/hashable/hashable-1.4.0.2.ebuild b/dev-haskell/hashable/hashable-1.4.0.2.ebuild new file mode 100644 index 000000000000..44a2379a2048 --- /dev/null +++ b/dev-haskell/hashable/hashable-1.4.0.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# ebuild generated by hackport 0.7.1.1.9999 +#hackport: flags: sse41:cpu_flags_x86_sse4_1,sse2:cpu_flags_x86_sse2,+integer-gmp,+random-initial-seed + +CABAL_FEATURES="lib profile haddock hoogle hscolour" # test-suite +inherit haskell-cabal + +RESTRICT=test # circular deps: hashable[test]->quickcheck->semigroups->hashable + +DESCRIPTION="A class for types that can be converted to a hash value" +HOMEPAGE="https://github.com/haskell-unordered-containers/hashable" +SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~ppc64 ~x86" + +RDEPEND=">=dev-haskell/base-orphans-0.8.6:=[profile?] + >=dev-lang/ghc-8.4.3:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-2.2.0.1" +# test? ( dev-haskell/hunit +# >=dev-haskell/quickcheck-2.4.0.1 +# >=dev-haskell/random-1.0 <dev-haskell/random-1.3 +# >=dev-haskell/test-framework-0.3.3 +# dev-haskell/test-framework-hunit +# >=dev-haskell/test-framework-quickcheck2-0.2.9 ) + +src_configure() { + haskell-cabal_src_configure \ + --flag=integer-gmp \ + --flag=random-initial-seed +} |