mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00
meta: Rename LICENSE_FLAGS variable
(From OE-Core rev: 5c5b3bc563059ba728dc9724656cc69669f8e25f) Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
2b22c16376
commit
0b46552625
|
@ -542,9 +542,9 @@ python () {
|
|||
unmatched_license_flags = check_license_flags(d)
|
||||
if unmatched_license_flags:
|
||||
if len(unmatched_license_flags) == 1:
|
||||
message = "because it has a restricted license '{0}'. Which is not whitelisted in LICENSE_FLAGS_WHITELIST".format(unmatched_license_flags[0])
|
||||
message = "because it has a restricted license '{0}'. Which is not whitelisted in LICENSE_FLAGS_ACCEPTED".format(unmatched_license_flags[0])
|
||||
else:
|
||||
message = "because it has restricted licenses {0}. Which are not whitelisted in LICENSE_FLAGS_WHITELIST".format(
|
||||
message = "because it has restricted licenses {0}. Which are not whitelisted in LICENSE_FLAGS_ACCEPTED".format(
|
||||
", ".join("'{0}'".format(f) for f in unmatched_license_flags))
|
||||
bb.debug(1, "Skipping %s %s" % (pn, message))
|
||||
raise bb.parse.SkipRecipe(message)
|
||||
|
|
|
@ -392,7 +392,7 @@ def check_license_flags(d):
|
|||
|
||||
license_flags = d.getVar('LICENSE_FLAGS')
|
||||
if license_flags:
|
||||
whitelist = d.getVar('LICENSE_FLAGS_WHITELIST')
|
||||
whitelist = d.getVar('LICENSE_FLAGS_ACCEPTED')
|
||||
if not whitelist:
|
||||
return license_flags.split()
|
||||
unmatched_flags = all_license_flags_match(license_flags, whitelist)
|
||||
|
|
|
@ -108,6 +108,7 @@ BB_RENAMED_VARIABLES[ICECC_USER_PACKAGE_BL] = "ICECC_RECIPE_DISABLE"
|
|||
BB_RENAMED_VARIABLES[ICECC_SYSTEM_PACKAGE_BL] = "ICECC_RECIPE_DISABLE"
|
||||
BB_RENAMED_VARIABLES[INHERIT_BLACKLIST] = "is a deprecated variable and no longer needed"
|
||||
BB_RENAMED_VARIABLES[TUNEABI_WHITELIST] = "is a deprecated variable and support has been removed"
|
||||
BB_RENAMED_VARIABLES[LICENSE_FLAGS_WHITELIST] = "LICENSE_FLAGS_ACCEPTED"
|
||||
|
||||
##################################################################
|
||||
# Architecture-dependent build variables.
|
||||
|
|
|
@ -18,7 +18,7 @@ class Distrodata(OESelftestTestCase):
|
|||
Product: oe-core
|
||||
Author: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
"""
|
||||
feature = 'LICENSE_FLAGS_WHITELIST += " commercial"\n'
|
||||
feature = 'LICENSE_FLAGS_ACCEPTED += " commercial"\n'
|
||||
self.write_config(feature)
|
||||
|
||||
pkgs = oe.recipeutils.get_recipe_upgrade_status()
|
||||
|
@ -99,7 +99,7 @@ The following recipes do not have a DESCRIPTION. Please add an entry for DESCRIP
|
|||
return True
|
||||
return False
|
||||
|
||||
feature = 'require conf/distro/include/maintainers.inc\nLICENSE_FLAGS_WHITELIST += " commercial"\nPARSE_ALL_RECIPES = "1"\nPACKAGE_CLASSES = "package_ipk package_deb package_rpm"\n'
|
||||
feature = 'require conf/distro/include/maintainers.inc\nLICENSE_FLAGS_ACCEPTED += " commercial"\nPARSE_ALL_RECIPES = "1"\nPACKAGE_CLASSES = "package_ipk package_deb package_rpm"\n'
|
||||
self.write_config(feature)
|
||||
|
||||
with bb.tinfoil.Tinfoil() as tinfoil:
|
||||
|
|
|
@ -206,7 +206,7 @@ class ReproducibleTests(OESelftestTestCase):
|
|||
PACKAGE_CLASSES = "{package_classes}"
|
||||
INHIBIT_PACKAGE_STRIP = "1"
|
||||
TMPDIR = "{tmpdir}"
|
||||
LICENSE_FLAGS_WHITELIST = "commercial"
|
||||
LICENSE_FLAGS_ACCEPTED = "commercial"
|
||||
DISTRO_FEATURES:append = ' systemd pam'
|
||||
USERADDEXTENSION = "useradd-staticids"
|
||||
USERADD_ERROR_DYNAMIC = "skip"
|
||||
|
|
|
@ -30,6 +30,6 @@ RDEPENDS:${PN} = "gstreamer1.0-plugins-base-playback"
|
|||
RRECOMMENDS:${PN} = "gstreamer1.0-plugins-base-meta \
|
||||
gstreamer1.0-plugins-good-meta \
|
||||
gstreamer1.0-plugins-bad-meta \
|
||||
${@bb.utils.contains("LICENSE_FLAGS_WHITELIST", "commercial", "gstreamer1.0-libav", "", d)} \
|
||||
${@bb.utils.contains("LICENSE_FLAGS_WHITELIST", "commercial", "gstreamer1.0-plugins-ugly-meta", "", d)}"
|
||||
${@bb.utils.contains("LICENSE_FLAGS_ACCEPTED", "commercial", "gstreamer1.0-libav", "", d)} \
|
||||
${@bb.utils.contains("LICENSE_FLAGS_ACCEPTED", "commercial", "gstreamer1.0-plugins-ugly-meta", "", d)}"
|
||||
RPROVIDES:${PN} += "gst-player gst-player-bin"
|
||||
|
|
|
@ -42,6 +42,7 @@ renames = {
|
|||
"ICECC_USER_PACKAGE_WL" : "ICECC_RECIPE_ENABLE",
|
||||
"ICECC_USER_PACKAGE_BL" : "ICECC_RECIPE_DISABLE",
|
||||
"ICECC_SYSTEM_PACKAGE_BL" : "ICECC_RECIPE_DISABLE",
|
||||
"LICENSE_FLAGS_WHITELIST" : "LICENSE_FLAGS_ACCEPTED",
|
||||
}
|
||||
|
||||
removed_list = [
|
||||
|
|
Loading…
Reference in New Issue
Block a user