summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-09-29 20:02:02 +0200
committerSergei Trofimovich <slyfox@gentoo.org>2019-10-01 23:22:33 +0100
commit81be22b67b78f5b35dac6c603c9dbb64f79b74bf (patch)
tree443e36e63104e187f3477f3ec1490d71e360803d
parentnet-ftp/proftpd: backport EINTR/EAGAIN fix, bug #695972 (diff)
downloadgentoo-81be22b6.tar.gz
gentoo-81be22b6.tar.bz2
gentoo-81be22b6.zip
dev-haskell/quickcheck: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/13093 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
-rw-r--r--dev-haskell/quickcheck/files/quickcheck-1.2.0.1-ghc-7.10.patch13
1 files changed, 0 insertions, 13 deletions
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
deleted file mode 100644
index 61056fc3ef46..000000000000
--- a/dev-haskell/quickcheck/files/quickcheck-1.2.0.1-ghc-7.10.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/Test/QuickCheck.hs b/Test/QuickCheck.hs
-index 1f8b3b9..27138ab 100644
---- a/Test/QuickCheck.hs
-+++ b/Test/QuickCheck.hs
-@@ -75 +75,2 @@ import Data.List( group, sort, intersperse )
--import Control.Monad( liftM2, liftM3, liftM4 )
-+import Control.Applicative
-+import Control.Monad( liftM2, liftM3, liftM4, ap )
-@@ -115,0 +117,4 @@ instance Functor Gen where
-+instance Applicative Gen where
-+ pure = return
-+ (<*>) = ap -- defined in Control.Monad
-+