Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Feb 12, 2023
  2. Feb 11, 2023
    • Pierre Le Marre's avatar
      Fix repl discarding --build-depends (#8732) · e9b4744a
      Pierre Le Marre authored
      
      * Fix repl discarding `build-depends` argument
      
      Previously the function `\f -> L.allCondTrees $ traverseCondTreeC f` was
      used to add the dependencies, but manipulating `CondTree` this way does
      not update the nested fields `targetBuildDepends` of the tree, only the
      conditions. It worked merely by chance if one does not further process
      these fields: this explains why options like `--allow-newer` or
      `allow-older` were incompatible with `--build-depends`.
      
      Using `L.traverseBuildInfos . L.targetBuildDepends` ensures
      `targetBuildDepends` fields and conditions are all updated consistently.
      
      * Add test
      
      * Add changelog
      
      * Cleanup
      
      ---------
      
      Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
      e9b4744a
  3. Feb 10, 2023
  4. Feb 09, 2023
  5. Feb 08, 2023
    • Mikolaj Konarski's avatar
    • Mikolaj Konarski's avatar
      Hack around CI problems by sudo chown and disabling cache for Windows validate (#8739) · 22dcb3c2
      Mikolaj Konarski authored
      * Try to fix ghcup cache in CI via sudo chmod
      
      * Revert "Try to fix ghcup cache in CI via sudo chmod"
      
      This reverts commit 0bb71d10fa763b2f8f3382885d635ad1cfa09752.
      
      * Try not caching store in validate jobs to avoid double package bugs
      
      * Revert "Try not caching store in validate jobs to avoid double package bugs"
      
      This reverts commit b3f378222886ddd754ccccc2a79fa500b78f4998.
      
      * Try not to cache store on Windows in validate jobs
      
      to avoid double directory package bugs.
      
      * Revert "Revert "Try to fix ghcup cache in CI via sudo chmod""
      
      This reverts commit b3a843a861cbddbe8ae9d44b20250d806f331cd3.
      
      * Try sudo only on (new) Linux, where it should be available
      
      * Also change the user
      
      * Document the particular hack snippets in validate.yml
      
      * Add an extra diagnostic ls for ghcup dirs
      
      * Also hack the other affected CI scripts
      
      * Also print the version of ghcup used for debugging
      22dcb3c2
  6. Feb 01, 2023
  7. Jan 29, 2023
  8. Jan 24, 2023
  9. Jan 23, 2023
    • fendor's avatar
      Fix and improve list parser of cabal init cli (#8663) · 8aad429e
      fendor authored
      
      * Fix cli list parse errors in `cabal init`
      
      Occurrences of `Flag [a]` behave in a slightly unexpected way. The monoid
      instance of `Flag` is right associative and discard the value on the
      left.
      Thus, make sure we merge the contents of the flags, instead of using the
      monoid instance of `Flag` itself.
      
      * Document fixes and improvements
      
      Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    • Pierre Le Marre's avatar
      cabal check: Warn if readmes or changelogs are omitted from extra-doc-files (#8657) · 6fb48c7e
      Pierre Le Marre authored
      
      * cabal check: Warn if expected files are omitted from extra-doc-files
      
      * Add test
      
      * Add missing files and their hackage’s reference
      
      * Move doc file check from checkPackageContent to checkPackageFilesPreDistribution
      
      * Check based on globs only
      
      Check only globs, not the filesystem.
      
      * Update test outputs
      
      * Make check more robust to relative paths
      
      * Fix tests failing with "Distribution quality warnings"
      
      * Fix comments and changelog [skip ci]
      
      * Test changelog only if present
      
      * Revert "Update test outputs"
      
      This reverts commit ce49487d804691f77aff38b89449c2d0f09dbd44.
      
      * Revert "Fix tests failing with "Distribution quality warnings""
      
      This reverts commit 705f6bd0144057f5c1d375f9eceb90645b218a88.
      
      * Fix changelog
      
      * Remove getGlobFiles
      
      * Adapt warnings to version 1.12
      
      Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
      6fb48c7e
  10. Jan 22, 2023
  11. Jan 21, 2023
  12. Jan 20, 2023
  13. Jan 19, 2023
  14. Jan 18, 2023
    • Paweł Dybiec's avatar
      Add check for recursive glob in root directory (#8441) · fff7a981
      Paweł Dybiec authored
      * Add check for recursive glob in root directory
      
      Such globs might be expensive to include, as they might pull unnecessary
       directories just like `.git` or `dist-newstyle`.
      
      * Move expensive glob warning to its own constructor
      
      * Add changelog entry
      
      * Add test for recursive glob warning
      
      * Fix formatting
      fff7a981
  15. Jan 16, 2023
Loading