[package-plan] 01/01: Update hledger* and brick

Clint Adams clint at moszumanska.debian.org
Thu Oct 27 01:36:53 UTC 2016


This is an automated email from the git hooks/post-receive script.

clint pushed a commit to branch experimental
in repository package-plan.

commit 214a47eb7b894798b944705ee743141fe321275c
Author: Clint Adams <clint at debian.org>
Date:   Wed Oct 26 21:36:18 2016 -0400

    Update hledger* and brick
---
 packages.txt                                     | 10 ++---
 patches/hledger-lib/0.22-1/regex-tdfa            | 54 ------------------------
 patches/hledger-lib/0.22-1/series                |  1 -
 patches/hledger-lib/0.23.2/new-mtl               | 13 ------
 patches/hledger-lib/0.23.2/series                |  1 -
 patches/hledger-lib/0.26/no-mtl-compat           | 22 ----------
 patches/hledger-lib/0.26/series                  |  1 -
 patches/hledger-lib/0.27.1/no-mtl-compat.patch   | 18 --------
 patches/hledger-lib/0.27/no-mtl-compat.patch     | 18 --------
 patches/hledger-lib/1.0/no-mtl-compat.patch      | 26 ++++++++++++
 patches/hledger-lib/{0.27.1 => 1.0}/series       |  0
 patches/hledger/0.23.3/no-shakespeare-text       | 34 ---------------
 patches/hledger/0.23.3/series                    |  1 -
 patches/hledger/0.24.1/no-shakespeare-text       | 34 ---------------
 patches/hledger/0.24.1/series                    |  1 -
 patches/hledger/0.24/no-shakespeare-text         | 34 ---------------
 patches/hledger/0.24/series                      |  1 -
 patches/hledger/0.25.1/no-shakespeare-text       | 42 ------------------
 patches/hledger/0.25.1/series                    |  1 -
 patches/hledger/0.26/no-mtl-compat               | 32 --------------
 patches/hledger/0.26/series                      |  1 -
 patches/hledger/0.27.1/no-mtl-compat.patch       | 26 ------------
 patches/hledger/0.27.1/series                    |  1 -
 patches/hledger/0.27/no-mtl-compat.patch         | 26 ------------
 patches/hledger/0.27/series                      |  1 -
 patches/hledger/1.0/no-mtl-compat.patch          | 26 ++++++++++++
 patches/{hledger-lib/0.27 => hledger/1.0}/series |  0
 27 files changed, 57 insertions(+), 368 deletions(-)

diff --git a/packages.txt b/packages.txt
index b7a0156..eb49102 100644
--- a/packages.txt
+++ b/packages.txt
@@ -60,7 +60,7 @@ boomerang 1.4.5.2
 BoundedChan 1.0.3.0
 boxes 0.1.4
 brainfuck 0.1.0.3
-brick 0.4.1
+brick 0.8
 bustle 0.5.4 key binary=bustle
 byteable 0.1.1
 bytedump 1.0
@@ -339,11 +339,11 @@ hinotify 0.3.8.1
 hint 0.6.0 notest
 hit 0.6.3
 hjsmin 0.2.0.2
-hledger 0.27.1 key
+hledger 1.0 key ahead
 hledger-interest 1.4.4 binary key
-hledger-lib 0.27.1
-hledger-ui 0.27.5 binary
-hledger-web 0.27 binary
+hledger-lib 1.0 ahead
+hledger-ui 1.0 binary
+hledger-web 1.0 binary
 hlint 1.9.35
 hmatrix 0.17.0.2
 hmatrix-gsl 0.17.0.0
diff --git a/patches/hledger-lib/0.22-1/regex-tdfa b/patches/hledger-lib/0.22-1/regex-tdfa
deleted file mode 100644
index 44da6d9..0000000
--- a/patches/hledger-lib/0.22-1/regex-tdfa
+++ /dev/null
@@ -1,54 +0,0 @@
-From 7f2ffe2e45e689a6f028f9dc23bee5dafa24f867 Mon Sep 17 00:00:00 2001
-From: Clint Adams <clint at debian.org>
-Date: Sat, 28 Dec 2013 13:31:58 -0500
-Subject: [PATCH] Use regex-tdfa instead of regex-compat-tdfa
-
----
- hledger-lib/Hledger/Utils.hs  | 6 +++---
- hledger-lib/hledger-lib.cabal | 4 ++--
- 2 files changed, 5 insertions(+), 5 deletions(-)
-
---- a/Hledger/Utils.hs
-+++ b/Hledger/Utils.hs
-@@ -51,7 +51,7 @@
- import Test.HUnit
- import Text.ParserCombinators.Parsec
- import Text.Printf
--import Text.Regex
-+import Text.Regex.TDFA
- import Text.RegexPR
- import Text.Show.Pretty
- -- import qualified Data.Map as Map
-@@ -246,10 +246,10 @@
- 
- -- regex-compat (regex-posix) functions that perform better than regexpr.
- regexMatchesRegexCompat :: String -> String -> Bool
--regexMatchesRegexCompat r = isJust . matchRegex (mkRegex r)
-+regexMatchesRegexCompat = flip (=~)
- 
- regexMatchesCIRegexCompat :: String -> String -> Bool
--regexMatchesCIRegexCompat r = isJust . matchRegex (mkRegexWithOpts r True False)
-+regexMatchesCIRegexCompat r = match (makeRegexOpts defaultCompOpt { multiline = True, caseSensitive = False, newSyntax = True } defaultExecOpt r)
- 
- -- lists
- 
---- a/hledger-lib.cabal
-+++ b/hledger-lib.cabal
-@@ -68,7 +68,7 @@
-                  ,old-time
-                  ,parsec
-                  ,pretty-show
--                 ,regex-compat-tdfa == 0.95.*
-+                 ,regex-tdfa
-                  ,regexpr >= 0.5.1
-                  ,safe >= 0.2
-                  ,split >= 0.1 && < 0.3
-@@ -100,7 +100,7 @@
-                , old-time
-                , parsec
-                , pretty-show
--               , regex-compat-tdfa
-+               , regex-tdfa
-                , regexpr
-                , safe
-                , split
diff --git a/patches/hledger-lib/0.22-1/series b/patches/hledger-lib/0.22-1/series
deleted file mode 100644
index 2c21b35..0000000
--- a/patches/hledger-lib/0.22-1/series
+++ /dev/null
@@ -1 +0,0 @@
-regex-tdfa
diff --git a/patches/hledger-lib/0.23.2/new-mtl b/patches/hledger-lib/0.23.2/new-mtl
deleted file mode 100644
index 63f5c12..0000000
--- a/patches/hledger-lib/0.23.2/new-mtl
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: hledger-lib-0.23.2/hledger-lib.cabal
-===================================================================
---- hledger-lib-0.23.2.orig/hledger-lib.cabal	2014-09-07 11:41:28.716000093 +0200
-+++ hledger-lib-0.23.2/hledger-lib.cabal	2014-09-07 11:42:06.571998775 +0200
-@@ -83,7 +83,7 @@
-                  ,safe >= 0.2
-                  ,split >= 0.1 && < 0.3
-                  ,time
--                 ,transformers >= 0.2 && < 0.4
-+                 ,transformers >= 0.2 && < 0.5
-                  ,utf8-string >= 0.3.5 && < 0.4
-                  ,HUnit
-   if impl(ghc >= 7.4)
diff --git a/patches/hledger-lib/0.23.2/series b/patches/hledger-lib/0.23.2/series
deleted file mode 100644
index 3a41f62..0000000
--- a/patches/hledger-lib/0.23.2/series
+++ /dev/null
@@ -1 +0,0 @@
-new-mtl
diff --git a/patches/hledger-lib/0.26/no-mtl-compat b/patches/hledger-lib/0.26/no-mtl-compat
deleted file mode 100644
index d820ace..0000000
--- a/patches/hledger-lib/0.26/no-mtl-compat
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/hledger-lib.cabal
-+++ b/hledger-lib.cabal
-@@ -100,8 +100,7 @@
-                  ,Decimal
-                  ,directory
-                  ,filepath
--                 ,mtl
--                 ,mtl-compat
-+                 ,mtl >= 2.2.1
-                  ,old-time
-                  ,parsec >= 3
-                  ,regex-tdfa
-@@ -138,8 +137,7 @@
-                , directory
-                , filepath
-                , HUnit
--               , mtl
--               , mtl-compat
-+               , mtl >= 2.2.1
-                , old-time
-                , parsec >= 3
-                , regex-tdfa
diff --git a/patches/hledger-lib/0.26/series b/patches/hledger-lib/0.26/series
deleted file mode 100644
index cc4c0b8..0000000
--- a/patches/hledger-lib/0.26/series
+++ /dev/null
@@ -1 +0,0 @@
-no-mtl-compat
diff --git a/patches/hledger-lib/0.27.1/no-mtl-compat.patch b/patches/hledger-lib/0.27.1/no-mtl-compat.patch
deleted file mode 100644
index fb04e22..0000000
--- a/patches/hledger-lib/0.27.1/no-mtl-compat.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/hledger-lib.cabal
-+++ b/hledger-lib.cabal
-@@ -63,7 +63,6 @@ library
-     , directory
-     , filepath
-     , mtl
--    , mtl-compat
-     , old-time
-     , parsec >= 3
-     , regex-tdfa
-@@ -141,7 +140,6 @@ test-suite tests
-     , directory
-     , filepath
-     , mtl
--    , mtl-compat
-     , old-time
-     , parsec >= 3
-     , regex-tdfa
diff --git a/patches/hledger-lib/0.27/no-mtl-compat.patch b/patches/hledger-lib/0.27/no-mtl-compat.patch
deleted file mode 100644
index fb04e22..0000000
--- a/patches/hledger-lib/0.27/no-mtl-compat.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/hledger-lib.cabal
-+++ b/hledger-lib.cabal
-@@ -63,7 +63,6 @@ library
-     , directory
-     , filepath
-     , mtl
--    , mtl-compat
-     , old-time
-     , parsec >= 3
-     , regex-tdfa
-@@ -141,7 +140,6 @@ test-suite tests
-     , directory
-     , filepath
-     , mtl
--    , mtl-compat
-     , old-time
-     , parsec >= 3
-     , regex-tdfa
diff --git a/patches/hledger-lib/1.0/no-mtl-compat.patch b/patches/hledger-lib/1.0/no-mtl-compat.patch
new file mode 100644
index 0000000..febaa0e
--- /dev/null
+++ b/patches/hledger-lib/1.0/no-mtl-compat.patch
@@ -0,0 +1,26 @@
+--- a/hledger-lib.cabal
++++ b/hledger-lib.cabal
+@@ -70,7 +70,6 @@ library
+     , filepath
+     , megaparsec >=5 && < 5.1
+     , mtl
+-    , mtl-compat
+     , old-time
+     , pretty-show >=1.6.4
+     , regex-tdfa
+@@ -160,7 +159,6 @@ test-suite doctests
+     , filepath
+     , megaparsec >=5 && < 5.1
+     , mtl
+-    , mtl-compat
+     , old-time
+     , pretty-show >=1.6.4
+     , regex-tdfa
+@@ -200,7 +198,6 @@ test-suite hunittests
+     , filepath
+     , megaparsec >=5 && < 5.1
+     , mtl
+-    , mtl-compat
+     , old-time
+     , pretty-show >=1.6.4
+     , regex-tdfa
diff --git a/patches/hledger-lib/0.27.1/series b/patches/hledger-lib/1.0/series
similarity index 100%
rename from patches/hledger-lib/0.27.1/series
rename to patches/hledger-lib/1.0/series
diff --git a/patches/hledger/0.23.3/no-shakespeare-text b/patches/hledger/0.23.3/no-shakespeare-text
deleted file mode 100644
index 1d4e785..0000000
--- a/patches/hledger/0.23.3/no-shakespeare-text
+++ /dev/null
@@ -1,34 +0,0 @@
-Index: hledger-0.23.3/hledger.cabal
-===================================================================
---- hledger-0.23.3.orig/hledger.cabal	2014-12-21 23:01:34.267243696 +0100
-+++ hledger-0.23.3/hledger.cabal	2014-12-21 23:04:21.918557643 +0100
-@@ -90,8 +90,7 @@
- -- and shakespeare. When you're ready to drop backwards compatibility,
- -- simply put a lower bound of >= 2.0 on shakespeare and remove the
- -- deprecated packages.
--                 ,shakespeare-text >= 1.0 && < 1.2
--                 ,shakespeare      >= 1.0 && < 2.1
-+                 ,shakespeare      >= 2.0 && < 2.1
-                  ,split >= 0.1 && < 0.3
-                  ,text >= 0.11
-                  ,tabular >= 0.2 && < 0.3
-@@ -151,8 +150,7 @@
-                  ,process
-                  ,regexpr >= 0.5.1
-                  ,safe >= 0.2
--                 ,shakespeare-text >= 1.0 && < 1.2
--                 ,shakespeare      >= 1.0 && < 2.1
-+                 ,shakespeare      >= 2.0 && < 2.1
-                  ,split >= 0.1 && < 0.3
-                  ,tabular >= 0.2 && < 0.3
-                  ,text >= 0.11
-@@ -185,8 +183,7 @@
-                , process
-                , regexpr
-                , safe
--               , shakespeare-text >= 1.0 && < 1.2
--               , shakespeare      >= 1.0 && < 2.1
-+               , shakespeare      >= 2.0 && < 2.1
-                , split
-                ,tabular >= 0.2 && < 0.3
-                , test-framework
diff --git a/patches/hledger/0.23.3/series b/patches/hledger/0.23.3/series
deleted file mode 100644
index d69449a..0000000
--- a/patches/hledger/0.23.3/series
+++ /dev/null
@@ -1 +0,0 @@
-no-shakespeare-text
diff --git a/patches/hledger/0.24.1/no-shakespeare-text b/patches/hledger/0.24.1/no-shakespeare-text
deleted file mode 100644
index 5d48ec6..0000000
--- a/patches/hledger/0.24.1/no-shakespeare-text
+++ /dev/null
@@ -1,34 +0,0 @@
-Index: hledger-0.24.1/hledger.cabal
-===================================================================
---- hledger-0.24.1.orig/hledger.cabal	2015-06-27 15:35:30.537281649 +0200
-+++ hledger-0.24.1/hledger.cabal	2015-06-27 15:35:30.533281565 +0200
-@@ -92,8 +92,7 @@
- -- and shakespeare. When you're ready to drop backwards compatibility,
- -- simply put a lower bound of >= 2.0 on shakespeare and remove the
- -- deprecated packages.
--                 ,shakespeare-text >= 1.0 && < 1.2
--                 ,shakespeare      >= 1.0 && < 2.1
-+                 ,shakespeare      >= 2.0 && < 2.1
-                  ,split >= 0.1 && < 0.3
-                  ,text >= 0.11
-                  ,tabular >= 0.2 && < 0.3
-@@ -134,8 +133,7 @@
-                  ,regex-tdfa
-                  ,regexpr >= 0.5.1
-                  ,safe >= 0.2
--                 ,shakespeare-text >= 1.0 && < 1.2
--                 ,shakespeare      >= 1.0 && < 2.1
-+                 ,shakespeare      >= 2.0 && < 2.1
-                  ,split >= 0.1 && < 0.3
-                  ,tabular >= 0.2 && < 0.3
-                  ,text >= 0.11
-@@ -173,8 +171,7 @@
-                , regex-tdfa
-                , regexpr
-                , safe
--               , shakespeare-text >= 1.0 && < 1.2
--               , shakespeare      >= 1.0 && < 2.1
-+               , shakespeare      >= 2.0 && < 2.1
-                , split
-                ,tabular >= 0.2 && < 0.3
-                , test-framework
diff --git a/patches/hledger/0.24.1/series b/patches/hledger/0.24.1/series
deleted file mode 100644
index d69449a..0000000
--- a/patches/hledger/0.24.1/series
+++ /dev/null
@@ -1 +0,0 @@
-no-shakespeare-text
diff --git a/patches/hledger/0.24/no-shakespeare-text b/patches/hledger/0.24/no-shakespeare-text
deleted file mode 100644
index dc955ec..0000000
--- a/patches/hledger/0.24/no-shakespeare-text
+++ /dev/null
@@ -1,34 +0,0 @@
-Index: hledger-0.24/hledger.cabal
-===================================================================
---- hledger-0.24.orig/hledger.cabal	2015-02-10 14:14:50.649114663 +0100
-+++ hledger-0.24/hledger.cabal	2015-02-10 14:14:50.641114510 +0100
-@@ -92,8 +92,7 @@
- -- and shakespeare. When you're ready to drop backwards compatibility,
- -- simply put a lower bound of >= 2.0 on shakespeare and remove the
- -- deprecated packages.
--                 ,shakespeare-text >= 1.0 && < 1.2
--                 ,shakespeare      >= 1.0 && < 2.1
-+                 ,shakespeare      >= 2.0 && < 2.1
-                  ,split >= 0.1 && < 0.3
-                  ,text >= 0.11
-                  ,tabular >= 0.2 && < 0.3
-@@ -134,8 +133,7 @@
-                  ,regex-tdfa
-                  ,regexpr >= 0.5.1
-                  ,safe >= 0.2
--                 ,shakespeare-text >= 1.0 && < 1.2
--                 ,shakespeare      >= 1.0 && < 2.1
-+                 ,shakespeare      >= 2.0 && < 2.1
-                  ,split >= 0.1 && < 0.3
-                  ,tabular >= 0.2 && < 0.3
-                  ,text >= 0.11
-@@ -173,8 +171,7 @@
-                , regex-tdfa
-                , regexpr
-                , safe
--               , shakespeare-text >= 1.0 && < 1.2
--               , shakespeare      >= 1.0 && < 2.1
-+               , shakespeare      >= 2.0 && < 2.1
-                , split
-                ,tabular >= 0.2 && < 0.3
-                , test-framework
diff --git a/patches/hledger/0.24/series b/patches/hledger/0.24/series
deleted file mode 100644
index d69449a..0000000
--- a/patches/hledger/0.24/series
+++ /dev/null
@@ -1 +0,0 @@
-no-shakespeare-text
diff --git a/patches/hledger/0.25.1/no-shakespeare-text b/patches/hledger/0.25.1/no-shakespeare-text
deleted file mode 100644
index 3ca6120..0000000
--- a/patches/hledger/0.25.1/no-shakespeare-text
+++ /dev/null
@@ -1,42 +0,0 @@
-Index: hledger-0.25.1/hledger.cabal
-===================================================================
---- hledger-0.25.1.orig/hledger.cabal	2015-06-27 15:25:05.108030253 +0200
-+++ hledger-0.25.1/hledger.cabal	2015-06-27 15:25:51.181022665 +0200
-@@ -100,15 +100,8 @@
-                  ,tabular >= 0.2 && < 0.3
-                  ,utf8-string >= 0.3.5 && < 1.1
-                  ,wizards == 1.0.*
--  if impl(ghc >= 7.10)
--    -- ghc 7.10 requires shakespeare 2.0.2.2+
--    build-depends: shakespeare      >= 2.0.2.2 && < 2.1
--  else
--    -- for older ghcs, allow shakespeare 2.x or 1.x (which also requires shakespeare-text)
--    -- http://www.yesodweb.com/blog/2014/04/consolidation-progress
--    build-depends:
--                  shakespeare      >= 1.0 && < 2.1
--                 ,shakespeare-text >= 1.0 && < 1.2
-+                 ,shakespeare      >= 2.0 && < 2.1
-+
-   if flag(old-locale)
-     build-depends: time < 1.5, old-locale
-   else
-@@ -150,8 +143,7 @@
-                  ,regex-tdfa
-                  ,regexpr >= 0.5.1
-                  ,safe >= 0.2
--                 ,shakespeare-text >= 1.0 && < 1.2
--                 ,shakespeare      >= 1.0 && < 2.1
-+                 ,shakespeare      >= 2.0 && < 2.1
-                  ,split >= 0.1 && < 0.3
-                  ,tabular >= 0.2 && < 0.3
-                  ,text >= 0.11
-@@ -193,8 +185,7 @@
-                , regex-tdfa
-                , regexpr
-                , safe
--               , shakespeare-text >= 1.0 && < 1.2
--               , shakespeare      >= 1.0 && < 2.1
-+               , shakespeare      >= 2.0 && < 2.1
-                , split
-                ,tabular >= 0.2 && < 0.3
-                , test-framework
diff --git a/patches/hledger/0.25.1/series b/patches/hledger/0.25.1/series
deleted file mode 100644
index d69449a..0000000
--- a/patches/hledger/0.25.1/series
+++ /dev/null
@@ -1 +0,0 @@
-no-shakespeare-text
diff --git a/patches/hledger/0.26/no-mtl-compat b/patches/hledger/0.26/no-mtl-compat
deleted file mode 100644
index 4cdd992..0000000
--- a/patches/hledger/0.26/no-mtl-compat
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/hledger.cabal
-+++ b/hledger.cabal
-@@ -82,8 +82,7 @@
-                  ,filepath
-                  ,haskeline >= 0.6 && <= 0.8
-                  ,HUnit
--                 ,mtl
--                 ,mtl-compat
-+                 ,mtl >= 2.2.1
-                  ,old-time
-                  ,parsec >= 3
-                  ,process
-@@ -137,8 +136,7 @@
-                  ,filepath
-                  ,haskeline >= 0.6 && <= 0.8
-                  ,HUnit
--                 ,mtl
--                 ,mtl-compat
-+                 ,mtl >= 2.2.1
-                  ,old-time
-                  ,parsec >= 3
-                  ,process
-@@ -184,8 +182,7 @@
-                , filepath
-                , haskeline
-                , HUnit
--               , mtl
--               , mtl-compat
-+               , mtl >= 2.2.1
-                , old-time
-                , parsec >= 3
-                , process
diff --git a/patches/hledger/0.26/series b/patches/hledger/0.26/series
deleted file mode 100644
index cc4c0b8..0000000
--- a/patches/hledger/0.26/series
+++ /dev/null
@@ -1 +0,0 @@
-no-mtl-compat
diff --git a/patches/hledger/0.27.1/no-mtl-compat.patch b/patches/hledger/0.27.1/no-mtl-compat.patch
deleted file mode 100644
index 498c16b..0000000
--- a/patches/hledger/0.27.1/no-mtl-compat.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- a/hledger.cabal
-+++ b/hledger.cabal
-@@ -69,7 +69,6 @@ library
-     , haskeline >= 0.6 && <= 0.8
-     , HUnit
-     , mtl
--    , mtl-compat
-     , old-time
-     , parsec >= 3
-     , process
-@@ -143,7 +142,6 @@ executable hledger
-     , haskeline >= 0.6 && <= 0.8
-     , HUnit
-     , mtl
--    , mtl-compat
-     , old-time
-     , parsec >= 3
-     , process
-@@ -196,7 +194,6 @@ test-suite test
-     , haskeline >= 0.6 && <= 0.8
-     , HUnit
-     , mtl
--    , mtl-compat
-     , old-time
-     , parsec >= 3
-     , process
diff --git a/patches/hledger/0.27.1/series b/patches/hledger/0.27.1/series
deleted file mode 100644
index c31729d..0000000
--- a/patches/hledger/0.27.1/series
+++ /dev/null
@@ -1 +0,0 @@
-no-mtl-compat.patch
diff --git a/patches/hledger/0.27/no-mtl-compat.patch b/patches/hledger/0.27/no-mtl-compat.patch
deleted file mode 100644
index 498c16b..0000000
--- a/patches/hledger/0.27/no-mtl-compat.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- a/hledger.cabal
-+++ b/hledger.cabal
-@@ -69,7 +69,6 @@ library
-     , haskeline >= 0.6 && <= 0.8
-     , HUnit
-     , mtl
--    , mtl-compat
-     , old-time
-     , parsec >= 3
-     , process
-@@ -143,7 +142,6 @@ executable hledger
-     , haskeline >= 0.6 && <= 0.8
-     , HUnit
-     , mtl
--    , mtl-compat
-     , old-time
-     , parsec >= 3
-     , process
-@@ -196,7 +194,6 @@ test-suite test
-     , haskeline >= 0.6 && <= 0.8
-     , HUnit
-     , mtl
--    , mtl-compat
-     , old-time
-     , parsec >= 3
-     , process
diff --git a/patches/hledger/0.27/series b/patches/hledger/0.27/series
deleted file mode 100644
index c31729d..0000000
--- a/patches/hledger/0.27/series
+++ /dev/null
@@ -1 +0,0 @@
-no-mtl-compat.patch
diff --git a/patches/hledger/1.0/no-mtl-compat.patch b/patches/hledger/1.0/no-mtl-compat.patch
new file mode 100644
index 0000000..cc7763b
--- /dev/null
+++ b/patches/hledger/1.0/no-mtl-compat.patch
@@ -0,0 +1,26 @@
+--- a/hledger.cabal
++++ b/hledger.cabal
+@@ -102,7 +102,6 @@ library
+     , haskeline >=0.6 && <=0.8
+     , HUnit
+     , mtl
+-    , mtl-compat
+     , old-time
+     , megaparsec >=5 && < 5.1
+     , regex-tdfa
+@@ -185,7 +184,6 @@ executable hledger
+     , haskeline >=0.6 && <=0.8
+     , HUnit
+     , mtl
+-    , mtl-compat
+     , old-time
+     , parsec >=3
+     , regex-tdfa
+@@ -246,7 +244,6 @@ test-suite test
+     , haskeline >=0.6 && <=0.8
+     , HUnit
+     , mtl
+-    , mtl-compat
+     , old-time
+     , parsec >=3
+     , regex-tdfa
diff --git a/patches/hledger-lib/0.27/series b/patches/hledger/1.0/series
similarity index 100%
rename from patches/hledger-lib/0.27/series
rename to patches/hledger/1.0/series

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/package-plan.git



More information about the Pkg-haskell-commits mailing list