Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Jan 13, 2024
  2. Jan 12, 2024
  3. Jan 11, 2024
    • mergify[bot]'s avatar
      Merge pull request #9469 from mpickering/wip/localbuildinfo · d31bade8
      mergify[bot] authored
      Modularise LocalBuildInfo and configure phase
    • sheaf's avatar
      Modularise configure step · c9a381ac
      sheaf authored
      This commit modularises the configure phase (i.e. the function
      Distribution.Simple.Configure.configure). The aim of this change
      is to make explicit the control flow of the function: it starts off
      with a package-wide phase, and then componentwise configuration.
      c9a381ac
    • sheaf's avatar
      cabal-install: incorporate datatype changes · 4fa89a4f
      sheaf authored
      This commit leverages the changes to the LocalBuildInfo datatype in
      the Cabal library to reduce code duplication. Specifically, we split
      off certain fields of ElaboratedConfiguredPackage by re-using the
      BuildOptions datatype.
      
      This is purely an internal refactoring with no observable changes
      in behaviour.
      4fa89a4f
    • sheaf's avatar
      Split up LocalBuildInfo · 37779f65
      sheaf authored
      The aim of this commit is to modularise LocalBuildInfo to better
      reflect implicit invariants.
      
      The top-level split
      
        data LocalBuildInfo =
          NewLocalBuildInfo
            { localBuildDescr  :: LocalBuildDescr
            , localBuildConfig :: LocalBuildConfig
            }
      
      reflects which part of a LocalBuildInfo are set in stone by Cabal
      (the LocalBuildDescr), while LocalBuildConfig contains options that
      can be controlled/modified by the user in some way.
      
      The split
      
        data LocalBuildDescr =
          LocalBuildDescr
          { packageBuildDescr :: PackageBuildDescr
          , componentBuildDescr :: ComponentBuildDescr
          }
      
      reflects that some parts of the information determined at configuration
      time resides at the package level, while other pieces of information
      are pertinent to individual components.
      
      Finally the structure of LocalBuildConfig is aimed to reduce code
      duplication between the Cabal library and cabal-install.
      37779f65
    • mergify[bot]'s avatar
      Merge pull request #9611 from jasagredo/js/workaround-ci-xdg · feb5a0b7
      mergify[bot] authored
      Workaround CI for XDG directories existence
    • Javier Sagredo's avatar
      6ab9cfbb
    • mergify[bot]'s avatar
      Merge pull request #9600 from cabalism/bump/cabal-dev-scripts-ghc-9.8.1 · 381441f7
      mergify[bot] authored
      Build cabal-dev-scripts with ghc-9.8.1
  4. Jan 10, 2024
    • mergify[bot]'s avatar
      Merge pull request #9442 from ffaf1/warning-options · df5e188d
      mergify[bot] authored
      `cabal check`: add `--ignore` option
    • f-a's avatar
      Add “Ignore warning” option to cabal check · 08591a99
      f-a authored
      * Introduce `-i/--ignore` command-line option.
          e.g.  cabal check --ignore=missing-upper-bounds  will not display
          “Missing upper bounds” warnings.
      
      * Additionally, a filterPackageChecksById function is now exported
        in Distribution.PackageDescription.Check.Warning; this can be
        used by third party tools.
      
      * Add CheckExplanationIDString to `cabal check` messages.
          e.g. from
            Error: The 'license' field is missing or is NONE.
          to
            Error: [license-none] The 'license' field is missing or is NONE.
      
          This makes using the cabal check `--ignore` option more immediate.
      
      * Spool `MissingField` into separate constructors.
        Introducing five new constructors for `CheckExplanation`
          MissingFieldCategory
          MissingFieldMaintainer
          MissingFieldSynopsis
          MissingFieldDescription
          MissingFieldSynOrDesc
        This provides better ergonomic for `cabal check --ignore` and makes
        it easier to update the manual if the need arises.
      
      * Add tests for desiderable `--ignore` string qualities (not too long,
        without too many '-', unique).
      
      * Warn when `--ignore` string is not recognised.
          Also add a test for this.
      
      * Add documentation.
      
      * Add changelog.
      08591a99
    • mergify[bot]'s avatar
      Merge pull request #9474 from mpickering/wip/preBuildComponent · 71d66690
      mergify[bot] authored
      Small refactor of component pre-build
Loading