This project is mirrored from https://github.com/haskell/Cabal.
Pull mirroring updated .
- Nov 15, 2017
-
-
Moritz Angermann authored
Fixes #4890
-
- Nov 12, 2017
-
-
Mikhail Glushenkov authored
Extension: Add HexFloatLiterals
-
-
- Nov 11, 2017
-
-
Moritz Angermann authored
Adds `virtual-modules` to handle cases like `GHC.Prim` from `ghc-prim`.
-
- Nov 10, 2017
-
-
Moritz Angermann authored
-
Moritz Angermann authored
GHC's `ghc-prim` package has an `exposed-module` for which there exists no source code. As such it can't be built and has no interface file. With the goal of getting rid of hacks in GHC `ghc-prim`s cabal file, which does the following: ``` flag include-ghc-prim Description: Include GHC.Prim in exposed-modules default: False [...] if flag(include-ghc-prim) exposed-modules: GHC.Prim ``` and has this explaination in the build system: ``` # ---------------------------------------- # Special magic for the ghc-prim package # We want the ghc-prim package to include the GHC.Prim module when it # is registered, but not when it is built, because GHC.Prim is not a # real source module, it is built-in to GHC. The old build system did # this using Setup.hs, but we can't do that here, so we have a flag to # enable GHC.Prim in the .cabal file (so that the ghc-prim package # remains compatible with the old build system for the time being). # GHC.Prim module in the ghc-prim package with a flag: # libraries/ghc-prim_CONFIGURE_OPTS += --flag=include-ghc-prim # And then we strip it out again before building the package: define libraries/ghc-prim_PACKAGE_MAGIC libraries/ghc-prim_dist-install_MODULES := $$(filter-out GHC.Prim,$$(libraries/ghc-prim_dist-install_MODULES)) endef ``` The addition of the `virtual-modules` has thus the effect of a module that is assumed to exist but not tried to be built or listed in any of the module files. It is however part of the `exposed-modules` when registered into the package database
-
- Nov 09, 2017
-
-
Mikhail Glushenkov authored
Disable tests and benchs by default on new-install
-
Mikhail Glushenkov authored
[ci skip]
-
Francesco Gazzetta authored
And error if they are explicitly enabled, so we never try to install remote packages with tests and/or benchs. Fixes #4855
-
- Nov 08, 2017
-
-
Mikhail Glushenkov authored
[ci skip]
-
Mikhail Glushenkov authored
Look for install includes in buildpref as well
-
Moritz Angermann authored
-
- Nov 07, 2017
-
-
Moritz Angermann authored
-
Moritz Angermann authored
When installing a lirbary, we should look for it's headers in it's 'build' preference first, then relative to the current path.
-
- Nov 04, 2017
-
-
Mikhail Glushenkov authored
Initialize globalCacheDir in baseSavedConfig
-
- Nov 03, 2017
-
-
Mikhail Glushenkov authored
-
Mikhail Glushenkov authored
-
Mikhail Glushenkov authored
This reverts commit bdb51a36.
-
Mikhail Glushenkov authored
-
(cherry picked from commit 0a28ab6a)
-
Mikhail Glushenkov authored
Version range refactor
-
Mikhail Glushenkov authored
Add s/cmm-sources + extra-bundled-libraries
-
Mikhail Glushenkov authored
Apply 'any' qualifier to new-freeze constraints (fixes #4832).
-
Mikhail Glushenkov authored
-
Mikhail Glushenkov authored
Adds defaultMainWithHooksNoReadArgs
-
Mikhail Glushenkov authored
'makeAbsolute' is not compatible with old versions of 'directory' and we know at this place in the code that the directory we refer to does exist, so the potential exception is not a problem. Fixes #4606. (cherry picked from commit 560903cf)
-
Moritz Angermann authored
-
Moritz Angermann authored
-
- Nov 02, 2017
-
-
Moritz Angermann authored
Not absolutely happy with this solution. I fail to come up with a better one though. The issue is that for some libraries, you might want to have _debug, _p, _l, as well as _thr_debug, _thr_p, _thr_l flavours.
-
Moritz Angermann authored
-
Moritz Angermann authored
-
Moritz Angermann authored
-
Moritz Angermann authored
-
Moritz Angermann authored
-
- Nov 01, 2017
-
-
Moritz Angermann authored
# Conflicts: # Cabal/Distribution/PackageDescription/Parsec/FieldDescr.hs
-
Moritz Angermann authored
-
Moritz Angermann authored
# Conflicts: # Cabal/Distribution/PackageDescription/Check.hs # Cabal/Distribution/PackageDescription/Parsec/FieldDescr.hs # Cabal/Distribution/Parsec/Types/FieldDescr.hs # Cabal/doc/developing-packages.rst
-
- Oct 28, 2017
-
-
Francesco Gazzetta authored
new-install: nonlocal exes
-
- Oct 27, 2017
-
-
Francesco Gazzetta authored
[ci skip]
-
bardur.arantsson authored
RFC: Relax coding guideline regarding module imports
-