summaryrefslogtreecommitdiffstats
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-28 15:20:59 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-02 18:43:25 +0000
commit321cf8962ea2f3ce6b3942fe02ec2ce8d258cce3 (patch)
tree9543f6a8451452ffe632ff7b0125db59011f7343 /meta/classes/base.bbclass
parentd6449581c998a24145e527c571b3baf90a9f2518 (diff)
downloadpoky-321cf8962ea2f3ce6b3942fe02ec2ce8d258cce3.tar.gz
license/insane: Show warning for obsolete license usage
We want to use SPDX identifiers in LICENSE variables. There is now a conversion script to make most of the translations. Add a list of strings which have been replaced so we can show warnings to users if they're still used anywhere. Add checks to the package as insane check. This is currently a warning by default but can be turned off or made an error as per the other standard checks. (From OE-Core rev: 9379f80f484f94686a4d494e9e237fadfb72a938) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r--meta/classes/base.bbclass6
1 files changed, 6 insertions, 0 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 = []