summaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorAlexandre <alexandrer_b@outlook.com>2019-03-28 16:28:42 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-04-01 03:32:28 -0400
commita3971b4e8cb2f07387fbc165d46cd861a914c193 (patch)
tree8263f8d0b5cf69d927a6d5a92e00db4b6fd2ba84 /libraries
parent33173a51c77d9960d5009576ad9b67b646dfda3c (diff)
downloadhaskell-a3971b4e8cb2f07387fbc165d46cd861a914c193.tar.gz
Bump ghc-prim's version where needed
Diffstat (limited to 'libraries')
-rw-r--r--libraries/base/base.cabal2
-rw-r--r--libraries/ghc-compact/ghc-compact.cabal2
-rw-r--r--libraries/ghc-heap/ghc-heap.cabal.in2
-rw-r--r--libraries/ghc-prim/ghc-prim.cabal2
-rw-r--r--libraries/integer-gmp/integer-gmp.cabal2
5 files changed, 5 insertions, 5 deletions
diff --git a/libraries/base/base.cabal b/libraries/base/base.cabal
index 0b2c9a5b17..f171890ebb 100644
--- a/libraries/base/base.cabal
+++ b/libraries/base/base.cabal
@@ -95,7 +95,7 @@ Library
UnliftedFFITypes
Unsafe
- build-depends: rts == 1.0, ghc-prim ^>= 0.5.1.0
+ build-depends: rts == 1.0, ghc-prim >= 0.5.1.0 && <= 0.6.1
-- sanity-check to ensure exactly one flag is set
if !((flag(integer-gmp) && !flag(integer-simple)) || (!flag(integer-gmp) && flag(integer-simple)))
diff --git a/libraries/ghc-compact/ghc-compact.cabal b/libraries/ghc-compact/ghc-compact.cabal
index 5f231898fb..5bfc549fd8 100644
--- a/libraries/ghc-compact/ghc-compact.cabal
+++ b/libraries/ghc-compact/ghc-compact.cabal
@@ -36,7 +36,7 @@ library
UnboxedTuples
CPP
- build-depends: ghc-prim == 0.5.3.*,
+ build-depends: ghc-prim >= 0.5.3 && <= 0.6.1,
base >= 4.9.0 && < 4.14,
bytestring >= 0.10.6.0
ghc-options: -Wall
diff --git a/libraries/ghc-heap/ghc-heap.cabal.in b/libraries/ghc-heap/ghc-heap.cabal.in
index 134db1249e..a30ea16e26 100644
--- a/libraries/ghc-heap/ghc-heap.cabal.in
+++ b/libraries/ghc-heap/ghc-heap.cabal.in
@@ -23,7 +23,7 @@ library
default-language: Haskell2010
build-depends: base >= 4.9.0 && < 5.0
- , ghc-prim > 0.2 && < 0.6
+ , ghc-prim > 0.2 && <= 0.6.1
, rts == 1.0.*
ghc-options: -Wall
diff --git a/libraries/ghc-prim/ghc-prim.cabal b/libraries/ghc-prim/ghc-prim.cabal
index 2f0b1b5ee5..479e73d3db 100644
--- a/libraries/ghc-prim/ghc-prim.cabal
+++ b/libraries/ghc-prim/ghc-prim.cabal
@@ -1,6 +1,6 @@
cabal-version: 2.1
name: ghc-prim
-version: 0.5.3
+version: 0.6.1
-- NOTE: Don't forget to update ./changelog.md
license: BSD-3-Clause
license-file: LICENSE
diff --git a/libraries/integer-gmp/integer-gmp.cabal b/libraries/integer-gmp/integer-gmp.cabal
index 52834bb4ea..008da1decb 100644
--- a/libraries/integer-gmp/integer-gmp.cabal
+++ b/libraries/integer-gmp/integer-gmp.cabal
@@ -58,7 +58,7 @@ library
StandaloneDeriving
UnboxedTuples
UnliftedFFITypes
- build-depends: ghc-prim ^>= 0.5.1.0
+ build-depends: ghc-prim >= 0.5.1.0 && <= 0.6.1
hs-source-dirs: src/
-- We need to set the unit ID to integer-wired-in
-- (without a version number) as it's magic.