summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-07-27 19:04:37 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-08-03 09:21:54 +0200
commit800b27cfe8e8478d3dea664b8cf72d8cd18fb69f (patch)
tree47ee49809e065be6067b916389be6442c318518f /dev-haskell/options
parentdev-haskell/network: remove unused patches (diff)
downloadgentoo-800b27cfe8e8478d3dea664b8cf72d8cd18fb69f.tar.gz
gentoo-800b27cfe8e8478d3dea664b8cf72d8cd18fb69f.tar.bz2
gentoo-800b27cfe8e8478d3dea664b8cf72d8cd18fb69f.zip
dev-haskell/options: remove unused patch
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-haskell/options')
-rw-r--r--dev-haskell/options/files/options-1.2.1-ghc-7.10.patch24
1 files changed, 0 insertions, 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 9578c926528e..000000000000
--- 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)