summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2014-03-24 13:39:26 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-25 09:55:35 +0000
commit4a91e1449b0c869979231b7f4c98e09c7a5d732a (patch)
treea312244c885b17792a28cab19d584ebf20cc7d88 /meta
parent39ea97470fbd5d2aee4d784494d4c5ad157960fb (diff)
downloadpoky-4a91e1449b0c869979231b7f4c98e09c7a5d732a.tar.gz
archiver.bbclass: make it can filter the license
* Filter the license (default: no), the recipe whose license in COPYLEFT_LICENSE_INCLUDE will be included, and in COPYLEFT_LICENSE_EXCLUDE will be excluded. * The user can set the recipe type that would be archived (native, target, and so on), deafult to all. The copyleft_filter.bbclass is come from copyleft_compliance.bbclass, which is used by both copyleft_compliance.bbclass and archiver.bbclass. [YOCTO #5740] (From OE-Core rev: 0e798d5cbcf585535e19633828dc540a282261fc) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/archiver.bbclass27
-rw-r--r--meta/classes/copyleft_compliance.bbclass56
-rw-r--r--meta/classes/copyleft_filter.bbclass62
3 files changed, 88 insertions, 57 deletions
diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass
index 7780c71ade..9aa9335b94 100644
--- a/meta/classes/archiver.bbclass
+++ b/meta/classes/archiver.bbclass
@@ -12,9 +12,23 @@
12# 5) The environment data, similar to 'bitbake -e recipe': 12# 5) The environment data, similar to 'bitbake -e recipe':
13# ARCHIVER_MODE[dumpdata] = "1" 13# ARCHIVER_MODE[dumpdata] = "1"
14# 6) The recipe (.bb and .inc): ARCHIVER_MODE[recipe] = "1" 14# 6) The recipe (.bb and .inc): ARCHIVER_MODE[recipe] = "1"
15# 7) Whether output the .src.rpm package:
16# ARCHIVER_MODE[srpm] = "1"
17# 8) Filter the license, the recipe whose license in
18# COPYLEFT_LICENSE_INCLUDE will be included, and in
19# COPYLEFT_LICENSE_EXCLUDE will be excluded.
20# COPYLEFT_LICENSE_INCLUDE = 'GPL* LGPL*'
21# COPYLEFT_LICENSE_EXCLUDE = 'CLOSED Proprietary'
22# 9) The recipe type that will be archived:
23# COPYLEFT_RECIPE_TYPES = 'target'
15# 24#
16# All of the above can be packed into a .src.rpm package: (when PACKAGES != "") 25
17# ARCHIVER_MODE[srpm] = "1" 26# Don't filter the license by default
27COPYLEFT_LICENSE_INCLUDE ?= ''
28COPYLEFT_LICENSE_EXCLUDE ?= ''
29# Create archive for all the recipe types
30COPYLEFT_RECIPE_TYPES ?= 'target native nativesdk cross crosssdk cross-canadian'
31inherit copyleft_filter
18 32
19ARCHIVER_MODE[srpm] ?= "0" 33ARCHIVER_MODE[srpm] ?= "0"
20ARCHIVER_MODE[src] ?= "patched" 34ARCHIVER_MODE[src] ?= "patched"
@@ -38,6 +52,15 @@ do_ar_original[dirs] = "${ARCHIVER_OUTDIR} ${ARCHIVER_WORKDIR}"
38python () { 52python () {
39 pn = d.getVar('PN', True) 53 pn = d.getVar('PN', True)
40 54
55 if d.getVar('COPYLEFT_LICENSE_INCLUDE', True) or \
56 d.getVar('COPYLEFT_LICENSE_EXCLUDE', True):
57 included, reason = copyleft_should_include(d)
58 if not included:
59 bb.debug(1, 'archiver: %s is excluded: %s' % (pn, reason))
60 return
61 else:
62 bb.debug(1, 'archiver: %s is included: %s' % (pn, reason))
63
41 ar_src = d.getVarFlag('ARCHIVER_MODE', 'src', True) 64 ar_src = d.getVarFlag('ARCHIVER_MODE', 'src', True)
42 ar_dumpdata = d.getVarFlag('ARCHIVER_MODE', 'dumpdata', True) 65 ar_dumpdata = d.getVarFlag('ARCHIVER_MODE', 'dumpdata', True)
43 ar_recipe = d.getVarFlag('ARCHIVER_MODE', 'recipe', True) 66 ar_recipe = d.getVarFlag('ARCHIVER_MODE', 'recipe', True)
diff --git a/meta/classes/copyleft_compliance.bbclass b/meta/classes/copyleft_compliance.bbclass
index b47c2c95ad..907c1836b3 100644
--- a/meta/classes/copyleft_compliance.bbclass
+++ b/meta/classes/copyleft_compliance.bbclass
@@ -2,66 +2,12 @@
2# Defaults to using symlinks, as it's a quick operation, and one can easily 2# Defaults to using symlinks, as it's a quick operation, and one can easily
3# follow the links when making use of the files (e.g. tar with the -h arg). 3# follow the links when making use of the files (e.g. tar with the -h arg).
4# 4#
5# By default, includes all GPL and LGPL, and excludes CLOSED and Proprietary.
6#
7# vi:sts=4:sw=4:et 5# vi:sts=4:sw=4:et
8 6
9COPYLEFT_LICENSE_INCLUDE ?= 'GPL* LGPL*' 7inherit copyleft_filter
10COPYLEFT_LICENSE_INCLUDE[type] = 'list'
11COPYLEFT_LICENSE_INCLUDE[doc] = 'Space separated list of globs which include licenses'
12
13COPYLEFT_LICENSE_EXCLUDE ?= 'CLOSED Proprietary'
14COPYLEFT_LICENSE_EXCLUDE[type] = 'list'
15COPYLEFT_LICENSE_EXCLUDE[doc] = 'Space separated list of globs which exclude licenses'
16
17COPYLEFT_RECIPE_TYPE ?= '${@copyleft_recipe_type(d)}'
18COPYLEFT_RECIPE_TYPE[doc] = 'The "type" of the current recipe (e.g. target, native, cross)'
19
20COPYLEFT_RECIPE_TYPES ?= 'target'
21COPYLEFT_RECIPE_TYPES[type] = 'list'
22COPYLEFT_RECIPE_TYPES[doc] = 'Space separated list of recipe types to include'
23
24COPYLEFT_AVAILABLE_RECIPE_TYPES = 'target native nativesdk cross crosssdk cross-canadian'
25COPYLEFT_AVAILABLE_RECIPE_TYPES[type] = 'list'
26COPYLEFT_AVAILABLE_RECIPE_TYPES[doc] = 'Space separated list of available recipe types'
27 8
28COPYLEFT_SOURCES_DIR ?= '${DEPLOY_DIR}/copyleft_sources' 9COPYLEFT_SOURCES_DIR ?= '${DEPLOY_DIR}/copyleft_sources'
29 10
30def copyleft_recipe_type(d):
31 for recipe_type in oe.data.typed_value('COPYLEFT_AVAILABLE_RECIPE_TYPES', d):
32 if oe.utils.inherits(d, recipe_type):
33 return recipe_type
34 return 'target'
35
36def copyleft_should_include(d):
37 """
38 Determine if this recipe's sources should be deployed for compliance
39 """
40 import ast
41 import oe.license
42 from fnmatch import fnmatchcase as fnmatch
43
44 recipe_type = d.getVar('COPYLEFT_RECIPE_TYPE', True)
45 if recipe_type not in oe.data.typed_value('COPYLEFT_RECIPE_TYPES', d):
46 return False, 'recipe type "%s" is excluded' % recipe_type
47
48 include = oe.data.typed_value('COPYLEFT_LICENSE_INCLUDE', d)
49 exclude = oe.data.typed_value('COPYLEFT_LICENSE_EXCLUDE', d)
50
51 try:
52 is_included, reason = oe.license.is_included(d.getVar('LICENSE', True), include, exclude)
53 except oe.license.LicenseError as exc:
54 bb.fatal('%s: %s' % (d.getVar('PF', True), exc))
55 else:
56 if is_included:
57 if reason:
58 return True, 'recipe has included licenses: %s' % ', '.join(reason)
59 else:
60 return False, 'recipe does not include a copyleft license'
61 else:
62 return False, 'recipe has excluded licenses: %s' % ', '.join(reason)
63
64
65python do_prepare_copyleft_sources () { 11python do_prepare_copyleft_sources () {
66 """Populate a tree of the recipe sources and emit patch series files""" 12 """Populate a tree of the recipe sources and emit patch series files"""
67 import os.path 13 import os.path
diff --git a/meta/classes/copyleft_filter.bbclass b/meta/classes/copyleft_filter.bbclass
new file mode 100644
index 0000000000..2c1d8f1c90
--- /dev/null
+++ b/meta/classes/copyleft_filter.bbclass
@@ -0,0 +1,62 @@
1# Filter the license, the copyleft_should_include returns True for the
2# COPYLEFT_LICENSE_INCLUDE recipe, and False for the
3# COPYLEFT_LICENSE_EXCLUDE.
4#
5# By default, includes all GPL and LGPL, and excludes CLOSED and Proprietary.
6#
7# vi:sts=4:sw=4:et
8
9COPYLEFT_LICENSE_INCLUDE ?= 'GPL* LGPL*'
10COPYLEFT_LICENSE_INCLUDE[type] = 'list'
11COPYLEFT_LICENSE_INCLUDE[doc] = 'Space separated list of globs which include licenses'
12
13COPYLEFT_LICENSE_EXCLUDE ?= 'CLOSED Proprietary'
14COPYLEFT_LICENSE_EXCLUDE[type] = 'list'
15COPYLEFT_LICENSE_EXCLUDE[doc] = 'Space separated list of globs which exclude licenses'
16
17COPYLEFT_RECIPE_TYPE ?= '${@copyleft_recipe_type(d)}'
18COPYLEFT_RECIPE_TYPE[doc] = 'The "type" of the current recipe (e.g. target, native, cross)'
19
20COPYLEFT_RECIPE_TYPES ?= 'target'
21COPYLEFT_RECIPE_TYPES[type] = 'list'
22COPYLEFT_RECIPE_TYPES[doc] = 'Space separated list of recipe types to include'
23
24COPYLEFT_AVAILABLE_RECIPE_TYPES = 'target native nativesdk cross crosssdk cross-canadian'
25COPYLEFT_AVAILABLE_RECIPE_TYPES[type] = 'list'
26COPYLEFT_AVAILABLE_RECIPE_TYPES[doc] = 'Space separated list of available recipe types'
27
28def copyleft_recipe_type(d):
29 for recipe_type in oe.data.typed_value('COPYLEFT_AVAILABLE_RECIPE_TYPES', d):
30 if oe.utils.inherits(d, recipe_type):
31 return recipe_type
32 return 'target'
33
34def copyleft_should_include(d):
35 """
36 Determine if this recipe's sources should be deployed for compliance
37 """
38 import ast
39 import oe.license
40 from fnmatch import fnmatchcase as fnmatch
41
42 recipe_type = d.getVar('COPYLEFT_RECIPE_TYPE', True)
43 if recipe_type not in oe.data.typed_value('COPYLEFT_RECIPE_TYPES', d):
44 return False, 'recipe type "%s" is excluded' % recipe_type
45
46 include = oe.data.typed_value('COPYLEFT_LICENSE_INCLUDE', d)
47 exclude = oe.data.typed_value('COPYLEFT_LICENSE_EXCLUDE', d)
48
49 try:
50 is_included, reason = oe.license.is_included(d.getVar('LICENSE', True), include, exclude)
51 except oe.license.LicenseError as exc:
52 bb.fatal('%s: %s' % (d.getVar('PF', True), exc))
53 else:
54 if is_included:
55 if reason:
56 return True, 'recipe has included licenses: %s' % ', '.join(reason)
57 else:
58 return False, 'recipe does not include a copyleft license'
59 else:
60 return False, 'recipe has excluded licenses: %s' % ', '.join(reason)
61
62