diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-04-28 01:06:19 +1200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-06 10:31:14 +0100 |
commit | 8f275ff0d881d1119cc76afa38cd22902479db7a (patch) | |
tree | 0d70efa10a06ec7b4b8104c3d565359f0d1063ad /scripts | |
parent | 6ddd408f6d06c0be85f1a093f18e4e7d57817688 (diff) | |
download | poky-8f275ff0d881d1119cc76afa38cd22902479db7a.tar.gz |
recipetool: create: fix falling back to declared license for npm packages
Fix two problems falling back to the "license" field from package.json
when no license file is present:
1) The function that was supposed to return the license field value was
always explicitly returning None, and this was never noticed (because
the test cases never exercised the fallback as they provided license
files for each module).
2) Fix the main package not falling back because it had a default of an
empty list, which evaluates to '' instead of 'Unknown'.
(From OE-Core rev: 59381a9450949ce6b4b03adb717e950b999830f3)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/recipetool/create.py | 2 | ||||
-rw-r--r-- | scripts/lib/recipetool/create_npm.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py index bb9fb9b049..aade40b5a8 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py | |||
@@ -854,7 +854,7 @@ def split_pkg_licenses(licvalues, packages, outlines, fallback_licenses=None, pn | |||
854 | pkglicenses[pn].append(license) | 854 | pkglicenses[pn].append(license) |
855 | outlicenses = {} | 855 | outlicenses = {} |
856 | for pkgname in packages: | 856 | for pkgname in packages: |
857 | license = ' '.join(list(set(pkglicenses.get(pkgname, ['Unknown'])))) | 857 | license = ' '.join(list(set(pkglicenses.get(pkgname, ['Unknown'])))) or 'Unknown' |
858 | if license == 'Unknown' and pkgname in fallback_licenses: | 858 | if license == 'Unknown' and pkgname in fallback_licenses: |
859 | license = fallback_licenses[pkgname] | 859 | license = fallback_licenses[pkgname] |
860 | outlines.append('LICENSE_%s = "%s"' % (pkgname, license)) | 860 | outlines.append('LICENSE_%s = "%s"' % (pkgname, license)) |
diff --git a/scripts/lib/recipetool/create_npm.py b/scripts/lib/recipetool/create_npm.py index b3ffcdbc5b..cc4fb42684 100644 --- a/scripts/lib/recipetool/create_npm.py +++ b/scripts/lib/recipetool/create_npm.py | |||
@@ -45,7 +45,7 @@ class NpmRecipeHandler(RecipeHandler): | |||
45 | license = data['license'] | 45 | license = data['license'] |
46 | if isinstance(license, dict): | 46 | if isinstance(license, dict): |
47 | license = license.get('type', None) | 47 | license = license.get('type', None) |
48 | return None | 48 | return license |
49 | 49 | ||
50 | def _shrinkwrap(self, srctree, localfilesdir, extravalues, lines_before): | 50 | def _shrinkwrap(self, srctree, localfilesdir, extravalues, lines_before): |
51 | try: | 51 | try: |