https://bugzilla.redhat.com/show_bug.cgi?id=2503118
Jerry James <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Flags|fedora-review? |fedora-review+ --- Comment #8 from Jerry James <[email protected]> --- The parentheses in the License field are unnecessary, since WITH binds more tightly than AND. With python3-license-expression installed: ``` $ python3 Python 3.14.6 (main, Jun 11 2026, 00:00:00) [GCC 16.1.1 20260515 (Red Hat 16.1.1-2)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from license_expression import get_spdx_licensing >>> licensing = get_spdx_licensing() >>> expression = 'GPL-2.0-or-later AND (GPL-3.0-or-later WITH >>> Bison-exception-2.2)' >>> licensing.validate(expression) ExpressionInfo( original_expression='GPL-2.0-or-later AND (GPL-3.0-or-later WITH Bison-exception-2.2)', normalized_expression='GPL-2.0-or-later AND GPL-3.0-or-later WITH Bison-exception-2.2', errors=[], invalid_symbols=[] ) ``` Everything looks good. This package is APPROVED. -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component https://bugzilla.redhat.com/show_bug.cgi?id=2503118 Report this comment as SPAM: https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla&format=report-spam&short_desc=Report%20of%20Bug%202503118%23c8 -- _______________________________________________ package-review mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected] Do not reply to spam, report it: https://forge.fedoraproject.org/infra/tickets/issues/new
