Re-introduce bounds on 'base' for cabal check
This commit is contained in:
parent
0b8a37210b
commit
7f05edba32
@ -170,8 +170,7 @@ Library
|
|||||||
System.Directory.ModTime
|
System.Directory.ModTime
|
||||||
Build-Depends:
|
Build-Depends:
|
||||||
-- See Note [GHC Boot libraries]
|
-- See Note [GHC Boot libraries]
|
||||||
base
|
binary
|
||||||
, binary
|
|
||||||
, bytestring
|
, bytestring
|
||||||
, containers
|
, containers
|
||||||
, deepseq
|
, deepseq
|
||||||
@ -184,6 +183,7 @@ Library
|
|||||||
, time
|
, time
|
||||||
, transformers
|
, transformers
|
||||||
|
|
||||||
|
, base < 4.10 && >= 4.6.0.1
|
||||||
, djinn-ghc < 0.1 && >= 0.0.2.2
|
, djinn-ghc < 0.1 && >= 0.0.2.2
|
||||||
, extra < 1.6 && >= 1.4
|
, extra < 1.6 && >= 1.4
|
||||||
, fclabels < 2.1 && >= 2.0
|
, fclabels < 2.1 && >= 2.0
|
||||||
@ -225,12 +225,12 @@ Executable ghc-mod
|
|||||||
X-Internal: True
|
X-Internal: True
|
||||||
Build-Depends:
|
Build-Depends:
|
||||||
-- See Note [GHC Boot libraries]
|
-- See Note [GHC Boot libraries]
|
||||||
base
|
directory
|
||||||
, directory
|
|
||||||
, filepath
|
, filepath
|
||||||
, mtl
|
, mtl
|
||||||
, process
|
, process
|
||||||
|
|
||||||
|
, base < 4.10 && >= 4.6.0.1
|
||||||
, fclabels < 2.1 && >= 2.0
|
, fclabels < 2.1 && >= 2.0
|
||||||
, monad-control < 1.1 && >= 1
|
, monad-control < 1.1 && >= 1
|
||||||
, optparse-applicative == 0.13.0.*
|
, optparse-applicative == 0.13.0.*
|
||||||
@ -254,8 +254,7 @@ Executable ghc-modi
|
|||||||
HS-Source-Dirs: ., src, shared
|
HS-Source-Dirs: ., src, shared
|
||||||
Build-Depends:
|
Build-Depends:
|
||||||
-- See Note [GHC Boot libraries]
|
-- See Note [GHC Boot libraries]
|
||||||
base
|
binary
|
||||||
, binary
|
|
||||||
, deepseq
|
, deepseq
|
||||||
, directory
|
, directory
|
||||||
, filepath
|
, filepath
|
||||||
@ -263,6 +262,8 @@ Executable ghc-modi
|
|||||||
, process
|
, process
|
||||||
, time
|
, time
|
||||||
|
|
||||||
|
, base < 4.10 && >= 4.6.0.1
|
||||||
|
|
||||||
, ghc-mod
|
, ghc-mod
|
||||||
|
|
||||||
|
|
||||||
@ -273,7 +274,7 @@ Test-Suite doctest
|
|||||||
Ghc-Options: -Wall
|
Ghc-Options: -Wall
|
||||||
Default-Extensions: ConstraintKinds, FlexibleContexts
|
Default-Extensions: ConstraintKinds, FlexibleContexts
|
||||||
Main-Is: doctests.hs
|
Main-Is: doctests.hs
|
||||||
Build-Depends: base
|
Build-Depends: base < 4.10 && >= 4.6.0.1
|
||||||
, doctest < 0.12 && >= 0.9.3
|
, doctest < 0.12 && >= 0.9.3
|
||||||
|
|
||||||
|
|
||||||
@ -313,14 +314,14 @@ Test-Suite spec
|
|||||||
|
|
||||||
Build-Depends:
|
Build-Depends:
|
||||||
-- See Note [GHC Boot libraries]
|
-- See Note [GHC Boot libraries]
|
||||||
base
|
containers
|
||||||
, containers
|
|
||||||
, directory
|
, directory
|
||||||
, filepath
|
, filepath
|
||||||
, mtl
|
, mtl
|
||||||
, process
|
, process
|
||||||
, transformers
|
, transformers
|
||||||
|
|
||||||
|
, base < 4.10 && >= 4.6.0.1
|
||||||
, fclabels < 2.1 && >= 2.0
|
, fclabels < 2.1 && >= 2.0
|
||||||
, hspec < 2.4 && >= 2.0.0
|
, hspec < 2.4 && >= 2.0.0
|
||||||
, monad-journal < 0.8 && >= 0.4
|
, monad-journal < 0.8 && >= 0.4
|
||||||
@ -329,7 +330,7 @@ Test-Suite spec
|
|||||||
|
|
||||||
|
|
||||||
if impl(ghc < 7.8)
|
if impl(ghc < 7.8)
|
||||||
Build-Depends: convertible < 1.2 && >= 1.1.0.0
|
Build-Depends: convertible < 1.2 && >= 1.1.0.0
|
||||||
if impl(ghc >= 8.0)
|
if impl(ghc >= 8.0)
|
||||||
Build-Depends: ghc-boot
|
Build-Depends: ghc-boot
|
||||||
|
|
||||||
@ -345,8 +346,8 @@ Test-Suite shelltest
|
|||||||
Hs-Source-Dirs: shelltest
|
Hs-Source-Dirs: shelltest
|
||||||
Type: exitcode-stdio-1.0
|
Type: exitcode-stdio-1.0
|
||||||
Build-Tools: shelltest
|
Build-Tools: shelltest
|
||||||
Build-Depends: base
|
Build-Depends: base < 4.10 && >= 4.6.0.1
|
||||||
, process < 1.5
|
, process < 1.5
|
||||||
-- , shelltestrunner >= 1.3.5
|
-- , shelltestrunner >= 1.3.5
|
||||||
if !flag(shelltest)
|
if !flag(shelltest)
|
||||||
Buildable: False
|
Buildable: False
|
||||||
@ -362,10 +363,10 @@ Benchmark criterion
|
|||||||
Main-Is: Bench.hs
|
Main-Is: Bench.hs
|
||||||
Build-Depends:
|
Build-Depends:
|
||||||
-- See Note [GHC Boot libraries]
|
-- See Note [GHC Boot libraries]
|
||||||
base
|
directory
|
||||||
, directory
|
|
||||||
, filepath
|
, filepath
|
||||||
|
|
||||||
|
, base < 4.10 && >= 4.6.0.1
|
||||||
, criterion < 1.2 && >= 1.1.1.0
|
, criterion < 1.2 && >= 1.1.1.0
|
||||||
, temporary < 1.3 && >= 1.2.0.3
|
, temporary < 1.3 && >= 1.2.0.3
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user