-
Notifications
You must be signed in to change notification settings - Fork 708
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Append paths in global config to progdb in configureCompiler v2 #10826
Conversation
2e768df
to
d20122d
Compare
Hi! Thank you for the fix. Does "UNEXPECTED FAIL: PackageTests/ExtraProgPathGlobal/setup.test.hs" sound reasonable or is this suspect of being an unrelated CI failure? |
cHi! That's unexpected, and I've been meaning to fix it, but I haven't got my hands on a Linux/Mac machine yet to debug (the test passes on Windows but it's also supposed to pass on other OSes). Please wait a bit! Sorry, I should've marked this PR as a draft or something. EDIT: in retrospect, I realised that I need this as a non-draft PR to run the CI checks on it. I'll write a message here once it's ready! |
@Mikolaj This is ready for review! The failure reason was simple: the script I added in the repo didn't have +x permissions, which is why it failed to run on Mac and Linux. |
@yutotakano: thank you! Let me add a label to get the reviews started. |
cabal-testsuite/PackageTests/ExtraProgPathGlobal/scripts-winpath/pkg-config
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this looks very good. Thanks @yutotakano
This is subtle stuff. It'd be great to add QA notes https://github.com/haskell/cabal/blob/master/CONTRIBUTING.md#qa-notes. |
@ulysses4ever I've added some notes on what my intended functionality was and how QA can test it. I hope I'm understanding correctly what you meant by QA notes? I also realised that the changelog entry file has the superceded PR number, is that fine? I suspect changing it would invalidate existing approval reviews, which is fine by me but additional effort for cabal maintainers. |
Fixing the changelog file shouldn't invalidate anything, so, please, go ahead and fix it. QA notes look great, thank you! Next step is to find someone with access to a Windows machine :-) |
Done re:changelog file! I'll await the reviews :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you. LGTM
Let me take the liberty of setting the merge label myself, to make it possible to include this in 3.14.2 if it's so decided (should it be backported)?
Hah, it seems @yutotakano 's "note to reviewers" is blocking the merge. Let me resolve it... |
And now it's waiting 2 days, so let me fix the confusion by adding the delay_passed label manually. |
This pull request has been removed from the queue for the following reason: The pull request can't be updated You should update or rebase your pull request manually. If you do, this pull request will automatically be requeued once the queue conditions match again. |
@mergify rebase |
We add a new PackageTest for cabal-install, which makes sure that the extra-prog-path in the global config is used when resolving pkg-config instead of anything already on PATH. We do this by specifying a "bad" pkg-config to extra-prog-path that returns exit code 1. On Windows, Cabal logs are identical in the following two cases: - the override didn't work, and pkg-config was not found on the system - the override did work, and querying it failed (expectedly) To work around this, we add a "good" pkg-config script to PATH before- hand, so that cabal succeeds in the first case and the logs differ. This test is a stripped down reproduction of what happens when a user on Windows adds MSYS2 paths to extra-prog-path but not the system PATH. This is a reasonable setup (often, adding MSYS2 to system PATH is not good practice), and is even created automatically by GHCup.
✅ Branch has been successfully rebased |
Apologies for the note, thank you for dealing with it! |
b54adb5
to
860dfab
Compare
I'm going to default to backporting this for 3.14.2. Please object if this breaks API or requires other PRs we have not backported. |
@mergify backport 3.14 |
✅ Backports have been created
|
* Append paths in global config to progdb in `configureCompiler` * Add test to check global extra-prog-path is used in `configureCompiler` We add a new PackageTest for cabal-install, which makes sure that the extra-prog-path in the global config is used when resolving pkg-config instead of anything already on PATH. We do this by specifying a "bad" pkg-config to extra-prog-path that returns exit code 1. On Windows, Cabal logs are identical in the following two cases: - the override didn't work, and pkg-config was not found on the system - the override did work, and querying it failed (expectedly) To work around this, we add a "good" pkg-config script to PATH before- hand, so that cabal succeeds in the first case and the logs differ. This test is a stripped down reproduction of what happens when a user on Windows adds MSYS2 paths to extra-prog-path but not the system PATH. This is a reasonable setup (often, adding MSYS2 to system PATH is not good practice), and is even created automatically by GHCup. * Refactor `configureCompiler` path addition for cleaner variable names * Remove unnecessary build target from ExtraProgPathGlobal test command * Fix ExtraProgPathGlobal test failing on Mac/Unix for missing +x perms * Rename pr-10790 changelog to pr-10826 as it superceded * Add hashtag before PR/issue numbers in changelog for 10826 --------- Co-authored-by: Javier Sagredo <[email protected]> (cherry picked from commit 74601f4)
Backport #10826: Append paths in global config to progdb in configureCompiler v2
Supersedes #10790 by adding tests and fixing triple-prime variable naming.
Closes #9800.
QA Notes
Cabal should be able to resolve system packages using pkg-config when pkg-config doesn't exist in the system PATH but is provided in the path specified in
~/.cabal/config
in theextra-prog-path
.On Mac/Unix and other systems where pkg-config exists in PATH, there should theoretically be no regressions due to this PR. Package dependency resolution and command line interface should be the same before and after.
On Windows where pkg-config does not exist on PATH by default, specifying one on
extra-prog-path
(like which is done by recent GHCup automatically) should now work for resolving dependencies, when previously it would not work. You should be able to QA this by:pkg-config
into the Mingw environment:ghcup run -m -- pacman -S mingw64/mingw-w64-x86_64-pkg-config
pkgconfig-depends
on somethingTemplate Α: This PR modifies behaviour or interface
Include the following checklist in your PR:
significance: significant
in the changelog file.