From 7405f473aad561655e680aee2bf563c315e1263a Mon Sep 17 00:00:00 2001 From: Joe Slater Date: Thu, 7 May 2015 12:55:26 -0700 Subject: 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. (From OE-Core rev: 60157da8a6df0c7ec5bb572bea5124af273bab08) Signed-off-by: Joe Slater Signed-off-by: Richard Purdie --- meta/classes/distro_features_check.bbclass | 13 +++++++++++-- 1 file 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) -- cgit 1.2.3-korg