diff options
author | Christopher Larson <chris_larson@mentor.com> | 2012-01-09 14:40:21 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-17 14:52:59 +0000 |
commit | 045e8a409ffe23d4f562b2982bfeee6e45f3c0d9 (patch) | |
tree | 1d13c8b692c44da18dfe32af2a99eecbd47facc0 /meta/classes/copyleft_compliance.bbclass | |
parent | 02e22816d68dc2bac7fed6952e52ea8a3d9532d2 (diff) | |
download | openembedded-core-045e8a409ffe23d4f562b2982bfeee6e45f3c0d9.tar.gz openembedded-core-045e8a409ffe23d4f562b2982bfeee6e45f3c0d9.tar.bz2 openembedded-core-045e8a409ffe23d4f562b2982bfeee6e45f3c0d9.tar.xz openembedded-core-045e8a409ffe23d4f562b2982bfeee6e45f3c0d9.zip |
copyleft_compliance: add control of recipe types to include
In this context, recipe "type" refers to whether it is 'target', 'native',
'cross', etc. COPYLEFT_RECIPE_TYPES is a space separated list of types to
include. It defaults to 'target'.
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Diffstat (limited to 'meta/classes/copyleft_compliance.bbclass')
-rw-r--r-- | meta/classes/copyleft_compliance.bbclass | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/meta/classes/copyleft_compliance.bbclass b/meta/classes/copyleft_compliance.bbclass index 2fe524b5f..37ed09e95 100644 --- a/meta/classes/copyleft_compliance.bbclass +++ b/meta/classes/copyleft_compliance.bbclass @@ -16,6 +16,22 @@ COPYLEFT_LICENSE_EXCLUDE ?= 'CLOSED Proprietary' COPYLEFT_LICENSE_EXCLUDE[type] = 'list' COPYLEFT_LICENSE_INCLUDE[doc] = 'Space separated list of globs which exclude licenses' +COPYLEFT_RECIPE_TYPE ?= '${@copyleft_recipe_type(d)}' +COPYLEFT_RECIPE_TYPE[doc] = 'The "type" of the current recipe (e.g. target, native, cross)' + +COPYLEFT_RECIPE_TYPES ?= 'target' +COPYLEFT_RECIPE_TYPES[type] = 'list' +COPYLEFT_RECIPE_TYPES[doc] = 'Space separated list of recipe types to include' + +COPYLEFT_AVAILABLE_RECIPE_TYPES = 'target native nativesdk cross crosssdk cross-canadian' +COPYLEFT_AVAILABLE_RECIPE_TYPES[type] = 'list' +COPYLEFT_AVAILABLE_RECIPE_TYPES[doc] = 'Space separated list of available recipe types' + +def copyleft_recipe_type(d): + for recipe_type in oe.data.typed_value('COPYLEFT_AVAILABLE_RECIPE_TYPES', d): + if oe.utils.inherits(d, recipe_type): + return recipe_type + return 'target' def copyleft_should_include(d): """Determine if this recipe's sources should be deployed for compliance""" @@ -23,9 +39,8 @@ def copyleft_should_include(d): import oe.license from fnmatch import fnmatchcase as fnmatch - if oe.utils.inherits(d, 'native', 'nativesdk', 'cross', 'crossdk'): - # not a target recipe - return + if d.getVar('COPYLEFT_RECIPE_TYPE', True) not in oe.data.typed_value('COPYLEFT_RECIPE_TYPES', d): + return False include = oe.data.typed_value('COPYLEFT_LICENSE_INCLUDE', d) exclude = oe.data.typed_value('COPYLEFT_LICENSE_EXCLUDE', d) |