diff options
author | Jack Todaro <solpeth@posteo.org> | 2020-07-30 10:36:01 +1000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-08-01 09:01:56 +0100 |
commit | 71643b169ab465ca57e30c9642bf5cbd8a58483d (patch) | |
tree | 255517d6204b232870d06e11140b5b66b24fe0e9 /dev-haskell/tls/tls-1.5.4.ebuild | |
parent | dev-haskell/hans: add package (diff) | |
download | gentoo-71643b169ab465ca57e30c9642bf5cbd8a58483d.tar.gz gentoo-71643b169ab465ca57e30c9642bf5cbd8a58483d.tar.bz2 gentoo-71643b169ab465ca57e30c9642bf5cbd8a58483d.zip |
dev-haskell/tls: bump up to 1.5.4
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Jack Todaro <solpeth@posteo.org>
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-haskell/tls/tls-1.5.4.ebuild')
-rw-r--r-- | dev-haskell/tls/tls-1.5.4.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/dev-haskell/tls/tls-1.5.4.ebuild b/dev-haskell/tls/tls-1.5.4.ebuild new file mode 100644 index 000000000000..e3524550f229 --- /dev/null +++ b/dev-haskell/tls/tls-1.5.4.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# ebuild generated by hackport 0.6.4 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="TLS/SSL protocol native implementation (Server and Client)" +HOMEPAGE="https://github.com/vincenthz/hs-tls" +SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+compat hans +network" + +RDEPEND="dev-haskell/asn1-encoding:=[profile?] + >=dev-haskell/asn1-types-0.2.0:=[profile?] + >=dev-haskell/async-2.0:=[profile?] + >=dev-haskell/cereal-0.5.3:=[profile?] + >=dev-haskell/cryptonite-0.25:=[profile?] + dev-haskell/data-default-class:=[profile?] + dev-haskell/hourglass:=[profile?] + >=dev-haskell/memory-0.14.6:=[profile?] + >=dev-haskell/mtl-2:=[profile?] + >=dev-haskell/x509-1.7.5:=[profile?] + >=dev-haskell/x509-store-1.6:=[profile?] + >=dev-haskell/x509-validation-1.6.5:=[profile?] + >=dev-lang/ghc-8.0.1:= + hans? ( dev-haskell/hans:=[profile?] ) + network? ( >=dev-haskell/network-2.4.0.0:=[profile?] ) +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.24.0.0 + test? ( dev-haskell/quickcheck + dev-haskell/tasty + dev-haskell/tasty-quickcheck ) +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag compat compat) \ + $(cabal_flag hans hans) \ + $(cabal_flag network network) +} |