commit: 800b27cfe8e8478d3dea664b8cf72d8cd18fb69f
Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail
<DOT> com>
AuthorDate: Wed Jul 27 17:04:37 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Aug 3 07:21:54 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=800b27cf
dev-haskell/options: remove unused patch
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
.../options/files/options-1.2.1-ghc-7.10.patch | 24 ----------------------
1 file changed, 24 deletions(-)
diff --git a/dev-haskell/options/files/options-1.2.1-ghc-7.10.patch
b/dev-haskell/options/files/options-1.2.1-ghc-7.10.patch
deleted file mode 100644
index 9578c92..0000000
--- a/dev-haskell/options/files/options-1.2.1-ghc-7.10.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- options-1.2.1-orig/lib/Options/Tokenize.hs 2014-12-14 16:34:53.000000000
+1100
-+++ options-1.2.1/lib/Options/Tokenize.hs 2015-01-02 00:14:05.390013340
+1100
-@@ -11,6 +11,7 @@
- , tokenize
- ) where
-
-+import Control.Applicative
- import Control.Monad.Error hiding (throwError)
- import qualified Control.Monad.Error
- import Control.Monad.State
-@@ -53,6 +54,13 @@
-
- newtype Tok a = Tok { unTok :: ErrorT String (StateT TokState Identity) a }
-
-+instance Functor Tok where
-+ fmap = liftM
-+
-+instance Applicative Tok where
-+ pure = return
-+ (<*>) = ap
-+
- instance Monad Tok where
- return = Tok . return
- m >>= f = Tok (unTok m >>= unTok . f)