Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/wai/files/
Date: Wed, 03 Aug 2016 07:36:53
Message-Id: 1470208914.5d72af4c4929777fbfd20573a7b15c9380086bf7.monsieurp@gentoo
1 commit: 5d72af4c4929777fbfd20573a7b15c9380086bf7
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Thu Jul 28 16:58:04 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 3 07:21:54 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d72af4c
7
8 dev-haskell/wai: remove unused patch
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11
12 .../wai/files/wai-1.4.0.1-support-vault-3.0.patch | 24 ----------------------
13 1 file changed, 24 deletions(-)
14
15 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
16 deleted file mode 100644
17 index 4fef50a..0000000
18 --- a/dev-haskell/wai/files/wai-1.4.0.1-support-vault-3.0.patch
19 +++ /dev/null
20 @@ -1,24 +0,0 @@
21 -diff --git a/Network/Wai.hs b/Network/Wai.hs
22 -index 626b30d..8189592 100644
23 ---- a/Network/Wai.hs
24 -+++ b/Network/Wai.hs
25 -@@ -1,6 +1,7 @@
26 - {-# LANGUAGE Rank2Types #-}
27 - {-# LANGUAGE ExistentialQuantification #-}
28 - {-# LANGUAGE DeriveDataTypeable #-}
29 -+{-# LANGUAGE CPP #-}
30 - {-|
31 -
32 - This module defines a generic web application interface. It is a common
33 -@@ -61,7 +62,11 @@ import qualified Network.HTTP.Types as H
34 - import Data.Text (Text)
35 - import Data.ByteString.Lazy.Char8 () -- makes it easier to use responseLBS
36 - import Blaze.ByteString.Builder (fromByteString)
37 -+#if MIN_VERSION_vault(0,3,0)
38 -+import Data.Vault.Lazy (Vault)
39 -+#else
40 - import Data.Vault (Vault)
41 -+#endif
42 - import Data.Word (Word64)
43 -
44 - -- | Information on the request sent by the client. This abstracts away the