mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00
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>
This commit is contained in:
parent
44621c303e
commit
2d30e89a15
|
@ -101,7 +101,7 @@ class PythonRecipeHandler(RecipeHandler):
|
||||||
'License :: OSI Approved :: Apple Public Source License': 'APSL',
|
'License :: OSI Approved :: Apple Public Source License': 'APSL',
|
||||||
'License :: OSI Approved :: Artistic License': 'Artistic',
|
'License :: OSI Approved :: Artistic License': 'Artistic',
|
||||||
'License :: OSI Approved :: Attribution Assurance License': 'AAL',
|
'License :: OSI Approved :: Attribution Assurance License': 'AAL',
|
||||||
'License :: OSI Approved :: BSD License': 'BSD',
|
'License :: OSI Approved :: BSD License': 'BSD-3-Clause',
|
||||||
'License :: OSI Approved :: Common Public License': 'CPL',
|
'License :: OSI Approved :: Common Public License': 'CPL',
|
||||||
'License :: OSI Approved :: Eiffel Forum License': 'EFL',
|
'License :: OSI Approved :: Eiffel Forum License': 'EFL',
|
||||||
'License :: OSI Approved :: European Union Public Licence 1.0 (EUPL 1.0)': 'EUPL-1.0',
|
'License :: OSI Approved :: European Union Public Licence 1.0 (EUPL 1.0)': 'EUPL-1.0',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user