diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-09-29 20:02:02 +0200 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2019-10-01 23:22:33 +0100 |
commit | 81be22b67b78f5b35dac6c603c9dbb64f79b74bf (patch) | |
tree | 443e36e63104e187f3477f3ec1490d71e360803d /dev-haskell/quickcheck | |
parent | net-ftp/proftpd: backport EINTR/EAGAIN fix, bug #695972 (diff) | |
download | gentoo-81be22b67b78f5b35dac6c603c9dbb64f79b74bf.tar.gz gentoo-81be22b67b78f5b35dac6c603c9dbb64f79b74bf.tar.bz2 gentoo-81be22b67b78f5b35dac6c603c9dbb64f79b74bf.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>
Diffstat (limited to 'dev-haskell/quickcheck')
-rw-r--r-- | dev-haskell/quickcheck/files/quickcheck-1.2.0.1-ghc-7.10.patch | 13 |
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 -+ |