Add new PURL type: vcpkg#885
Open
JamieMagee wants to merge 1 commit into
Open
Conversation
4dcc4e4 to
ad2222d
Compare
Register the vcpkg type for Microsoft's C/C++ package manager, including its type definition, parse tests, generated documentation, and index entry. Co-authored-by: aristotelos <arisvd@gmail.com>
ad2222d to
a787e36
Compare
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.
Registers a
vcpkgPURL type for Microsoft's C/C++ package manager. Continues #562 (and #245); closes #217.Adds
types/vcpkg-definition.json: type definitiontests/types/vcpkg-test.json: parse teststypes-doc/vcpkg-definition.md: generated docsvcpkginpurl-types-index.jsonShape
pkg:vcpkg/<name>@<version>?<qualifiers>boost-are part of the name)port_version(port-version, default 0),repository_revision(registry baseline SHA),triplet(target config),repository_url(non-default registry)Design notes
port_versionis a qualifier, not part of the version:#is the PURL subpath delimiter and vcpkg'sversion-stringscheme disallows it. Matches whatmicrosoft/component-detectionemits, e.g.pkg:vcpkg/nlohmann-json@3.10.4?port_version=5. Resolves @pombredanne's question on Add new PURL type: 'vcpkg' #562.tripletis one optional qualifier (e.g.x64-windows-static), not separate os/arch/linkage keys. It's build/target context and doesn't affect package identity.repository_revisionis the 40-char registry commit SHA (thebaselineinvcpkg-configuration.json).make checkpasses; docs regenerated withmake gendocs. Related: microsoft/vcpkg#44201.