Patch and upper bounds

This commit is contained in:
Michael Snoyman 2014-05-16 09:25:31 +03:00
parent 685f657e70
commit 3c4cd6d769
2 changed files with 16 additions and 0 deletions

View File

@ -404,6 +404,10 @@ defaultStablePackages ghcVer requireHP = unPackageMap $ execWriter $ do
-- https://github.com/fpco/stackage/issues/219
addRange "Michael Snoyman" "comonad" "< 4.2"
-- https://github.com/fpco/stackage/issues/224
when (ghcVer <= GhcMajorVersion 7 6) $ do
addRange "Michael Snoyman" "zip-archive" "< 0.2.3.1"
-- Requires too new a version of text
when (ghcVer == GhcMajorVersion 7 4 && requireHP) $ do
addRange "Michael Snoyman" "attoparsec" "< 0.11.2.1"

View File

@ -0,0 +1,12 @@
diff -ru orig/lens.cabal new/lens.cabal
--- orig/lens.cabal 2014-05-16 09:14:13.877832405 +0300
+++ new/lens.cabal 2014-05-16 09:14:13.000000000 +0300
@@ -201,7 +201,7 @@
primitive >= 0.4.0.1 && < 0.6,
profunctors >= 4 && < 5,
reflection >= 1.1.6 && < 2,
- scientific >= 0.2 && < 0.3,
+ scientific >= 0.2 && < 0.4,
semigroupoids >= 4 && < 5,
semigroups >= 0.8.4 && < 1,
split >= 0.2 && < 0.3,