diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2015-11-01 10:32:31 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2015-11-01 11:59:24 +0100 |
commit | de8443c1a26276dc33a97ecdb9ec5c67f61ff969 (patch) | |
tree | a9d9364a381d211d8f604af936fea5bce7af7f2e | |
parent | 12abc77386751f7aa9fa6e8731fd1eabc52397f2 (diff) | |
download | haskell-de8443c1a26276dc33a97ecdb9ec5c67f61ff969.tar.gz |
Update process submodule
This is needed to prepare for #11026 as this update
relaxes the upper bounds on `base` to allow for `base-4.9.0.0`
This also needs to relax a few upper bounds on process in some cabal files
(there will be another process submodule update soon, as a major
version bump of process' version is still pending)
-rw-r--r-- | compiler/ghc.cabal.in | 2 | ||||
-rw-r--r-- | ghc/ghc-bin.cabal.in | 2 | ||||
m--------- | libraries/process | 0 | ||||
-rw-r--r-- | utils/ghc-pkg/ghc-pkg.cabal | 2 | ||||
m--------- | utils/hsc2hs | 0 | ||||
-rw-r--r-- | utils/runghc/runghc.cabal.in | 2 |
6 files changed, 4 insertions, 4 deletions
diff --git a/compiler/ghc.cabal.in b/compiler/ghc.cabal.in index 45dcaa99cc..f5a3c55540 100644 --- a/compiler/ghc.cabal.in +++ b/compiler/ghc.cabal.in @@ -46,7 +46,7 @@ Library Build-Depends: base >= 4 && < 5, directory >= 1 && < 1.3, - process >= 1 && < 1.3, + process >= 1 && < 1.4, bytestring >= 0.9 && < 0.11, time < 1.6, containers >= 0.5 && < 0.6, diff --git a/ghc/ghc-bin.cabal.in b/ghc/ghc-bin.cabal.in index 30eb7a758d..0c9998d64e 100644 --- a/ghc/ghc-bin.cabal.in +++ b/ghc/ghc-bin.cabal.in @@ -31,7 +31,7 @@ Executable ghc array >= 0.1 && < 0.6, bytestring >= 0.9 && < 0.11, directory >= 1 && < 1.3, - process >= 1 && < 1.3, + process >= 1 && < 1.4, filepath >= 1 && < 1.5, ghc if os(windows) diff --git a/libraries/process b/libraries/process -Subproject e0983fbbfa8a3d81c7b99e83a3169fc686caab6 +Subproject 4853d8f78a6831f4567ff0c2880298c9c70a520 diff --git a/utils/ghc-pkg/ghc-pkg.cabal b/utils/ghc-pkg/ghc-pkg.cabal index 742e2962ef..a2a0bdd83c 100644 --- a/utils/ghc-pkg/ghc-pkg.cabal +++ b/utils/ghc-pkg/ghc-pkg.cabal @@ -20,7 +20,7 @@ Executable ghc-pkg Build-Depends: base >= 4 && < 5, directory >= 1 && < 1.3, - process >= 1 && < 1.3, + process >= 1 && < 1.4, containers, filepath, Cabal, diff --git a/utils/hsc2hs b/utils/hsc2hs -Subproject 293f41c78e956b78363ede463e7ff52eb6bc997 +Subproject ff34f784abc868b22003717c1265d59af1c43a9 diff --git a/utils/runghc/runghc.cabal.in b/utils/runghc/runghc.cabal.in index 89f9e05c14..15ec2f66c4 100644 --- a/utils/runghc/runghc.cabal.in +++ b/utils/runghc/runghc.cabal.in @@ -18,5 +18,5 @@ Executable runghc Build-Depends: base >= 3 && < 5, directory >= 1 && < 1.3, - process >= 1 && < 1.3, + process >= 1 && < 1.4, filepath |