diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-07-28 18:58:04 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-08-03 09:21:54 +0200 |
commit | 5d72af4c4929777fbfd20573a7b15c9380086bf7 (patch) | |
tree | 130b21f7f99b0d56297c06763028f96839089b02 /dev-haskell/wai | |
parent | dev-haskell/testpack: remove unused patches (diff) | |
download | gentoo-5d72af4c4929777fbfd20573a7b15c9380086bf7.tar.gz gentoo-5d72af4c4929777fbfd20573a7b15c9380086bf7.tar.bz2 gentoo-5d72af4c4929777fbfd20573a7b15c9380086bf7.zip |
dev-haskell/wai: remove unused patch
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-haskell/wai')
-rw-r--r-- | dev-haskell/wai/files/wai-1.4.0.1-support-vault-3.0.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-haskell/wai/files/wai-1.4.0.1-support-vault-3.0.patch b/dev-haskell/wai/files/wai-1.4.0.1-support-vault-3.0.patch deleted file mode 100644 index 4fef50a3f79a..000000000000 --- a/dev-haskell/wai/files/wai-1.4.0.1-support-vault-3.0.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff --git a/Network/Wai.hs b/Network/Wai.hs -index 626b30d..8189592 100644 ---- a/Network/Wai.hs -+++ b/Network/Wai.hs -@@ -1,6 +1,7 @@ - {-# LANGUAGE Rank2Types #-} - {-# LANGUAGE ExistentialQuantification #-} - {-# LANGUAGE DeriveDataTypeable #-} -+{-# LANGUAGE CPP #-} - {-| - - This module defines a generic web application interface. It is a common -@@ -61,7 +62,11 @@ import qualified Network.HTTP.Types as H - import Data.Text (Text) - import Data.ByteString.Lazy.Char8 () -- makes it easier to use responseLBS - import Blaze.ByteString.Builder (fromByteString) -+#if MIN_VERSION_vault(0,3,0) -+import Data.Vault.Lazy (Vault) -+#else - import Data.Vault (Vault) -+#endif - import Data.Word (Word64) - - -- | Information on the request sent by the client. This abstracts away the |