diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-08-04 07:38:39 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-08-04 07:38:55 +0100 |
commit | e7ade90feb40e0200492ca203cbca8cf83787e77 (patch) | |
tree | 26e3d47dc80904c1b9c75fc523d4bbd28fce64e0 /dev-haskell/binary-tagged | |
parent | dev-haskell/binary-instances: new package, a depend of binary-tagged (diff) | |
download | gentoo-e7ade90feb40e0200492ca203cbca8cf83787e77.tar.gz gentoo-e7ade90feb40e0200492ca203cbca8cf83787e77.tar.bz2 gentoo-e7ade90feb40e0200492ca203cbca8cf83787e77.zip |
dev-haskell/binary-tagged: bump up to 0.2
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-haskell/binary-tagged')
-rw-r--r-- | dev-haskell/binary-tagged/Manifest | 1 | ||||
-rw-r--r-- | dev-haskell/binary-tagged/binary-tagged-0.2.ebuild | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/dev-haskell/binary-tagged/Manifest b/dev-haskell/binary-tagged/Manifest index f4f364033fb9..8f77de916282 100644 --- a/dev-haskell/binary-tagged/Manifest +++ b/dev-haskell/binary-tagged/Manifest @@ -1 +1,2 @@ DIST binary-tagged-0.1.4.2.tar.gz 9318 BLAKE2B 19a3878d755a57fbeebed38451c55c5695637ee136491ded830a127dcb4f33106bbaf7efb3d3101dc0c37f752e30e93c2ec1216a33343093431d0144c0dcff48 SHA512 381ac0833c13c9b50174d2c5d3695e4af9955631dbaa20719556084ce013973ea37993cb86ac4880f41044fbf178dabe6f100cc53c2d982037a2ca9826878706 +DIST binary-tagged-0.2.tar.gz 9570 BLAKE2B 06519bc4862da1ad4804c487f5b250600e20dff479d47db88dc0b83030a08078b41d1a6691a7b9dc2de62defb797d30bc8081158e722a6c564e08e1a89287971 SHA512 03bcf80b39d5f8e1256ac45b557904d6750d1786f4b4da0c1b9e5c004503d5375699480f89426145a3eea103555c5f4fc820cb87053a2b6ccf4c7e1d6faf7120 diff --git a/dev-haskell/binary-tagged/binary-tagged-0.2.ebuild b/dev-haskell/binary-tagged/binary-tagged-0.2.ebuild new file mode 100644 index 000000000000..f53ead554f72 --- /dev/null +++ b/dev-haskell/binary-tagged/binary-tagged-0.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# ebuild generated by hackport 0.6.1.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Tagged binary serialisation" +HOMEPAGE="https://github.com/phadej/binary-tagged#readme" +SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/aeson-0.8:=[profile?] <dev-haskell/aeson-1.5:=[profile?] + >=dev-haskell/base16-bytestring-0.1.1.6:=[profile?] <dev-haskell/base16-bytestring-0.2:=[profile?] + >=dev-haskell/cryptohash-sha1-0.11.100.1:=[profile?] <dev-haskell/cryptohash-sha1-0.12:=[profile?] + >=dev-haskell/generics-sop-0.3.2.0:=[profile?] <dev-haskell/generics-sop-0.6:=[profile?] + >=dev-haskell/hashable-1.2:=[profile?] <dev-haskell/hashable-1.4:=[profile?] + >=dev-haskell/scientific-0.3:=[profile?] <dev-haskell/scientific-0.4:=[profile?] + >=dev-haskell/semigroups-0.18.5:=[profile?] <dev-haskell/semigroups-0.20:=[profile?] + >=dev-haskell/tagged-0.7:=[profile?] <dev-haskell/tagged-0.9:=[profile?] + >=dev-haskell/text-1.2.3.0:=[profile?] <dev-haskell/text-1.3:=[profile?] + >=dev-haskell/unordered-containers-0.2:=[profile?] <dev-haskell/unordered-containers-0.3:=[profile?] + >=dev-haskell/vector-0.10:=[profile?] <dev-haskell/vector-0.13:=[profile?] + >=dev-lang/ghc-7.10.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.22.2.0 + test? ( dev-haskell/bifunctors + >=dev-haskell/binary-instances-1 <dev-haskell/binary-instances-1.1 + dev-haskell/quickcheck-instances + dev-haskell/tasty + dev-haskell/tasty-hunit + dev-haskell/tasty-quickcheck ) +" + +src_prepare() { + default + + cabal_chdeps \ + 'base >=4.7.0.2 && <4.13' 'base >=4.7.0.2' \ + 'time >=1.4.2 && <1.9' 'time >=1.4.2' +} |