summaryrefslogtreecommitdiff
path: root/dev-haskell
diff options
context:
space:
mode:
authorJack Todaro <solpeth@posteo.org>2020-07-29 11:24:07 +1000
committerSergei Trofimovich <slyfox@gentoo.org>2020-08-01 08:59:45 +0100
commit7ac139df80bc708bfa845c7f82ac075e29802a62 (patch)
tree1c396f1cdc658e4692a7e2885b9d15c815e2253b /dev-haskell
parentc16a11f280f46525a660397cf23b43dbdc38284c (diff)
downloadgentoo-7ac139df80bc708bfa845c7f82ac075e29802a62.tar.gz
gentoo-7ac139df80bc708bfa845c7f82ac075e29802a62.tar.bz2
gentoo-7ac139df80bc708bfa845c7f82ac075e29802a62.zip
dev-haskell/base-compat-batteries: 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')
-rw-r--r--dev-haskell/base-compat-batteries/Manifest1
-rw-r--r--dev-haskell/base-compat-batteries/base-compat-batteries-0.11.1.ebuild35
-rw-r--r--dev-haskell/base-compat-batteries/metadata.xml29
3 files changed, 65 insertions, 0 deletions
diff --git a/dev-haskell/base-compat-batteries/Manifest b/dev-haskell/base-compat-batteries/Manifest
new file mode 100644
index 000000000000..43b7be06991d
--- /dev/null
+++ b/dev-haskell/base-compat-batteries/Manifest
@@ -0,0 +1 @@
+DIST base-compat-batteries-0.11.1.tar.gz 16748 BLAKE2B bd24a8fb165b8056023f7280745ce972d2036df33cd72f2824055455899d2643b4ca90d116d1692795ea504f0c03a97bc256eaeba7db491f35961061d28d0aba SHA512 a0149db9fae3664507c715e569209a9b996084cfb1f4dc125914eea57c2142ba8ddad559257dbf405c2b91d78d10c570c25e5a3c80bf50eb6bf5d31dfe65c217
diff --git a/dev-haskell/base-compat-batteries/base-compat-batteries-0.11.1.ebuild b/dev-haskell/base-compat-batteries/base-compat-batteries-0.11.1.ebuild
new file mode 100644
index 000000000000..f4b6f1ce6ff5
--- /dev/null
+++ b/dev-haskell/base-compat-batteries/base-compat-batteries-0.11.1.ebuild
@@ -0,0 +1,35 @@
+# 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="base-compat with extra batteries"
+HOMEPAGE="http://hackage.haskell.org/package/base-compat-batteries"
+SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~dev-haskell/base-compat-0.11.1:=[profile?]
+ >=dev-haskell/bifunctors-5.5.2:=[profile?] <dev-haskell/bifunctors-5.6:=[profile?]
+ >=dev-haskell/contravariant-1.5:=[profile?] <dev-haskell/contravariant-1.6:=[profile?]
+ >=dev-haskell/fail-4.9.0.0:=[profile?] <dev-haskell/fail-4.10:=[profile?]
+ >=dev-haskell/nats-1.1.2:=[profile?] <dev-haskell/nats-1.2:=[profile?]
+ >=dev-haskell/semigroups-0.18.4:=[profile?] <dev-haskell/semigroups-0.20:=[profile?]
+ >=dev-haskell/transformers-compat-0.6:=[profile?] <dev-haskell/transformers-compat-0.7:=[profile?]
+ >=dev-haskell/type-equality-1:=[profile?] <dev-haskell/type-equality-1.1:=[profile?]
+ >=dev-haskell/void-0.7.2:=[profile?] <dev-haskell/void-0.8:=[profile?]
+ >=dev-lang/ghc-7.8.2:=
+"
+DEPEND="${RDEPEND}
+ >=dev-haskell/cabal-1.18.1.3
+ test? ( >=dev-haskell/hspec-1.8
+ dev-haskell/quickcheck )
+"
diff --git a/dev-haskell/base-compat-batteries/metadata.xml b/dev-haskell/base-compat-batteries/metadata.xml
new file mode 100644
index 000000000000..012220248aca
--- /dev/null
+++ b/dev-haskell/base-compat-batteries/metadata.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>haskell@gentoo.org</email>
+ <name>Gentoo Haskell</name>
+ </maintainer>
+ <longdescription>
+ Provides functions available in later versions of @base@ to
+ a wider range of compilers, without requiring you to use CPP
+ pragmas in your code.
+
+ This package provides the same API as the
+ @&lt;http://hackage.haskell.org/package/base-compat base-compat&gt;@
+ library, but depends on compatibility packages
+ (such as @semigroups@) to offer a wider support window than
+ @base-compat@, which has no dependencies. Most of the modules
+ in this library have the same names as in @base-compat@
+ to make it easier to switch between the two. There also exist
+ versions of each module with the suffix @.Repl.Batteries@,
+ which are distinct from anything in @base-compat@, to allow
+ for easier use in GHCi.
+
+ See
+ @&lt;https://github.com/haskell-compat/base-compat/blob/master/base-compat/README.markdown#dependencies here&gt;@
+ for a more comprehensive list of differences between
+ @base-compat@ and @base-compat-batteries@.
+ </longdescription>
+</pkgmetadata>