diff options
| -rw-r--r-- | meta/classes/base.bbclass | 6 | ||||
| -rw-r--r-- | meta/classes/insane.bbclass | 31 | ||||
| -rw-r--r-- | meta/lib/oe/license.py | 10 |
3 files changed, 38 insertions, 9 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 1d5db96afb..966eadad67 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
| @@ -597,6 +597,12 @@ python () { | |||
| 597 | 597 | ||
| 598 | exceptions = (d.getVar("INCOMPATIBLE_LICENSE_EXCEPTIONS") or "").split() | 598 | exceptions = (d.getVar("INCOMPATIBLE_LICENSE_EXCEPTIONS") or "").split() |
| 599 | 599 | ||
| 600 | for lic_exception in exceptions: | ||
| 601 | if ":" in lic_exception: | ||
| 602 | lic_exception.split(":")[0] | ||
| 603 | if lic_exception in oe.license.obsolete_license_list(): | ||
| 604 | bb.fatal("Invalid license %s used in INCOMPATIBLE_LICENSE_EXCEPTIONS" % lic_exception) | ||
| 605 | |||
| 600 | pkgs = d.getVar('PACKAGES').split() | 606 | pkgs = d.getVar('PACKAGES').split() |
| 601 | skipped_pkgs = {} | 607 | skipped_pkgs = {} |
| 602 | unskipped_pkgs = [] | 608 | unskipped_pkgs = [] |
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 29b9b3d466..3c8d49f13b 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
| @@ -27,7 +27,7 @@ WARN_QA ?= " libdir xorg-driver-abi \ | |||
| 27 | mime mime-xdg unlisted-pkg-lics unhandled-features-check \ | 27 | mime mime-xdg unlisted-pkg-lics unhandled-features-check \ |
| 28 | missing-update-alternatives native-last missing-ptest \ | 28 | missing-update-alternatives native-last missing-ptest \ |
| 29 | license-exists license-no-generic license-syntax license-format \ | 29 | license-exists license-no-generic license-syntax license-format \ |
| 30 | license-incompatible license-file-missing \ | 30 | license-incompatible license-file-missing obsolete-license \ |
| 31 | " | 31 | " |
| 32 | ERROR_QA ?= "dev-so debug-deps dev-deps debug-files arch pkgconfig la \ | 32 | ERROR_QA ?= "dev-so debug-deps dev-deps debug-files arch pkgconfig la \ |
| 33 | perms dep-cmp pkgvarcheck perm-config perm-line perm-link \ | 33 | perms dep-cmp pkgvarcheck perm-config perm-line perm-link \ |
| @@ -909,14 +909,19 @@ def package_qa_check_unlisted_pkg_lics(package, d, messages): | |||
| 909 | return True | 909 | return True |
| 910 | 910 | ||
| 911 | recipe_lics_set = oe.license.list_licenses(d.getVar('LICENSE')) | 911 | recipe_lics_set = oe.license.list_licenses(d.getVar('LICENSE')) |
| 912 | unlisted = oe.license.list_licenses(pkg_lics) - recipe_lics_set | 912 | package_lics = oe.license.list_licenses(pkg_lics) |
| 913 | if not unlisted: | 913 | unlisted = package_lics - recipe_lics_set |
| 914 | return True | 914 | if unlisted: |
| 915 | 915 | oe.qa.add_message(messages, "unlisted-pkg-lics", | |
| 916 | oe.qa.add_message(messages, "unlisted-pkg-lics", | 916 | "LICENSE:%s includes licenses (%s) that are not " |
| 917 | "LICENSE:%s includes licenses (%s) that are not " | 917 | "listed in LICENSE" % (package, ' '.join(unlisted))) |
| 918 | "listed in LICENSE" % (package, ' '.join(unlisted))) | 918 | return False |
| 919 | return False | 919 | obsolete = set(oe.license.obsolete_license_list()) & package_lics - recipe_lics_set |
| 920 | if obsolete: | ||
| 921 | oe.qa.add_message(messages, "obsolete-license", | ||
| 922 | "LICENSE:%s includes obsolete licenses %s" % (package, ' '.join(obsolete))) | ||
| 923 | return False | ||
| 924 | return True | ||
| 920 | 925 | ||
| 921 | QAPKGTEST[empty-dirs] = "package_qa_check_empty_dirs" | 926 | QAPKGTEST[empty-dirs] = "package_qa_check_empty_dirs" |
| 922 | def package_qa_check_empty_dirs(pkg, d, messages): | 927 | def package_qa_check_empty_dirs(pkg, d, messages): |
| @@ -1012,6 +1017,14 @@ python do_package_qa () { | |||
| 1012 | 1017 | ||
| 1013 | bb.note("DO PACKAGE QA") | 1018 | bb.note("DO PACKAGE QA") |
| 1014 | 1019 | ||
| 1020 | main_lic = d.getVar('LICENSE') | ||
| 1021 | |||
| 1022 | # Check for obsolete license references in main LICENSE (packages are checked below for any changes) | ||
| 1023 | main_licenses = oe.license.list_licenses(d.getVar('LICENSE')) | ||
| 1024 | obsolete = set(oe.license.obsolete_license_list()) & main_licenses | ||
| 1025 | if obsolete: | ||
| 1026 | oe.qa.handle_error("obsolete-license", "Recipe LICENSE includes obsolete licenses %s" % ' '.join(obsolete), d) | ||
| 1027 | |||
| 1015 | bb.build.exec_func("read_subpackage_metadata", d) | 1028 | bb.build.exec_func("read_subpackage_metadata", d) |
| 1016 | 1029 | ||
| 1017 | # Check non UTF-8 characters on recipe's metadata | 1030 | # Check non UTF-8 characters on recipe's metadata |
diff --git a/meta/lib/oe/license.py b/meta/lib/oe/license.py index 29412dfe46..99cfa5f733 100644 --- a/meta/lib/oe/license.py +++ b/meta/lib/oe/license.py | |||
| @@ -14,6 +14,16 @@ def license_ok(license, dont_want_licenses): | |||
| 14 | return False | 14 | return False |
| 15 | return True | 15 | return True |
| 16 | 16 | ||
| 17 | def obsolete_license_list(): | ||
| 18 | return ["AGPL-3", "AGPL-3+", "AGPLv3", "AGPLv3+", "AGPLv3.0", "AGPLv3.0+", "AGPL-3.0", "AGPL-3.0+", "BSD-0-Clause", | ||
| 19 | "GPL-1", "GPL-1+", "GPLv1", "GPLv1+", "GPLv1.0", "GPLv1.0+", "GPL-1.0", "GPL-1.0+", "GPL-2", "GPL-2+", "GPLv2", | ||
| 20 | "GPLv2+", "GPLv2.0", "GPLv2.0+", "GPL-2.0", "GPL-2.0+", "GPL-3", "GPL-3+", "GPLv3", "GPLv3+", "GPLv3.0", "GPLv3.0+", | ||
| 21 | "GPL-3.0", "GPL-3.0+", "LGPLv2", "LGPLv2+", "LGPLv2.0", "LGPLv2.0+", "LGPL-2.0", "LGPL-2.0+", "LGPL2.1", "LGPL2.1+", | ||
| 22 | "LGPLv2.1", "LGPLv2.1+", "LGPL-2.1", "LGPL-2.1+", "LGPLv3", "LGPLv3+", "LGPL-3.0", "LGPL-3.0+", "MPL-1", "MPLv1", | ||
| 23 | "MPLv1.1", "MPLv2", "MIT-X", "MIT-style", "openssl", "PSF", "PSFv2", "Python-2", "Apachev2", "Apache-2", "Artisticv1", | ||
| 24 | "Artistic-1", "AFL-2", "AFL-1", "AFLv2", "AFLv1", "CDDLv1", "CDDL-1", "EPLv1.0", "FreeType", "Nauman", | ||
| 25 | "tcl", "vim", "SGIv1"] | ||
| 26 | |||
| 17 | class LicenseError(Exception): | 27 | class LicenseError(Exception): |
| 18 | pass | 28 | pass |
| 19 | 29 | ||
