public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/monadplus/, dev-haskell/monadplus/files/, profiles/
@ 2022-08-21 21:51 Jakov Smolić
  0 siblings, 0 replies; only message in thread
From: Jakov Smolić @ 2022-08-21 21:51 UTC (permalink / raw
  To: gentoo-commits

commit:     7707b7db1a056e2f332d7032c5f660bed2415c2d
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 21 21:49:57 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Aug 21 21:51:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7707b7db

dev-haskell/monadplus: treeclean

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-haskell/monadplus/Manifest                     |  1 -
 .../monadplus/files/monadplus-1.4.2-ghc-8.4.patch  | 33 ----------------------
 dev-haskell/monadplus/metadata.xml                 | 13 ---------
 dev-haskell/monadplus/monadplus-1.4.2-r1.ebuild    | 26 -----------------
 profiles/package.mask                              |  1 -
 5 files changed, 74 deletions(-)

diff --git a/dev-haskell/monadplus/Manifest b/dev-haskell/monadplus/Manifest
deleted file mode 100644
index e2a0736ac90b..000000000000
--- a/dev-haskell/monadplus/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST monadplus-1.4.2.tar.gz 3671 BLAKE2B b256d49436933b446d3aa74e23ea778a6cf092cb858eb8ad1024adc370caeec6a1153a7cba7a25507213f758c3393c9040f354ca5238f8950b3bab6153d8416e SHA512 839a35b3de1226e177c07e30b86e841ddd19075d3ce29fa7154fefb371d9bef8aa85847d7c139faad93713d5b7889979498097f69c6e3bccfcee2fbbf7bf6539

diff --git a/dev-haskell/monadplus/files/monadplus-1.4.2-ghc-8.4.patch b/dev-haskell/monadplus/files/monadplus-1.4.2-ghc-8.4.patch
deleted file mode 100644
index feebd15b06b0..000000000000
--- a/dev-haskell/monadplus/files/monadplus-1.4.2-ghc-8.4.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 63978a11cc1a512e564237e83060e9aa29ebce73 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andr=C3=A9s=20Sicard-Ram=C3=ADrez?= <asr@eafit.edu.co>
-Date: Sun, 7 Jan 2018 23:52:32 -0500
-Subject: [PATCH] Added Semigroup instance.
-
-The instance was required by GHC 8.4.1-alpha1.
----
- src/Control/Monad/Plus.hs | 9 ++++++---
- 1 file changed, 6 insertions(+), 3 deletions(-)
-
-diff --git a/src/Control/Monad/Plus.hs b/src/Control/Monad/Plus.hs
-index 25f4782..654d133 100644
---- a/src/Control/Monad/Plus.hs
-+++ b/src/Control/Monad/Plus.hs
-@@ -1,5 +1,5 @@
-
--{-# LANGUAGE DeriveFunctor, DeriveFoldable, GeneralizedNewtypeDeriving #-}
-+{-# LANGUAGE CPP, DeriveFunctor, DeriveFoldable, GeneralizedNewtypeDeriving #-}
-
- -------------------------------------------------------------------------------------
- -- |
-@@ -263,6 +263,9 @@ instance Category Partial where
-
- instance Monoid (Partial a b) where
-     mempty  = mzero
-+#if !MIN_VERSION_base(4,11,0)
-     mappend = mplus
--
--
-+#else
-+instance Semigroup (Partial a b) where
-+  (<>) = mappend
-+#endif

diff --git a/dev-haskell/monadplus/metadata.xml b/dev-haskell/monadplus/metadata.xml
deleted file mode 100644
index 96ca7fff24fe..000000000000
--- a/dev-haskell/monadplus/metadata.xml
+++ /dev/null
@@ -1,13 +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>
-		Filtering and folding over arbitrary `MonadPlus` instances.
-		This package generalizes many common stream operations such as
-		`filter`, `catMaybes` etc.
-	</longdescription>
-</pkgmetadata>

diff --git a/dev-haskell/monadplus/monadplus-1.4.2-r1.ebuild b/dev-haskell/monadplus/monadplus-1.4.2-r1.ebuild
deleted file mode 100644
index 23e0fcb66d7c..000000000000
--- a/dev-haskell/monadplus/monadplus-1.4.2-r1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# ebuild generated by hackport 0.4.6.9999
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour"
-inherit haskell-cabal
-
-DESCRIPTION="Haskell98 partial maps and filters over MonadPlus"
-HOMEPAGE="https://hackage.haskell.org/package/monadplus"
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-lang/ghc-7.4.1:=
-"
-DEPEND="${RDEPEND}
-	>=dev-haskell/cabal-1.10
-"
-
-PATCHES=("${FILESDIR}"/${P}-ghc-8.4.patch)

diff --git a/profiles/package.mask b/profiles/package.mask
index 02d92e0c3a27..379b99418dfb 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -500,7 +500,6 @@ dev-haskell/monad-unlift
 dev-haskell/monadcatchio-mtl
 dev-haskell/monadcatchio-transformers
 dev-haskell/monadlib
-dev-haskell/monadplus
 
 # Hans de Graaff <graaff@gentoo.org> (2022-07-16)
 # No longer supported upstream. Use a newer ruby version instead.


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-08-21 21:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-21 21:51 [gentoo-commits] repo/gentoo:master commit in: dev-haskell/monadplus/, dev-haskell/monadplus/files/, profiles/ Jakov Smolić

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox