diff options
Diffstat (limited to 'devel/hs-data-pprint')
-rw-r--r-- | devel/hs-data-pprint/files/patch-Data_PPrint.hs | 9 | ||||
-rw-r--r-- | devel/hs-data-pprint/files/patch-data-pprint.cabal | 12 |
2 files changed, 17 insertions, 4 deletions
diff --git a/devel/hs-data-pprint/files/patch-Data_PPrint.hs b/devel/hs-data-pprint/files/patch-Data_PPrint.hs new file mode 100644 index 000000000000..f517231270e5 --- /dev/null +++ b/devel/hs-data-pprint/files/patch-Data_PPrint.hs @@ -0,0 +1,9 @@ +--- Data/PPrint.hs.orig 2018-04-13 19:36:43 UTC ++++ Data/PPrint.hs +@@ -60,6 +60,6 @@ a === b = do + showBotts :: [(String, String)] -> Doc + showBotts es = vcat $ map f es + where +- f (i, e) = text i <> text ":" <+> vcat (map text $ lines e) ++ f (i, e) = text i Text.PrettyPrint.HughesPJ.<> text ":" <+> vcat (map text $ lines e) + diff --git a/devel/hs-data-pprint/files/patch-data-pprint.cabal b/devel/hs-data-pprint/files/patch-data-pprint.cabal index a63eb3a49419..7540b55da347 100644 --- a/devel/hs-data-pprint/files/patch-data-pprint.cabal +++ b/devel/hs-data-pprint/files/patch-data-pprint.cabal @@ -1,10 +1,14 @@ ---- data-pprint.cabal.orig 2017-07-10 15:51:41 UTC +--- data-pprint.cabal.orig 2016-05-24 15:33:57 UTC +++ data-pprint.cabal -@@ -72,6 +72,6 @@ library +@@ -68,10 +68,10 @@ library + System.IO.Parallel + other-modules: + build-depends: +- base >= 4.0 && < 4.10, ++ base >= 4.0 && < 4.12, pretty >= 1.0 && < 1.2, mtl >= 2.0 && < 2.3, deepseq >= 1.1 && < 1.5, - time >= 1.2 && < 1.6, -+ time >= 1.2 && < 1.7, ++ time >= 1.2 && < 1.9, parallel >= 3.1 && < 3.3 - |