diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/recipetool/create_buildsys_python.py | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/scripts/lib/recipetool/create_buildsys_python.py b/scripts/lib/recipetool/create_buildsys_python.py index 1a15011687..2a2c6ab6b6 100644 --- a/scripts/lib/recipetool/create_buildsys_python.py +++ b/scripts/lib/recipetool/create_buildsys_python.py | |||
@@ -102,10 +102,16 @@ class PythonRecipeHandler(RecipeHandler): | |||
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-3-Clause', | 104 | 'License :: OSI Approved :: BSD License': 'BSD-3-Clause', |
105 | 'License :: OSI Approved :: Boost Software License 1.0 (BSL-1.0)': 'BSL-1.0', | ||
106 | 'License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)': 'CECILL-2.1', | ||
107 | 'License :: OSI Approved :: Common Development and Distribution License 1.0 (CDDL-1.0)': 'CDDL-1.0', | ||
105 | 'License :: OSI Approved :: Common Public License': 'CPL', | 108 | 'License :: OSI Approved :: Common Public License': 'CPL', |
109 | 'License :: OSI Approved :: Eclipse Public License 1.0 (EPL-1.0)': 'EPL-1.0', | ||
110 | 'License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)': 'EPL-2.0', | ||
106 | 'License :: OSI Approved :: Eiffel Forum License': 'EFL', | 111 | 'License :: OSI Approved :: Eiffel Forum License': 'EFL', |
107 | 'License :: OSI Approved :: European Union Public Licence 1.0 (EUPL 1.0)': 'EUPL-1.0', | 112 | 'License :: OSI Approved :: European Union Public Licence 1.0 (EUPL 1.0)': 'EUPL-1.0', |
108 | 'License :: OSI Approved :: European Union Public Licence 1.1 (EUPL 1.1)': 'EUPL-1.1', | 113 | 'License :: OSI Approved :: European Union Public Licence 1.1 (EUPL 1.1)': 'EUPL-1.1', |
114 | 'License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)': 'EUPL-1.2', | ||
109 | 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)': 'AGPL-3.0+', | 115 | 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)': 'AGPL-3.0+', |
110 | 'License :: OSI Approved :: GNU Affero General Public License v3': 'AGPL-3.0', | 116 | 'License :: OSI Approved :: GNU Affero General Public License v3': 'AGPL-3.0', |
111 | 'License :: OSI Approved :: GNU Free Documentation License (FDL)': 'GFDL', | 117 | 'License :: OSI Approved :: GNU Free Documentation License (FDL)': 'GFDL', |
@@ -119,12 +125,15 @@ class PythonRecipeHandler(RecipeHandler): | |||
119 | 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)': 'LGPL-3.0', | 125 | 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)': 'LGPL-3.0', |
120 | 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)': 'LGPL-3.0+', | 126 | 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)': 'LGPL-3.0+', |
121 | 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)': 'LGPL', | 127 | 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)': 'LGPL', |
128 | 'License :: OSI Approved :: Historical Permission Notice and Disclaimer (HPND)': 'HPND', | ||
122 | 'License :: OSI Approved :: IBM Public License': 'IPL', | 129 | 'License :: OSI Approved :: IBM Public License': 'IPL', |
123 | 'License :: OSI Approved :: ISC License (ISCL)': 'ISC', | 130 | 'License :: OSI Approved :: ISC License (ISCL)': 'ISC', |
124 | 'License :: OSI Approved :: Intel Open Source License': 'Intel', | 131 | 'License :: OSI Approved :: Intel Open Source License': 'Intel', |
125 | 'License :: OSI Approved :: Jabber Open Source License': 'Jabber', | 132 | 'License :: OSI Approved :: Jabber Open Source License': 'Jabber', |
126 | 'License :: OSI Approved :: MIT License': 'MIT', | 133 | 'License :: OSI Approved :: MIT License': 'MIT', |
134 | 'License :: OSI Approved :: MIT No Attribution License (MIT-0)': 'MIT-0', | ||
127 | 'License :: OSI Approved :: MITRE Collaborative Virtual Workspace License (CVW)': 'CVWL', | 135 | 'License :: OSI Approved :: MITRE Collaborative Virtual Workspace License (CVW)': 'CVWL', |
136 | 'License :: OSI Approved :: MirOS License (MirOS)': 'MirOS', | ||
128 | 'License :: OSI Approved :: Motosoto License': 'Motosoto', | 137 | 'License :: OSI Approved :: Motosoto License': 'Motosoto', |
129 | 'License :: OSI Approved :: Mozilla Public License 1.0 (MPL)': 'MPL-1.0', | 138 | 'License :: OSI Approved :: Mozilla Public License 1.0 (MPL)': 'MPL-1.0', |
130 | 'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)': 'MPL-1.1', | 139 | 'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)': 'MPL-1.1', |
@@ -132,19 +141,26 @@ class PythonRecipeHandler(RecipeHandler): | |||
132 | 'License :: OSI Approved :: Nethack General Public License': 'NGPL', | 141 | 'License :: OSI Approved :: Nethack General Public License': 'NGPL', |
133 | 'License :: OSI Approved :: Nokia Open Source License': 'Nokia', | 142 | 'License :: OSI Approved :: Nokia Open Source License': 'Nokia', |
134 | 'License :: OSI Approved :: Open Group Test Suite License': 'OGTSL', | 143 | 'License :: OSI Approved :: Open Group Test Suite License': 'OGTSL', |
144 | 'License :: OSI Approved :: Open Software License 3.0 (OSL-3.0)': 'OSL-3.0', | ||
145 | 'License :: OSI Approved :: PostgreSQL License': 'PostgreSQL', | ||
135 | 'License :: OSI Approved :: Python License (CNRI Python License)': 'CNRI-Python', | 146 | 'License :: OSI Approved :: Python License (CNRI Python License)': 'CNRI-Python', |
136 | 'License :: OSI Approved :: Python Software Foundation License': 'PSF', | 147 | 'License :: OSI Approved :: Python Software Foundation License': 'PSF', |
137 | 'License :: OSI Approved :: Qt Public License (QPL)': 'QPL', | 148 | 'License :: OSI Approved :: Qt Public License (QPL)': 'QPL', |
138 | 'License :: OSI Approved :: Ricoh Source Code Public License': 'RSCPL', | 149 | 'License :: OSI Approved :: Ricoh Source Code Public License': 'RSCPL', |
150 | 'License :: OSI Approved :: SIL Open Font License 1.1 (OFL-1.1)': 'OFL-1.1', | ||
139 | 'License :: OSI Approved :: Sleepycat License': 'Sleepycat', | 151 | 'License :: OSI Approved :: Sleepycat License': 'Sleepycat', |
140 | 'License :: OSI Approved :: Sun Industry Standards Source License (SISSL)': '-- Sun Industry Standards Source License (SISSL)', | 152 | 'License :: OSI Approved :: Sun Industry Standards Source License (SISSL)': 'SISSL', |
141 | 'License :: OSI Approved :: Sun Public License': 'SPL', | 153 | 'License :: OSI Approved :: Sun Public License': 'SPL', |
154 | 'License :: OSI Approved :: The Unlicense (Unlicense)': 'Unlicense', | ||
155 | 'License :: OSI Approved :: Universal Permissive License (UPL)': 'UPL-1.0', | ||
142 | 'License :: OSI Approved :: University of Illinois/NCSA Open Source License': 'NCSA', | 156 | 'License :: OSI Approved :: University of Illinois/NCSA Open Source License': 'NCSA', |
143 | 'License :: OSI Approved :: Vovida Software License 1.0': 'VSL-1.0', | 157 | 'License :: OSI Approved :: Vovida Software License 1.0': 'VSL-1.0', |
144 | 'License :: OSI Approved :: W3C License': 'W3C', | 158 | 'License :: OSI Approved :: W3C License': 'W3C', |
145 | 'License :: OSI Approved :: X.Net License': 'Xnet', | 159 | 'License :: OSI Approved :: X.Net License': 'Xnet', |
146 | 'License :: OSI Approved :: Zope Public License': 'ZPL', | 160 | 'License :: OSI Approved :: Zope Public License': 'ZPL', |
147 | 'License :: OSI Approved :: zlib/libpng License': 'Zlib', | 161 | 'License :: OSI Approved :: zlib/libpng License': 'Zlib', |
162 | 'License :: Other/Proprietary License': 'Proprietary', | ||
163 | 'License :: Public Domain': 'PD', | ||
148 | } | 164 | } |
149 | 165 | ||
150 | def __init__(self): | 166 | def __init__(self): |