diff options
author | Joe Slater <jslater@windriver.com> | 2015-05-07 12:55:26 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-09 22:25:48 +0100 |
commit | 60157da8a6df0c7ec5bb572bea5124af273bab08 (patch) | |
tree | f28b94ef97ef10314c9f85aceb672909f437713b /meta | |
parent | 701bcd52c208f22a9a6c48a11a35bcf1c4e413df (diff) | |
download | openembedded-core-60157da8a6df0c7ec5bb572bea5124af273bab08.tar.gz openembedded-core-60157da8a6df0c7ec5bb572bea5124af273bab08.tar.bz2 openembedded-core-60157da8a6df0c7ec5bb572bea5124af273bab08.zip |
distro_features_check: add any of test
Add a test for distro features including one or more
items in a list. This is useful when, for example, we
need either x11 or directfb as a feature.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/distro_features_check.bbclass | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/meta/classes/distro_features_check.bbclass b/meta/classes/distro_features_check.bbclass index 1f1d6fba37..7e91dbcf4a 100644 --- a/meta/classes/distro_features_check.bbclass +++ b/meta/classes/distro_features_check.bbclass @@ -1,5 +1,7 @@ # Allow checking of required and conflicting DISTRO_FEATURES # +# ANY_OF_DISTRO_FEATURES: ensure at least one item on this list is included +# in 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 @@ -8,10 +10,18 @@ # Copyright 2013 (C) O.S. Systems Software LTDA. python () { + # Assume at least one var is set. + distro_features = (d.getVar('DISTRO_FEATURES', True) or "").split() + + any_of_distro_features = d.getVar('ANY_OF_DISTRO_FEATURES', True) + if any_of_distro_features: + any_of_distro_features = any_of_distro_features.split() + if set.isdisjoint(set(any_of_distro_features),set(distro_features)): + raise bb.parse.SkipPackage("one of '%s' needs to be in DISTRO_FEATURES" % any_of_distro_features) + 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: continue @@ -21,7 +31,6 @@ python () { 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)" % f) |