mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
To fix check of REQUIRED_DISTRO_FEATURES fix indentation in python code. [YOCTO #6349] Reported and written by: Sebastian Wiegand <sebastian.wiegand@gersys.de> (From OE-Core rev: 986db87a3931edce8be79f309d07497e4179a810) (From OE-Core rev: d56b29b251d94f16992726a0ed0192693265a20d) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
1.3 KiB
Plaintext
29 lines
1.3 KiB
Plaintext
# Allow checking of required and conflicting DISTRO_FEATURES
|
|
#
|
|
# REQUIRED_DISTRO_FEATURES: ensure every item on this list is included
|
|
# in DISTRO_FEATURES.
|
|
# CONFLICT_DISTRO_FEATURES: ensure no item in this list is included in
|
|
# DISTRO_FEATURES.
|
|
#
|
|
# Copyright 2013 (C) O.S. Systems Software LTDA.
|
|
|
|
python () {
|
|
required_distro_features = d.getVar('REQUIRED_DISTRO_FEATURES', True)
|
|
if required_distro_features:
|
|
required_distro_features = required_distro_features.split()
|
|
distro_features = (d.getVar('DISTRO_FEATURES', True) or "").split()
|
|
for f in required_distro_features:
|
|
if f in distro_features:
|
|
break
|
|
else:
|
|
raise bb.parse.SkipPackage("missing required distro feature %s (not in DISTRO_FEATURES)" % required_distro_features)
|
|
|
|
conflict_distro_features = d.getVar('CONFLICT_DISTRO_FEATURES', True)
|
|
if conflict_distro_features:
|
|
conflict_distro_features = conflict_distro_features.split()
|
|
distro_features = (d.getVar('DISTRO_FEATURES', True) or "").split()
|
|
for f in conflict_distro_features:
|
|
if f in distro_features:
|
|
raise bb.parse.SkipPackage("conflicting distro feature %s (in DISTRO_FEATURES)" % conflict_distro_features)
|
|
}
|