diff options
author | Jack Todaro <solpeth@posteo.org> | 2020-07-30 11:48:57 +1000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-08-01 09:02:50 +0100 |
commit | e7f687262f23f6aedddb20eb0deee99b9c8d4867 (patch) | |
tree | a7a949f7ee5d6fa06c54b0e73bee836afe1b8856 /dev-haskell/wreq/wreq-0.5.3.2.ebuild | |
parent | dev-haskell/rsa: add package (diff) | |
download | gentoo-e7f687262f23f6aedddb20eb0deee99b9c8d4867.tar.gz gentoo-e7f687262f23f6aedddb20eb0deee99b9c8d4867.tar.bz2 gentoo-e7f687262f23f6aedddb20eb0deee99b9c8d4867.zip |
dev-haskell/wreq: add package
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/wreq/wreq-0.5.3.2.ebuild')
-rw-r--r-- | dev-haskell/wreq/wreq-0.5.3.2.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/dev-haskell/wreq/wreq-0.5.3.2.ebuild b/dev-haskell/wreq/wreq-0.5.3.2.ebuild new file mode 100644 index 000000000000..1c01466b1a0e --- /dev/null +++ b/dev-haskell/wreq/wreq-0.5.3.2.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# ebuild generated by hackport 0.6.2 +#hackport: flags: -developer,+doctest + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="An easy-to-use HTTP client library" +HOMEPAGE="http://www.serpentine.com/wreq" +SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="aws httpbin" + +RDEPEND=">=dev-haskell/aeson-1.0.0.0:=[profile?] + >=dev-haskell/attoparsec-0.11.1.0:=[profile?] + >=dev-haskell/authenticate-oauth-1.5:=[profile?] + dev-haskell/base16-bytestring:=[profile?] + dev-haskell/case-insensitive:=[profile?] + dev-haskell/cryptonite:=[profile?] + >=dev-haskell/exceptions-0.5:=[profile?] + dev-haskell/hashable:=[profile?] + >=dev-haskell/http-client-0.6:=[profile?] + >=dev-haskell/http-client-tls-0.3.3:=[profile?] + >=dev-haskell/http-types-0.8:=[profile?] + >=dev-haskell/lens-4.5:=[profile?] + dev-haskell/lens-aeson:=[profile?] + dev-haskell/memory:=[profile?] + dev-haskell/mime-types:=[profile?] + >=dev-haskell/psqueues-0.2:=[profile?] + dev-haskell/text:=[profile?] + dev-haskell/time-locale-compat:=[profile?] + dev-haskell/unordered-containers:=[profile?] + >=dev-lang/ghc-7.10.1:= + httpbin? ( >=dev-haskell/aeson-pretty-0.8.0:=[profile?] + dev-haskell/base64-bytestring:=[profile?] + >=dev-haskell/snap-core-1.0.0.0:=[profile?] + >=dev-haskell/snap-server-0.9.4.4:=[profile?] + dev-haskell/unix-compat:=[profile?] + dev-haskell/uuid:=[profile?] ) +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.22.2.0 + >=dev-haskell/cabal-doctest-1.0.2 <dev-haskell/cabal-doctest-1.1 + test? ( dev-haskell/doctest + dev-haskell/hunit + dev-haskell/network-info + >=dev-haskell/quickcheck-2.7 + dev-haskell/temporary + dev-haskell/test-framework + dev-haskell/test-framework-hunit + dev-haskell/test-framework-quickcheck2 + dev-haskell/vector + !httpbin? ( >=dev-haskell/aeson-pretty-0.8.0 + dev-haskell/base64-bytestring + >=dev-haskell/snap-core-1.0.0.0 + >=dev-haskell/snap-server-0.9.4.4 + dev-haskell/unix-compat + dev-haskell/uuid ) ) +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag aws aws) \ + --flag=-developer \ + --flag=doctest \ + $(cabal_flag httpbin httpbin) +} |