Exclude some packages for HP #333

This commit is contained in:
Michael Snoyman 2014-11-16 10:23:49 +02:00
parent a13ef90cf8
commit 95b1628d43

View File

@ -418,8 +418,9 @@ defaultStablePackages ghcVer requireHP = unPackageMap $ execWriter $ do
mapM_ (add "Adam Bergmark <adam@bergmark.nl>") $ words mapM_ (add "Adam Bergmark <adam@bergmark.nl>") $ words
"fay fay-base fay-dom fay-jquery fay-text fay-uri snaplet-fay" "fay fay-base fay-dom fay-jquery fay-text fay-uri snaplet-fay"
mapM_ (add "Rodrigo Setti <rodrigosetti@gmail.com>") $ words when (not requireHP) $
"messagepack messagepack-rpc" mapM_ (add "Rodrigo Setti <rodrigosetti@gmail.com>") $ words
"messagepack messagepack-rpc"
mapM_ (add "Boris Lykah <lykahb@gmail.com>") $ words mapM_ (add "Boris Lykah <lykahb@gmail.com>") $ words
"groundhog groundhog-th groundhog-sqlite groundhog-postgresql groundhog-mysql" "groundhog groundhog-th groundhog-sqlite groundhog-postgresql groundhog-mysql"
@ -550,12 +551,13 @@ defaultStablePackages ghcVer requireHP = unPackageMap $ execWriter $ do
[ "repa repa-io repa-algorithms repa-devil JuicyPixels-repa" [ "repa repa-io repa-algorithms repa-devil JuicyPixels-repa"
] ]
mapM_ (add "Nikita Volkov <nikita.y.volkov@mail.ru>") $ when (not requireHP) $ do
words "hasql hasql-postgres hasql-backend postgresql-binary" ++ mapM_ (add "Nikita Volkov <nikita.y.volkov@mail.ru>") $
words "stm-containers focus list-t slave-thread partial-handler" ++ words "hasql hasql-postgres hasql-backend postgresql-binary" ++
words "neat-interpolation cases" ++ words "stm-containers focus list-t slave-thread partial-handler" ++
words "base-prelude mtl-prelude" words "neat-interpolation cases" ++
addRange "Nikita Volkov <nikita.y.volkov@mail.ru>" "mtl-prelude" "< 2" words "base-prelude mtl-prelude"
addRange "Nikita Volkov <nikita.y.volkov@mail.ru>" "mtl-prelude" "< 2"
-- https://github.com/fpco/stackage/issues/217 -- https://github.com/fpco/stackage/issues/217
addRange "Michael Snoyman" "transformers" "< 0.4" addRange "Michael Snoyman" "transformers" "< 0.4"