-
Notifications
You must be signed in to change notification settings - Fork 161
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
The CPAN urls with :: doesn't pass syntax check in Python lib #324
Labels
Comments
The CPAN spec is right – it has two way to specify dependency (just as other tooling used for interacting with CPAN does):
I'd say it's the python library which doesn't follow the spec. 🐍 |
This test should be added to the test suite: {
"description": "valid cpan purl",
"purl": "pkg:cpan/LWP%3A%3AUserAgent",
"canonical_purl": "pkg:cpan/LWP::UserAgent",
"type": "cpan",
"namespace": null,
"name": "LWP::UserAgent",
"version": null,
"qualifiers": null,
"subpath": null,
"is_invalid": false
} The following implementations fail it:
|
Hi, The #325 PR contains new proposed tests for CPAN. |
johnmhoran
added
PURL type definition
Non-core definitions that describe and standardize PURL types
PURL validation
labels
Oct 22, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
The python lib fails to parse the CPAN URLs with two "::" in the name.
Either the CPAN spec is wrong or the python library ;-)
The text was updated successfully, but these errors were encountered: