mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-24 21:21:58 +01:00
Cloud Haskell patches
This commit is contained in:
parent
9bfa5fc6f7
commit
498eedea21
@ -169,11 +169,8 @@ defaultStablePackages ghcVer requireHP = unPackageMap $ execWriter $ do
|
|||||||
, "cairo diagrams-cairo"
|
, "cairo diagrams-cairo"
|
||||||
, "persistent-mongoDB fpco-api"
|
, "persistent-mongoDB fpco-api"
|
||||||
, "threepenny-gui base16-bytestring convertible"
|
, "threepenny-gui base16-bytestring convertible"
|
||||||
|
, "distributed-process distributed-process-simplelocalnet"
|
||||||
]
|
]
|
||||||
when (ghcVer == GhcMajorVersion 7 4 && requireHP) $
|
|
||||||
mapM_ (add "FP Complete <michael@fpcomplete.com>") $ words =<<
|
|
||||||
[ "distributed-process distributed-process-simplelocalnet"
|
|
||||||
]
|
|
||||||
-- Deprecated version
|
-- Deprecated version
|
||||||
addRange "FP Complete <michael@fpcomplete.com>" "persistent-mongoDB" "< 1.3.1 || > 1.3.1"
|
addRange "FP Complete <michael@fpcomplete.com>" "persistent-mongoDB" "< 1.3.1 || > 1.3.1"
|
||||||
when (ghcVer < GhcMajorVersion 7 6) $ do
|
when (ghcVer < GhcMajorVersion 7 6) $ do
|
||||||
|
|||||||
@ -1,30 +1,75 @@
|
|||||||
diff -ru orig/distributed-process.cabal new/distributed-process.cabal
|
diff -ru orig/distributed-process.cabal new/distributed-process.cabal
|
||||||
--- orig/distributed-process.cabal 2014-03-25 06:24:53.476644211 +0200
|
--- orig/distributed-process.cabal 2014-03-27 18:20:56.752359087 +0200
|
||||||
+++ new/distributed-process.cabal 2014-03-25 06:24:53.000000000 +0200
|
+++ new/distributed-process.cabal 2014-03-27 18:20:56.000000000 +0200
|
||||||
@@ -90,7 +90,7 @@
|
@@ -39,7 +39,7 @@
|
||||||
Main-Is: TestCH.hs
|
|
||||||
|
Library
|
||||||
Build-Depends: base >= 4.4 && < 5,
|
Build-Depends: base >= 4.4 && < 5,
|
||||||
random >= 1.0 && < 1.1,
|
- binary >= 0.5 && < 0.7,
|
||||||
- ansi-terminal >= 0.5 && < 0.6,
|
+ binary >= 0.5,
|
||||||
+ ansi-terminal >= 0.5,
|
network-transport >= 0.3 && < 0.4,
|
||||||
|
stm >= 2.3 && < 2.5,
|
||||||
|
transformers >= 0.2 && < 0.4,
|
||||||
|
@@ -53,7 +53,7 @@
|
||||||
|
ghc-prim >= 0.2 && < 0.4,
|
||||||
|
distributed-static >= 0.2 && < 0.3,
|
||||||
|
rank1dynamic >= 0.1 && < 0.2,
|
||||||
|
- syb >= 0.3 && < 0.4
|
||||||
|
+ syb >= 0.3
|
||||||
|
Exposed-modules: Control.Distributed.Process,
|
||||||
|
Control.Distributed.Process.Serializable,
|
||||||
|
Control.Distributed.Process.Closure,
|
||||||
|
@@ -94,7 +94,7 @@
|
||||||
distributed-process,
|
distributed-process,
|
||||||
network-transport >= 0.3 && < 0.4,
|
network-transport >= 0.3 && < 0.4,
|
||||||
network-transport-tcp >= 0.3 && < 0.4,
|
network-transport-tcp >= 0.3 && < 0.4,
|
||||||
@@ -111,7 +111,7 @@
|
- binary >= 0.5 && < 0.7,
|
||||||
Main-Is: TestClosure.hs
|
+ binary >= 0.5,
|
||||||
Build-Depends: base >= 4.4 && < 5,
|
network >= 2.3 && < 2.5,
|
||||||
random >= 1.0 && < 1.1,
|
HUnit >= 1.2 && < 1.3,
|
||||||
- ansi-terminal >= 0.5 && < 0.6,
|
test-framework >= 0.6 && < 0.9,
|
||||||
+ ansi-terminal >= 0.5,
|
@@ -137,7 +137,7 @@
|
||||||
distributed-static >= 0.2 && < 0.3,
|
|
||||||
distributed-process,
|
distributed-process,
|
||||||
network-transport >= 0.3 && < 0.4,
|
network-transport >= 0.3 && < 0.4,
|
||||||
@@ -131,7 +131,7 @@
|
network-transport-tcp >= 0.3 && < 0.4,
|
||||||
Main-Is: TestStats.hs
|
- binary >= 0.5 && < 0.7,
|
||||||
Build-Depends: base >= 4.4 && < 5,
|
+ binary >= 0.5,
|
||||||
random >= 1.0 && < 1.1,
|
network >= 2.3 && < 2.5,
|
||||||
- ansi-terminal >= 0.5 && < 0.6,
|
HUnit >= 1.2 && < 1.3,
|
||||||
+ ansi-terminal >= 0.5,
|
test-framework >= 0.6 && < 0.9,
|
||||||
containers >= 0.4 && < 0.6,
|
@@ -156,7 +156,7 @@
|
||||||
stm >= 2.3 && < 2.5,
|
|
||||||
distributed-process,
|
distributed-process,
|
||||||
|
network-transport-tcp >= 0.3 && < 0.4,
|
||||||
|
bytestring >= 0.9 && < 0.11,
|
||||||
|
- binary >= 0.5 && < 0.7
|
||||||
|
+ binary >= 0.5
|
||||||
|
else
|
||||||
|
buildable: False
|
||||||
|
Main-Is: benchmarks/Throughput.hs
|
||||||
|
@@ -169,7 +169,7 @@
|
||||||
|
distributed-process,
|
||||||
|
network-transport-tcp >= 0.3 && < 0.4,
|
||||||
|
bytestring >= 0.9 && < 0.11,
|
||||||
|
- binary >= 0.5 && < 0.7
|
||||||
|
+ binary >= 0.5
|
||||||
|
else
|
||||||
|
buildable: False
|
||||||
|
Main-Is: benchmarks/Latency.hs
|
||||||
|
@@ -182,7 +182,7 @@
|
||||||
|
distributed-process,
|
||||||
|
network-transport-tcp >= 0.3 && < 0.4,
|
||||||
|
bytestring >= 0.9 && < 0.11,
|
||||||
|
- binary >= 0.5 && < 0.7
|
||||||
|
+ binary >= 0.5
|
||||||
|
else
|
||||||
|
buildable: False
|
||||||
|
Main-Is: benchmarks/Channels.hs
|
||||||
|
@@ -195,7 +195,7 @@
|
||||||
|
distributed-process,
|
||||||
|
network-transport-tcp >= 0.3 && < 0.4,
|
||||||
|
bytestring >= 0.9 && < 0.11,
|
||||||
|
- binary >= 0.5 && < 0.7
|
||||||
|
+ binary >= 0.5
|
||||||
|
else
|
||||||
|
buildable: False
|
||||||
|
Main-Is: benchmarks/Spawns.hs
|
||||||
|
|||||||
@ -0,0 +1,21 @@
|
|||||||
|
diff -ru orig/distributed-process-simplelocalnet.cabal new/distributed-process-simplelocalnet.cabal
|
||||||
|
--- orig/distributed-process-simplelocalnet.cabal 2014-03-27 18:20:56.944359088 +0200
|
||||||
|
+++ new/distributed-process-simplelocalnet.cabal 2014-03-27 18:20:56.000000000 +0200
|
||||||
|
@@ -33,7 +33,7 @@
|
||||||
|
network >= 2.3 && < 2.5,
|
||||||
|
network-multicast >= 0.0 && < 0.1,
|
||||||
|
data-accessor >= 0.2 && < 0.3,
|
||||||
|
- binary >= 0.5 && < 0.7,
|
||||||
|
+ binary >= 0.5,
|
||||||
|
containers >= 0.4 && < 0.6,
|
||||||
|
transformers >= 0.2 && < 0.4,
|
||||||
|
network-transport >= 0.3 && < 0.4,
|
||||||
|
@@ -55,7 +55,7 @@
|
||||||
|
network >= 2.3 && < 2.5,
|
||||||
|
network-multicast >= 0.0 && < 0.1,
|
||||||
|
data-accessor >= 0.2 && < 0.3,
|
||||||
|
- binary >= 0.5 && < 0.7,
|
||||||
|
+ binary >= 0.5,
|
||||||
|
containers >= 0.4 && < 0.6,
|
||||||
|
transformers >= 0.2 && < 0.4,
|
||||||
|
network-transport >= 0.3 && < 0.4,
|
||||||
Loading…
Reference in New Issue
Block a user