-
-
Notifications
You must be signed in to change notification settings - Fork 86
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
Fix license #309
Fix license #309
Conversation
And use SPDX identifiers. Signed-off-by: Vít Ondruch <vondruch@redhat.com>
The gem ships not just MIT licensed code but also bundles libev, with disctinc 'BSD-2-Clause OR GPL-2.0-or-later' license. Don't hide this information. Signed-off-by: Vít Ondruch <vondruch@redhat.com>
Thanks |
@voxik The gem My pipeline checks dependencies for license and decisions, using https://rubygems.org/gems/license_finder. And before this change Also, as I understand, Thank you for clarifications. |
Right
Not expert, but I assume that if you use |
@voxik Could you please change the Because, using one string with multiple licenses is not distinguishable for automated processes, like license_finder. So, it should be: Thank you in advance. |
RubyGems currently complains during gem build: ~~~ WARNING: license value 'MIT AND (BSD-2-Clause OR GPL-2.0-or-later)' is invalid. Use a license identifier from http://spdx.org/licenses or 'Nonstandard' for a nonstandard license. Did you mean 'AGPL-1.0-or-later', 'AGPL-3.0-or-later', 'BSD-2-Clause-Patent', 'GPL-2.0-or-later', 'LGPL-2.0-or-later'? ~~~ Nothig else then plain list of license identifers is supported ATM. Relates socketry#309
RubyGems currently complains during gem build: ~~~ WARNING: license value 'MIT AND (BSD-2-Clause OR GPL-2.0-or-later)' is invalid. Use a license identifier from http://spdx.org/licenses or 'Nonstandard' for a nonstandard license. Did you mean 'AGPL-1.0-or-later', 'AGPL-3.0-or-later', 'BSD-2-Clause-Patent', 'GPL-2.0-or-later', 'LGPL-2.0-or-later'? ~~~ Nothing else then plain list of license identifers is supported ATM. Relates socketry#309
RubyGems currently complain during gem build: ~~~ WARNING: license value 'MIT AND (BSD-2-Clause OR GPL-2.0-or-later)' is invalid. Use a license identifier from http://spdx.org/licenses or 'Nonstandard' for a nonstandard license. Did you mean 'AGPL-1.0-or-later', 'AGPL-3.0-or-later', 'BSD-2-Clause-Patent', 'GPL-2.0-or-later', 'LGPL-2.0-or-later'? ~~~ Nothing else then plain list of license identifers is supported ATM. Relates socketry#309
RubyGems currently complain during gem build: ~~~ WARNING: license value 'MIT AND (BSD-2-Clause OR GPL-2.0-or-later)' is invalid. Use a license identifier from http://spdx.org/licenses or 'Nonstandard' for a nonstandard license. Did you mean 'AGPL-1.0-or-later', 'AGPL-3.0-or-later', 'BSD-2-Clause-Patent', 'GPL-2.0-or-later', 'LGPL-2.0-or-later'? ~~~ Nothing else then plain list of license identifers is supported ATM. Relates socketry#309
Add libev licenses (BSD-2-Clause OR GPL-2.0-or-later) into gem metadata.
Types of Changes
Contribution