summaryrefslogtreecommitdiff
path: root/dev-haskell/mtl-compat
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-08-22 02:42:13 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-08-22 02:42:13 +0100
commite7f37e03b952768321c8c943a80eff4152ea7bbd (patch)
tree355a9efb62297418cdadbc424b09dbafc54257e5 /dev-haskell/mtl-compat
parent2518522472e5de9c52c78dc0246475fe0ae3cc05 (diff)
gentoo auto-resync : 22:08:2022 - 02:42:13
Diffstat (limited to 'dev-haskell/mtl-compat')
-rw-r--r--dev-haskell/mtl-compat/Manifest3
-rw-r--r--dev-haskell/mtl-compat/metadata.xml28
-rw-r--r--dev-haskell/mtl-compat/mtl-compat-0.2.2.ebuild39
3 files changed, 0 insertions, 70 deletions
diff --git a/dev-haskell/mtl-compat/Manifest b/dev-haskell/mtl-compat/Manifest
deleted file mode 100644
index 6a3b4f62983d..000000000000
--- a/dev-haskell/mtl-compat/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST mtl-compat-0.2.2.tar.gz 5128 BLAKE2B e1066f61c8087ffd6c8afc9545dd73402b01e9995fcbe226094777f93623f93209c7afdcd01fe2a5fdae4fc4aa2d39eeb821772ce9d542c80f7d0714d25dc79f SHA512 78a93e9e59d01bf0ffeb32f1322decd65d87cba8912d00f77347f0fc2f7190a755297953ac363ca3342c83822d36101b43ef044dc1f3b2ffef7c7710afda9d0d
-EBUILD mtl-compat-0.2.2.ebuild 987 BLAKE2B e0ce01abed1041100ea7750a1e7544299b5215669635fff00aa892e2d2f91e1e953ae833e93176a0898332b14700ef4c03253bdce6a674fd77a480505af5f33c SHA512 c3b2711b6868c26f33ccd11629e9c04ab46d773cdd89029d02a667c99255f0ecbcdfd0c2d4c9bf9abbb745a9f957acc02da65c2938c6cfec605138bc62e6cf79
-MISC metadata.xml 1162 BLAKE2B 3f67ad7e5a1a32a736c4aa3b2d6b2bf8356997cba0a8647ab6ed4aca613f5feb8184739c3c66df4714f1e7b4a35656e243a3edbc17de088c6183b37f4201d11c SHA512 99434f83d3b69fa6680c5995eb59a5165efeaa4218a97acb4bbc857f4c8659b32bb43c2039fa2d9c6b8fde307e308241f2af0140112edc0dd36e0541ce3e580d
diff --git a/dev-haskell/mtl-compat/metadata.xml b/dev-haskell/mtl-compat/metadata.xml
deleted file mode 100644
index d71baf44fb3a..000000000000
--- a/dev-haskell/mtl-compat/metadata.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>haskell@gentoo.org</email>
- <name>Gentoo Haskell</name>
- </maintainer>
- <longdescription>
- This package backports the "Control.Monad.Except" module from
- @mtl@ (if using @mtl-2.2.0.1@ or earlier), which reexports the
- @ExceptT@ monad transformer and the @MonadError@ class.
-
- This package should only be used if there is a need to use the
- @Control.Monad.Except@ module specifically. If you just want
- the @mtl@ class instances for @ExceptT@, use
- @transformers-compat@ instead, since @mtl-compat@ does nothing
- but reexport the instances from that package.
-
- Note that unlike how @mtl-2.2@ or later works, the
- "Control.Monad.Except" module defined in this package exports
- all of @ExceptT@'s monad class instances. Therefore, you may
- have to declare @import Control.Monad.Except ()@ at the top of
- your file to get all of the @ExceptT@ instances in scope.
- </longdescription>
- <upstream>
- <remote-id type="github">RyanGlScott/mtl-compat</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-haskell/mtl-compat/mtl-compat-0.2.2.ebuild b/dev-haskell/mtl-compat/mtl-compat-0.2.2.ebuild
deleted file mode 100644
index f849a6a4791a..000000000000
--- a/dev-haskell/mtl-compat/mtl-compat-0.2.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# ebuild generated by hackport 0.6.9999
-
-CABAL_FEATURES="lib profile" # haddock hoogle hscolour"
-inherit haskell-cabal
-
-DESCRIPTION="Backported Control.Monad.Except module from mtl"
-HOMEPAGE="https://github.com/haskell-compat/mtl-compat"
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/mtl-2.1:=[profile?] <dev-haskell/mtl-2.3:=[profile?]
- dev-haskell/transformers-compat:=
- >=dev-lang/ghc-7.4.1:=
-"
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.8
-"
-
-src_configure() {
- local mtl_arg=()
-
- has_version '>=dev-haskell/mtl-2.0.1' && \
- has_version '<dev-haskell/mtl-2.2' && \
- mtl_arg+=(--flag=two-point-one)
- has_version '>=dev-haskell/mtl-2.2.0.1' && \
- has_version '<dev-haskell/mtl-2.2.1' && \
- mtl_arg+=(--flag=two-point-two)
- haskell-cabal_src_configure \
- ${mtl_arg}
-}