diff options
author | Ross Burton <ross@burtonini.com> | 2021-09-03 14:24:59 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-04 08:44:11 +0100 |
commit | 2d30e89a15ddaa22405a31ce4e312a7b6236b798 (patch) | |
tree | 7b0e154a238d65d3bfdbb53a9d733a5fed2caf84 /scripts/lib/recipetool | |
parent | 44621c303e42853b6e416f789f4b2b201694eeca (diff) | |
download | poky-2d30e89a15ddaa22405a31ce4e312a7b6236b798.tar.gz |
recipetool/create_buildsys_python: treat BSD as BSD-3-Clause
The PyPI license classifiers include "OSI Approved: BSD", which does not
specify which of the many variations of BSD license it actually means.
The generic "BSD" license in the oe-core set is actually BSD-3-Clause.
>From a random sample of ten PyPI modules that use "BSD", they are all
BSD-3-Clause. As we expect the recipe maintainer to verify the license
anyway, and this matches the previous license text, explicitly set the
license to BSD-3-Clause.
(From OE-Core rev: a879fff9af31e45b1acc3f19a3c2a7eaf6319ad4)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/recipetool')
-rw-r--r-- | scripts/lib/recipetool/create_buildsys_python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/recipetool/create_buildsys_python.py b/scripts/lib/recipetool/create_buildsys_python.py index 8aa44650d3..0b6b042ed1 100644 --- a/scripts/lib/recipetool/create_buildsys_python.py +++ b/scripts/lib/recipetool/create_buildsys_python.py | |||
@@ -101,7 +101,7 @@ class PythonRecipeHandler(RecipeHandler): | |||
101 | 'License :: OSI Approved :: Apple Public Source License': 'APSL', | 101 | 'License :: OSI Approved :: Apple Public Source License': 'APSL', |
102 | 'License :: OSI Approved :: Artistic License': 'Artistic', | 102 | 'License :: OSI Approved :: Artistic License': 'Artistic', |
103 | 'License :: OSI Approved :: Attribution Assurance License': 'AAL', | 103 | 'License :: OSI Approved :: Attribution Assurance License': 'AAL', |
104 | 'License :: OSI Approved :: BSD License': 'BSD', | 104 | 'License :: OSI Approved :: BSD License': 'BSD-3-Clause', |
105 | 'License :: OSI Approved :: Common Public License': 'CPL', | 105 | 'License :: OSI Approved :: Common Public License': 'CPL', |
106 | 'License :: OSI Approved :: Eiffel Forum License': 'EFL', | 106 | 'License :: OSI Approved :: Eiffel Forum License': 'EFL', |
107 | 'License :: OSI Approved :: European Union Public Licence 1.0 (EUPL 1.0)': 'EUPL-1.0', | 107 | 'License :: OSI Approved :: European Union Public Licence 1.0 (EUPL 1.0)': 'EUPL-1.0', |