dev-haskell/quickcheck: remove unused patch(es)
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Sun, 29 Sep 2019 18:02:02 +0000 (20:02 +0200)
committerSergei Trofimovich <slyfox@gentoo.org>
Tue, 1 Oct 2019 22:22:33 +0000 (23:22 +0100)
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>
dev-haskell/quickcheck/files/quickcheck-1.2.0.1-ghc-7.10.patch [deleted file]

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 (file)
index 61056fc..0000000
+++ /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
-+