summaryrefslogtreecommitdiff
path: root/dev-haskell/monad-control
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-10-23 08:35:49 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-10-23 08:35:49 +0100
commit386855c4d1ef509c1fd32abd721589c81669613b (patch)
tree35dc984118f0a7dc2df88313d83bb5779fd12514 /dev-haskell/monad-control
parent0118ac4510d7b85ca62da20e4abd1286dd8bd752 (diff)
gentoo auto-resync : 23:10:2023 - 08:35:49
Diffstat (limited to 'dev-haskell/monad-control')
-rw-r--r--dev-haskell/monad-control/Manifest4
-rw-r--r--dev-haskell/monad-control/metadata.xml25
-rw-r--r--dev-haskell/monad-control/monad-control-1.0.3.1.ebuild26
3 files changed, 29 insertions, 26 deletions
diff --git a/dev-haskell/monad-control/Manifest b/dev-haskell/monad-control/Manifest
index b2dad91b529a..37887dfa9ff9 100644
--- a/dev-haskell/monad-control/Manifest
+++ b/dev-haskell/monad-control/Manifest
@@ -1,3 +1,5 @@
DIST monad-control-1.0.2.3.tar.gz 13864 BLAKE2B c150338e8a585dc045fd23404719fe61a2367f7308e15344f81549fd7f0808ef8fa2238a35b0a7c7984d26885352186bd6bf43359dec68b2df93581b021dd794 SHA512 59837326ec9f25220cb6c7329c91a5806b0ec7412d6af24c0f0d52c4fd93b084e92edd4f5f61a4f9c4248034fa540c23b65d2aacdfca737ece98bb132b8f08d4
+DIST monad-control-1.0.3.1.tar.gz 13985 BLAKE2B b7dbf0b579ca114190cfe6a5400950d20825f7455a4924154e8416dd475eafa81310c397f3283e5d77ac70e158caf46f34fe5214b989ae2bd051de1968cde704 SHA512 b82ac2d3b2ab1892f79bab1341c9ff17ea89b988438cfd40c246f5ffe4560cb2b77e4a1ed1aa9dc2bb64644b9d6da76eda7b40acf8cc34bb03e77b18127e93a1
EBUILD monad-control-1.0.2.3.ebuild 885 BLAKE2B 693a08387ad6918a2591890e535981dd4982c5ee4563ce1fb90904bd37e387d88bf934b9d9bc313f49dd12273d56a50e3c1df43ea166a1b0e6a9ee28edb94066 SHA512 2f0364d8c9cc4a1f09e105895915d495f075b1eb8996674e2c3c5bfafbae9c4fb267c05f9212cd4df27df790238137d8f99c3388520ac74118cc9906903f64b8
-MISC metadata.xml 1419 BLAKE2B de50dab3a7a2896771a3de5565065bc24f29c86eba6367ad03d88f72bb99dd9e7ff49608b4e2d6631473396e0a14165d78dc1bf00ccbb28d51218a2916e1c2b6 SHA512 0722e9e717d834dd6473cce1e823ef3eb0fe69493a483bfc54bd85786b96b2e7859d3fe5e883af9a5193c6c618875da3c8b15544bfba71a2efcd82d4d58f8bfa
+EBUILD monad-control-1.0.3.1.ebuild 875 BLAKE2B 532f19653786395ba80417755ef10a75203c6d966bc5600c6c7f056b57e6eb704aa27328ca2ee4d9d446183eb87e73df190f3660340b8d5b7d74c11ff7372ddf SHA512 3f8df577e71339b90b39727fc54b8e0f2310814777b75f89eab22b183fab3a4f92fcb77fc69fe036b7cb4bd6cfce8f0da658e961ea67fe16bae233ba2c1224d3
+MISC metadata.xml 250 BLAKE2B 3adf9597d5114c480b4cc9fb5c3e231d8475b795cd6dce77986e13583ab6e59b43857cf2328570490abef0062a8b8a6b73d231867f9b62124855515cdc044d6d SHA512 5ef2c1d34a3438b39a38c041d45bb06bd0f1ae8a3f8b971bd5aaf36dee560f380e9abefab0c2a4cd7b518e151f5c6a0d0c7cd53caee9a384818f1bdc7deeadc4
diff --git a/dev-haskell/monad-control/metadata.xml b/dev-haskell/monad-control/metadata.xml
index 8124363ca0a0..937381521944 100644
--- a/dev-haskell/monad-control/metadata.xml
+++ b/dev-haskell/monad-control/metadata.xml
@@ -5,29 +5,4 @@
<email>haskell@gentoo.org</email>
<name>Gentoo Haskell</name>
</maintainer>
- <longdescription>
- This package defines the type class @MonadControlIO@, a subset of
- @MonadIO@ into which generic control operations such as @catch@ can
- be lifted from @IO@. Instances are based on monad transformers in
- @MonadTransControl@, which includes all standard monad transformers
- in the @transformers@ library except @ContT@. For convenience, it
- provides a wrapped version of @Control.Exception@ with types
- generalized from @IO@ to all monads in @MonadControlIO@.
-
- Note that this package is a rewrite of Anders Kaseorg's @monad-peel@ library.
- The main difference is that this package provides CPS style
- operators and exploits the @RankNTypes@ language extension to
- simplify most definitions.
-
- The package includes a copy of the @monad-peel@ testsuite written by Anders Kaseorg.
- The tests can be performed by using @cabal test@.
-
- The following @critertion@ based benchmark shows that @monad-control@
- is on average about 2.5 times faster than @monad-peel@:
-
- &lt;https://github.com/basvandijk/bench-monad-peel-control&gt;
- </longdescription>
- <upstream>
- <remote-id type="github">basvandijk/monad-control</remote-id>
- </upstream>
</pkgmetadata>
diff --git a/dev-haskell/monad-control/monad-control-1.0.3.1.ebuild b/dev-haskell/monad-control/monad-control-1.0.3.1.ebuild
new file mode 100644
index 000000000000..096011c07e8b
--- /dev/null
+++ b/dev-haskell/monad-control/monad-control-1.0.3.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# ebuild generated by hackport 0.7.9999
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="Lift control operations, like exception catching, through monad transformers"
+HOMEPAGE="https://github.com/basvandijk/monad-control"
+SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux"
+
+RDEPEND=">=dev-haskell/stm-2.3:=[profile?] <dev-haskell/stm-3:=[profile?]
+ >=dev-haskell/transformers-base-0.4.4:=[profile?] <dev-haskell/transformers-base-0.5:=[profile?]
+ >=dev-haskell/transformers-compat-0.3:=[profile?] <dev-haskell/transformers-compat-0.8:=[profile?]
+ >=dev-lang/ghc-8.4.3:=
+"
+DEPEND="${RDEPEND}
+ >=dev-haskell/cabal-2.2.0.1
+"