Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/quickcheck/files/
Date: Tue, 01 Oct 2019 22:22:47
Message-Id: 1569968553.81be22b67b78f5b35dac6c603c9dbb64f79b74bf.slyfox@gentoo
1 commit: 81be22b67b78f5b35dac6c603c9dbb64f79b74bf
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Sep 29 18:02:02 2019 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 1 22:22:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81be22b6
7
8 dev-haskell/quickcheck: remove unused patch(es)
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/13093
12 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
13
14 .../quickcheck/files/quickcheck-1.2.0.1-ghc-7.10.patch | 13 -------------
15 1 file changed, 13 deletions(-)
16
17 diff --git a/dev-haskell/quickcheck/files/quickcheck-1.2.0.1-ghc-7.10.patch b/dev-haskell/quickcheck/files/quickcheck-1.2.0.1-ghc-7.10.patch
18 deleted file mode 100644
19 index 61056fc3ef4..00000000000
20 --- a/dev-haskell/quickcheck/files/quickcheck-1.2.0.1-ghc-7.10.patch
21 +++ /dev/null
22 @@ -1,13 +0,0 @@
23 -diff --git a/Test/QuickCheck.hs b/Test/QuickCheck.hs
24 -index 1f8b3b9..27138ab 100644
25 ---- a/Test/QuickCheck.hs
26 -+++ b/Test/QuickCheck.hs
27 -@@ -75 +75,2 @@ import Data.List( group, sort, intersperse )
28 --import Control.Monad( liftM2, liftM3, liftM4 )
29 -+import Control.Applicative
30 -+import Control.Monad( liftM2, liftM3, liftM4, ap )
31 -@@ -115,0 +117,4 @@ instance Functor Gen where
32 -+instance Applicative Gen where
33 -+ pure = return
34 -+ (<*>) = ap -- defined in Control.Monad
35 -+