drop-pacman-package: support MINGW packages and UCRT64#176
Merged
Conversation
This not only clarifies that the package is _uninstalled_, but also mentions _which_ package. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
These have variable package name prefixes; Now, `mingw-w64-` is replaced
with the SDK-specific `${MINGW_PACKAGE_PREFIX}` (e.g.
`mingw-w64-clang-aarch64-` for CLANGARM64).
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
In git-for-windows/git-sdk-64#117, I am starting the MINGW64 -> UCRT64 migration, and therefore I want to target that branch, too, when uninstalling packages. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
368368d to
0aa0de5
Compare
Member
Author
|
I meant to demonstrate that these changes work by uninstalling the |
rimrul
approved these changes
Jun 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Previously, the workflow would only work for packages whose name is unchanged across Git for Windows SDKs, i.e. MSYS packages. However, MINGW packages' names start with a prefix that encodes the architecture. Let's support that via
mingw-w64-<name>, which is auto-expanded to${MINGW_PACKAGE_PREFIX}-<name>.While at it, also support UCRT64, which is currently developed on the
ucrt64branch of git-sdk-64.