Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Mar 03, 2024
  2. Mar 02, 2024
  3. Mar 01, 2024
    • mergify[bot]'s avatar
      Merge pull request #9671 from mpickering/wip/cabal-install-Cabal · a0774dc9
      mergify[bot] authored
      Use in-tree Cabal library for `cabal-install` tests with custom setup.
    • Matthew Pickering's avatar
      Allow using different Cabal library versions for `cabal-install` tests with custom setup. · 716b109c
      Matthew Pickering authored
      The idea here is to pass a `--package-db` flag to `cabal-install` which
      contains just `Cabal` and `Cabal-syntax` of the specific version. This
      allows `cabal-install` tests to use the in-tree `Cabal` version,
      something which you can easily run into and get very confused about when
      writing tests.
      
      There are a few options which can be passed to `cabal-tests` executable
      to control which Cabal library you will test against.
      
      1. --boot-cabal-lib specifies to use the Cabal library bundled with the
         test compiler, this is the default and existing behaviour of the
         testsuite.
      2. --intree-cabal-lib=<root_dir> specifies to use Cabal and Cabal-syntax
         from a specific directory, and `--test-tmp` indicates where to put
         the package database they are built with.
      3. --specific-cabal-lib=<VERSION> specifies to use a specific Cabal
         version from hackage (ie 3.10.2.0) and installs the package database
         into --test-tmp=<DIR>
      
      The end result is that changes in the Cabal library can be tested with
      cabal-install tests in the testsuite.
      
      There have been a number of confusing issues with people writing tests
      for changes in the Cabal library which never ran because of
      cabal-install tests always used the boot Cabal library (see #9425
      for one).
      
      Fixes #9681
      716b109c
  4. Feb 29, 2024
  5. Feb 28, 2024
  6. Feb 27, 2024
  7. Feb 25, 2024
    • mergify[bot]'s avatar
      Merge pull request #9683 from mpickering/wip/package-db-fix · 9025af59
      mergify[bot] authored
      cabal-install: Clarify the semantics of package-db flag
    • Matthew Pickering's avatar
      cabal-install: Clarify the semantics of package-db flag · d626ef87
      Matthew Pickering authored
      In this PR we make the `--package-db` flag apply only to the default
      immutable initial package stack rather than also applying to the store
      package database.
      
      There are two special package databases which cabal install knows about
      and treats specially.
      
      * The store directory, a global cache of installed packages where cabal
        builds and installs packages into.
      * The inplace directory, a local build folder for packages, where cabal
        builds local packages in.
      
      It is very important that cabal registers packages it builds into one of
      these two locations as there are many assumptions that packages will end
      up here.
      
      With the current design of the `--package-db` flag, you are apparently
      allowed to override the store location which should have the effect of
      making the last package database in the package stack the "store"
      directory. Perhaps this works out in theory but practically this
      behaviour was broken and things were always registered into the store
      directory that cabal knew about. (The assertion in
      `ProjectBuilding.UnpackedPackage` was failing (see added test)).
      
      With `--package-db` not being able to modify the location of the store
      directory then the interaction of `--package-db`, `--store-dir` and
      `--dist-dir` flags become easy to understand.
      
      * `--package-db` modify the initial package database stack, these
        package database will not be mutated by cabal and provide the initial
        package environment which is used by cabal.
      * `--store-dir` modify the location of the store directory
      * `--dist-dir` modify the location of the dist directory (and hence
        inplace package database)
      
      Treating the flags in this way also fix an assertion failure when
      building packages.
      
      Fixes #9678
      d626ef87
  8. Feb 24, 2024
  9. Feb 23, 2024
  10. Feb 22, 2024
  11. Feb 21, 2024
    • mergify[bot]'s avatar
      Merge pull request #9543 from mpickering/wip/autogen · 517ddc63
      mergify[bot] authored
      Modularise writeAutogenFiles
    • sheaf's avatar
      Refactor autogen modules · 6d4faba9
      sheaf authored
      This commit modularises the logic for generation of autogenerated files
      and autogenerated modules.
      6d4faba9
    • sheaf's avatar
      SuffixHandler: add Suffix newtype · 65905b98
      sheaf authored
      This commit adds a Suffix newtype to describe suffixes as handled
      by suffix handlers & preprocessors, and changes the PPSuffixHandler
      type definition to use it.
      
      It also moves some type definitions from Distribution.Simple.PreProcess
      to the new module Distribution.Simple.PreProcess.Types.
      
      As this commit changes the definition of PPSuffixHandler, it will
      break custom Setup scripts which use the 'hookedPreProcessors'
      functionality.
      65905b98
  12. Feb 18, 2024
  13. Feb 17, 2024
  14. Feb 13, 2024
  15. Feb 11, 2024
Loading