You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why does this need to be merged? This registry never cares about version level dependencies. And they exist everywhere, not just for meson.
This was the only way I found to get a project using manifest mode to compile, even updating libpq to the latest version, it would still use an older vcpkg-tool-meson and fail (and vcpkg-tool-meson version was not overridden anywhere, there was perhaps an older version already installed, and vcpkg would not update that, probably because it was considered acceptable)
This was the only way I found to get a project using manifest mode
Manifest mode has a very clear mode of operation. How did you get to the latest libpq?
If you rolled the builtin-baseline, libpq and vcpkg-tool-meson would move together, to what was tested together in CI.
If you used an override for libpq, you could use an override for vcpkg-tool-meson.
Clearly, version>= has the desired effect. But the vcpkg maintainers usually reject such constraints, apart from tightly coupled ports like boost-*. I do remove cruft from ports, and this might fall into this category on some days.
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
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.
Without this change, in manifest mode, it is still possible to reproduce the issue in #48024, if
vcpkg-tool-mesonport is not at the latest version.Fixes #48024