blob: c70d6bd551329aca3bd9537281f78fb0e9e69235 [file] [log] [blame]
Bob Badourb80dfee2021-01-07 03:34:31 +00001//
2// Copyright (C) 2020 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16package {
Bob Badourb545c5f2021-01-23 14:35:55 -080017 default_visibility: ["//visibility:public"],
18 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badourb80dfee2021-01-07 03:34:31 +000019}
20
21license {
Bob Badourb545c5f2021-01-23 14:35:55 -080022 name: "Android-Apache-2.0",
23 license_kinds: ["SPDX-license-identifier-Apache-2.0"],
24 copyright_notice: "Copyright (C) The Android Open Source Project",
25 license_text: ["LICENSE"],
Bob Badourb80dfee2021-01-07 03:34:31 +000026}
27
28license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -080029 name: "SPDX-license-identifier-0BSD",
30 conditions: ["unencumbered"],
31 url: "https://spdx.org/licenses/0BSD",
32}
33
34license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080035 name: "SPDX-license-identifier-AFL-1.1",
36 conditions: ["by_exception_only"],
37 url: "https://spdx.org/licenses/AFL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000038}
39
40license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080041 name: "SPDX-license-identifier-AFL-1.2",
42 conditions: ["by_exception_only"],
43 url: "https://spdx.org/licenses/AFL-1.2.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000044}
45
46license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080047 name: "SPDX-license-identifier-AFL-2.0",
48 conditions: ["by_exception_only"],
49 url: "https://spdx.org/licenses/AFL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000050}
51
52license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080053 name: "SPDX-license-identifier-AFL-2.1",
54 conditions: ["notice"],
55 url: "https://spdx.org/licenses/AFL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000056}
57
58license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080059 name: "SPDX-license-identifier-AFL-3.0",
60 conditions: ["notice"],
61 url: "https://spdx.org/licenses/AFL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000062}
63
64license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080065 name: "SPDX-license-identifier-AGPL",
66 conditions: [
67 "by_exception_only",
68 "not_allowed",
69 ],
70 url: "https://spdx.org/licenses/AGPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000071}
72
73license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080074 name: "SPDX-license-identifier-AGPL-1.0",
75 conditions: [
76 "by_exception_only",
77 "not_allowed",
78 ],
79 url: "https://spdx.org/licenses/AGPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000080}
81
82license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080083 name: "SPDX-license-identifier-AGPL-1.0-only",
84 conditions: [
85 "by_exception_only",
86 "not_allowed",
87 ],
88 url: "https://spdx.org/licenses/AGPL-1.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000089}
90
91license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080092 name: "SPDX-license-identifier-AGPL-1.0-or-later",
93 conditions: [
94 "by_exception_only",
95 "not_allowed",
96 ],
97 url: "https://spdx.org/licenses/AGPL-1.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000098}
99
100license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800101 name: "SPDX-license-identifier-AGPL-3.0",
102 conditions: [
103 "by_exception_only",
104 "not_allowed",
105 ],
106 url: "https://spdx.org/licenses/AGPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000107}
108
109license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800110 name: "SPDX-license-identifier-AGPL-3.0-only",
111 conditions: [
112 "by_exception_only",
113 "not_allowed",
114 ],
115 url: "https://spdx.org/licenses/AGPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000116}
117
118license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800119 name: "SPDX-license-identifier-AGPL-3.0-or-later",
120 conditions: [
121 "by_exception_only",
122 "not_allowed",
123 ],
124 url: "https://spdx.org/licenses/AGPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000125}
126
127license_kind {
Bob Badour304fe7f2021-01-27 16:51:36 -0800128 name: "SPDX-license-identifier-APSL-1.1",
129 conditions: [
130 "reciprocal",
131 ],
132 url: "https://spdx.org/licenses/APSL-1.1.html",
133}
134
135license_kind {
136 name: "SPDX-license-identifier-APSL-2.0",
137 conditions: [
138 "reciprocal",
139 ],
140 url: "https://spdx.org/licenses/APSL-2.0.html",
141}
142
143license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800144 name: "SPDX-license-identifier-Apache",
145 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000146}
147
148license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800149 name: "SPDX-license-identifier-Apache-1.0",
150 conditions: ["notice"],
151 url: "https://spdx.org/licenses/Apache-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000152}
153
154license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800155 name: "SPDX-license-identifier-Apache-1.1",
156 conditions: ["notice"],
157 url: "https://spdx.org/licenses/Apache-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000158}
159
160license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800161 name: "SPDX-license-identifier-Apache-2.0",
162 conditions: ["notice"],
163 url: "https://spdx.org/licenses/Apache-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000164}
165
166license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800167 name: "SPDX-license-identifier-Artistic",
168 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000169}
170
171license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800172 name: "SPDX-license-identifier-Artistic-1.0",
173 conditions: ["notice"],
174 url: "https://spdx.org/licenses/Artistic-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000175}
176
177license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800178 name: "SPDX-license-identifier-Artistic-1.0-Perl",
179 conditions: ["notice"],
180 url: "https://spdx.org/licenses/Artistic-1.0-Perl.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000181}
182
183license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800184 name: "SPDX-license-identifier-Artistic-1.0-cl8",
185 conditions: ["notice"],
186 url: "https://spdx.org/licenses/Artistic-1.0-cl8.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000187}
188
189license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800190 name: "SPDX-license-identifier-Artistic-2.0",
191 conditions: ["notice"],
192 url: "https://spdx.org/licenses/Artistic-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000193}
194
195license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800196 name: "SPDX-license-identifier-BSD",
197 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000198}
199
200license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800201 name: "SPDX-license-identifier-BSD-1-Clause",
202 conditions: ["notice"],
203 url: "https://spdx.org/licenses/BSD-1-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000204}
205
206license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800207 name: "SPDX-license-identifier-BSD-2-Clause",
208 conditions: ["notice"],
209 url: "https://spdx.org/licenses/BSD-2-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000210}
211
212license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800213 name: "SPDX-license-identifier-BSD-2-Clause-FreeBSD",
214 conditions: ["notice"],
215 url: "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000216}
217
218license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800219 name: "SPDX-license-identifier-BSD-2-Clause-NetBSD",
220 conditions: ["notice"],
221 url: "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000222}
223
224license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800225 name: "SPDX-license-identifier-BSD-2-Clause-Patent",
226 conditions: ["notice"],
227 url: "https://spdx.org/licenses/BSD-2-Clause-Patent.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000228}
229
230license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800231 name: "SPDX-license-identifier-BSD-3-Clause",
232 conditions: ["notice"],
233 url: "https://spdx.org/licenses/BSD-3-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000234}
235
236license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800237 name: "SPDX-license-identifier-BSD-3-Clause-Attribution",
238 conditions: ["notice"],
239 url: "https://spdx.org/licenses/BSD-3-Clause-Attribution.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000240}
241
242license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800243 name: "SPDX-license-identifier-BSD-3-Clause-Clear",
244 conditions: ["notice"],
245 url: "https://spdx.org/licenses/BSD-3-Clause-Clear.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000246}
247
248license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800249 name: "SPDX-license-identifier-BSD-3-Clause-LBNL",
250 conditions: ["notice"],
251 url: "https://spdx.org/licenses/BSD-3-Clause-LBNL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000252}
253
254license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800255 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-License",
256 conditions: ["notice"],
257 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000258}
259
260license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800261 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-License-2014",
262 conditions: ["notice"],
263 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000264}
265
266license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800267 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-Warranty",
268 conditions: ["notice"],
269 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000270}
271
272license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800273 name: "SPDX-license-identifier-BSD-3-Clause-Open-MPI",
274 conditions: ["notice"],
275 url: "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000276}
277
278license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800279 name: "SPDX-license-identifier-BSD-4-Clause",
280 conditions: ["notice"],
281 url: "https://spdx.org/licenses/BSD-4-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000282}
283
284license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800285 name: "SPDX-license-identifier-BSD-4-Clause-UC",
286 conditions: ["notice"],
287 url: "https://spdx.org/licenses/BSD-4-Clause-UC.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000288}
289
290license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800291 name: "SPDX-license-identifier-BSD-Protection",
292 conditions: ["notice"],
293 url: "https://spdx.org/licenses/BSD-Protection.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000294}
295
296license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800297 name: "SPDX-license-identifier-BSD-Source-Code",
298 conditions: ["notice"],
299 url: "https://spdx.org/licenses/BSD-Source-Code.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000300}
301
302license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800303 name: "SPDX-license-identifier-BSL-1.0",
304 conditions: ["notice"],
305 url: "https://spdx.org/licenses/BSL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000306}
307
308license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800309 name: "SPDX-license-identifier-Beerware",
Bob Badour7a105302021-02-02 12:08:28 -0800310 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800311 url: "https://spdx.org/licenses/Beerware.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000312}
313
314license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800315 name: "SPDX-license-identifier-CC-BY",
316 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000317}
318
319license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800320 name: "SPDX-license-identifier-CC-BY-1.0",
321 conditions: ["notice"],
322 url: "https://spdx.org/licenses/CC-BY-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000323}
324
325license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800326 name: "SPDX-license-identifier-CC-BY-2.0",
327 conditions: ["notice"],
328 url: "https://spdx.org/licenses/CC-BY-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000329}
330
331license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800332 name: "SPDX-license-identifier-CC-BY-2.5",
333 conditions: ["notice"],
334 url: "https://spdx.org/licenses/CC-BY-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000335}
336
337license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800338 name: "SPDX-license-identifier-CC-BY-3.0",
339 conditions: ["notice"],
340 url: "https://spdx.org/licenses/CC-BY-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000341}
342
343license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800344 name: "SPDX-license-identifier-CC-BY-4.0",
345 conditions: ["notice"],
346 url: "https://spdx.org/licenses/CC-BY-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000347}
348
349license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800350 name: "SPDX-license-identifier-CC-BY-NC",
351 conditions: [
352 "by_exception_only",
353 "not_allowed",
354 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000355}
356
357license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800358 name: "SPDX-license-identifier-CC-BY-NC-1.0",
359 conditions: [
360 "by_exception_only",
361 "not_allowed",
362 ],
363 url: "https://spdx.org/licenses/CC-BY-NC-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000364}
365
366license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800367 name: "SPDX-license-identifier-CC-BY-NC-2.0",
368 conditions: [
369 "by_exception_only",
370 "not_allowed",
371 ],
372 url: "https://spdx.org/licenses/CC-BY-NC-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000373}
374
375license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800376 name: "SPDX-license-identifier-CC-BY-NC-2.5",
377 conditions: [
378 "by_exception_only",
379 "not_allowed",
380 ],
381 url: "https://spdx.org/licenses/CC-BY-NC-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000382}
383
384license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800385 name: "SPDX-license-identifier-CC-BY-NC-3.0",
386 conditions: [
387 "by_exception_only",
388 "not_allowed",
389 ],
390 url: "https://spdx.org/licenses/CC-BY-NC-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000391}
392
393license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800394 name: "SPDX-license-identifier-CC-BY-NC-4.0",
395 conditions: [
396 "by_exception_only",
397 "not_allowed",
398 ],
399 url: "https://spdx.org/licenses/CC-BY-NC-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000400}
401
402license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800403 name: "SPDX-license-identifier-CC-BY-NC-ND-1.0",
404 conditions: [
405 "by_exception_only",
406 "not_allowed",
407 ],
408 url: "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000409}
410
411license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800412 name: "SPDX-license-identifier-CC-BY-NC-ND-2.0",
413 conditions: [
414 "by_exception_only",
415 "not_allowed",
416 ],
417 url: "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000418}
419
420license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800421 name: "SPDX-license-identifier-CC-BY-NC-ND-2.5",
422 conditions: [
423 "by_exception_only",
424 "not_allowed",
425 ],
426 url: "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000427}
428
429license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800430 name: "SPDX-license-identifier-CC-BY-NC-ND-3.0",
431 conditions: [
432 "by_exception_only",
433 "not_allowed",
434 ],
435 url: "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000436}
437
438license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800439 name: "SPDX-license-identifier-CC-BY-NC-ND-4.0",
440 conditions: [
441 "by_exception_only",
442 "not_allowed",
443 ],
444 url: "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000445}
446
447license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800448 name: "SPDX-license-identifier-CC-BY-NC-SA-1.0",
449 conditions: [
450 "by_exception_only",
451 "not_allowed",
452 ],
453 url: "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000454}
455
456license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800457 name: "SPDX-license-identifier-CC-BY-NC-SA-2.0",
458 conditions: [
459 "by_exception_only",
460 "not_allowed",
461 ],
462 url: "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000463}
464
465license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800466 name: "SPDX-license-identifier-CC-BY-NC-SA-2.5",
467 conditions: [
468 "by_exception_only",
469 "not_allowed",
470 ],
471 url: "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000472}
473
474license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800475 name: "SPDX-license-identifier-CC-BY-NC-SA-3.0",
476 conditions: [
477 "by_exception_only",
478 "not_allowed",
479 ],
480 url: "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000481}
482
483license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800484 name: "SPDX-license-identifier-CC-BY-NC-SA-4.0",
485 conditions: [
486 "by_exception_only",
487 "not_allowed",
488 ],
489 url: "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000490}
491
492license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800493 name: "SPDX-license-identifier-CC-BY-ND",
494 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000495}
496
497license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800498 name: "SPDX-license-identifier-CC-BY-ND-1.0",
499 conditions: ["restricted"],
500 url: "https://spdx.org/licenses/CC-BY-ND-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000501}
502
503license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800504 name: "SPDX-license-identifier-CC-BY-ND-2.0",
505 conditions: ["restricted"],
506 url: "https://spdx.org/licenses/CC-BY-ND-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000507}
508
509license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800510 name: "SPDX-license-identifier-CC-BY-ND-2.5",
511 conditions: ["restricted"],
512 url: "https://spdx.org/licenses/CC-BY-ND-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000513}
514
515license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800516 name: "SPDX-license-identifier-CC-BY-ND-3.0",
517 conditions: ["restricted"],
518 url: "https://spdx.org/licenses/CC-BY-ND-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000519}
520
521license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800522 name: "SPDX-license-identifier-CC-BY-ND-4.0",
523 conditions: ["restricted"],
524 url: "https://spdx.org/licenses/CC-BY-ND-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000525}
526
527license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800528 name: "SPDX-license-identifier-CC-BY-SA",
529 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000530}
531
532license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800533 name: "SPDX-license-identifier-CC-BY-SA-1.0",
534 conditions: ["restricted"],
535 url: "https://spdx.org/licenses/CC-BY-SA-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000536}
537
538license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800539 name: "SPDX-license-identifier-CC-BY-SA-2.0",
540 conditions: ["restricted"],
541 url: "https://spdx.org/licenses/CC-BY-SA-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000542}
543
544license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800545 name: "SPDX-license-identifier-CC-BY-SA-2.5",
546 conditions: ["restricted"],
547 url: "https://spdx.org/licenses/CC-BY-SA-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000548}
549
550license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800551 name: "SPDX-license-identifier-CC-BY-SA-3.0",
552 conditions: ["restricted"],
553 url: "https://spdx.org/licenses/CC-BY-SA-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000554}
555
556license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800557 name: "SPDX-license-identifier-CC-BY-SA-4.0",
558 conditions: ["restricted"],
559 url: "https://spdx.org/licenses/CC-BY-SA-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000560}
561
562license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800563 name: "SPDX-license-identifier-CC-BY-SA-ND",
564 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000565}
566
567license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800568 name: "SPDX-license-identifier-CC0-1.0",
569 conditions: ["unencumbered"],
570 url: "https://spdx.org/licenses/CC0-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000571}
572
573license_kind {
Bob Badourf34e4412021-01-26 00:02:44 -0800574 name: "SPDX-license-identifier-CDDL",
575 conditions: ["reciprocal"],
576}
577
578license_kind {
579 name: "SPDX-license-identifier-CDDL-1.0",
580 conditions: ["reciprocal"],
581 url: "https://spdx.org/licenses/CDLL-1.0.html",
582}
583
584license_kind {
585 name: "SPDX-license-identifier-CDDL-1.1",
586 conditions: ["reciprocal"],
587 url: "https://spdx.org/licenses/CDLL-1.1.html",
588}
589
590license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800591 name: "SPDX-license-identifier-CPAL-1.0",
592 conditions: [
593 "by_exception_only",
594 "not_allowed",
595 ],
596 url: "https://spdx.org/licenses/CPAL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000597}
598
599license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800600 name: "SPDX-license-identifier-CPL-1.0",
601 conditions: ["reciprocal"],
602 url: "https://spdx.org/licenses/CPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000603}
604
605license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800606 name: "SPDX-license-identifier-EPL",
607 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000608}
609
610license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800611 name: "SPDX-license-identifier-EPL-1.0",
612 conditions: ["reciprocal"],
613 url: "https://spdx.org/licenses/EPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000614}
615
616license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800617 name: "SPDX-license-identifier-EPL-2.0",
618 conditions: ["reciprocal"],
619 url: "https://spdx.org/licenses/EPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000620}
621
622license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800623 name: "SPDX-license-identifier-EUPL",
624 conditions: [
625 "by_exception_only",
626 "not_allowed",
627 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000628}
629
630license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800631 name: "SPDX-license-identifier-EUPL-1.0",
632 conditions: [
633 "by_exception_only",
634 "not_allowed",
635 ],
636 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000637}
638
639license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800640 name: "SPDX-license-identifier-EUPL-1.1",
641 conditions: [
642 "by_exception_only",
643 "not_allowed",
644 ],
645 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000646}
647
648license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800649 name: "SPDX-license-identifier-EUPL-1.2",
650 conditions: [
651 "by_exception_only",
652 "not_allowed",
653 ],
654 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000655}
656
657license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800658 name: "SPDX-license-identifier-FSFAP",
659 conditions: ["notice"],
660 url: "https://spdx.org/licenses/FSFAP",
661}
662
663license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800664 name: "SPDX-license-identifier-FTL",
665 conditions: ["notice"],
666 url: "https://spdx.org/licenses/FTL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000667}
668
669license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800670 name: "SPDX-license-identifier-GFDL",
671 conditions: ["by_exception_only"],
672}
673
674license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800675 name: "SPDX-license-identifier-GPL",
676 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000677}
678
679license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800680 name: "SPDX-license-identifier-GPL-1.0",
681 conditions: ["restricted"],
682 url: "https://spdx.org/licenses/GPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000683}
684
685license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800686 name: "SPDX-license-identifier-GPL-1.0+",
687 conditions: ["restricted"],
688 url: "https://spdx.org/licenses/GPL-1.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000689}
690
691license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800692 name: "SPDX-license-identifier-GPL-1.0-only",
693 conditions: ["restricted"],
694 url: "https://spdx.org/licenses/GPL-1.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000695}
696
697license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800698 name: "SPDX-license-identifier-GPL-1.0-or-later",
699 conditions: ["restricted"],
700 url: "https://spdx.org/licenses/GPL-1.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000701}
702
703license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800704 name: "SPDX-license-identifier-GPL-2.0",
705 conditions: ["restricted"],
706 url: "https://spdx.org/licenses/GPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000707}
708
709license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800710 name: "SPDX-license-identifier-GPL-2.0+",
711 conditions: ["restricted"],
712 url: "https://spdx.org/licenses/GPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000713}
714
715license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800716 name: "SPDX-license-identifier-GPL-2.0-only",
717 conditions: ["restricted"],
718 url: "https://spdx.org/licenses/GPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000719}
720
721license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800722 name: "SPDX-license-identifier-GPL-2.0-or-later",
723 conditions: ["restricted"],
724 url: "https://spdx.org/licenses/GPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000725}
726
727license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800728 name: "SPDX-license-identifier-GPL-2.0-with-GCC-exception",
729 conditions: ["restricted"],
730 url: "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000731}
732
733license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800734 name: "SPDX-license-identifier-GPL-2.0-with-autoconf-exception",
735 conditions: ["restricted"],
736 url: "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000737}
738
739license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800740 name: "SPDX-license-identifier-GPL-2.0-with-bison-exception",
741 conditions: ["restricted"],
742 url: "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000743}
744
745license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800746 name: "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
747 conditions: ["restricted"],
748 url: "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000749}
750
751license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800752 name: "SPDX-license-identifier-GPL-2.0-with-font-exception",
753 conditions: ["restricted"],
754 url: "https://spdx.org/licenses/GPL-2.0-with-font-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000755}
756
757license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800758 name: "SPDX-license-identifier-GPL-3.0",
759 conditions: ["restricted"],
760 url: "https://spdx.org/licenses/GPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000761}
762
763license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800764 name: "SPDX-license-identifier-GPL-3.0+",
765 conditions: ["restricted"],
766 url: "https://spdx.org/licenses/GPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000767}
768
769license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800770 name: "SPDX-license-identifier-GPL-3.0-only",
771 conditions: ["restricted"],
772 url: "https://spdx.org/licenses/GPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000773}
774
775license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800776 name: "SPDX-license-identifier-GPL-3.0-or-later",
777 conditions: ["restricted"],
778 url: "https://spdx.org/licenses/GPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000779}
780
781license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800782 name: "SPDX-license-identifier-GPL-3.0-with-GCC-exception",
783 conditions: ["restricted"],
784 url: "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000785}
786
787license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800788 name: "SPDX-license-identifier-GPL-3.0-with-autoconf-exception",
789 conditions: ["restricted"],
790 url: "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000791}
792
793license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800794 name: "SPDX-license-identifier-GPL-with-classpath-exception",
795 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000796}
797
798license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800799 name: "SPDX-license-identifier-HPND",
800 conditions: ["notice"],
801 url: "https://spdx.org/licenses/HPND.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000802}
803
804license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800805 name: "SPDX-license-identifier-ICU",
806 conditions: ["notice"],
807 url: "https://spdx.org/licenses/ICU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000808}
809
810license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800811 name: "SPDX-license-identifier-ISC",
812 conditions: ["notice"],
813 url: "https://spdx.org/licenses/ISC.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000814}
815
816license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800817 name: "SPDX-license-identifier-JSON",
818 conditions: ["notice"],
819 url: "https://spdx.org/licenses/JSON.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000820}
821
822license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800823 name: "SPDX-license-identifier-LGPL",
824 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000825}
826
827license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800828 name: "SPDX-license-identifier-LGPL-2.0",
829 conditions: ["restricted"],
830 url: "https://spdx.org/licenses/LGPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000831}
832
833license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800834 name: "SPDX-license-identifier-LGPL-2.0+",
835 conditions: ["restricted"],
836 url: "https://spdx.org/licenses/LGPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000837}
838
839license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800840 name: "SPDX-license-identifier-LGPL-2.0-only",
841 conditions: ["restricted"],
842 url: "https://spdx.org/licenses/LGPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000843}
844
845license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800846 name: "SPDX-license-identifier-LGPL-2.0-or-later",
847 conditions: ["restricted"],
848 url: "https://spdx.org/licenses/LGPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000849}
850
851license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800852 name: "SPDX-license-identifier-LGPL-2.1",
853 conditions: ["restricted"],
854 url: "https://spdx.org/licenses/LGPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000855}
856
857license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800858 name: "SPDX-license-identifier-LGPL-2.1+",
859 conditions: ["restricted"],
860 url: "https://spdx.org/licenses/LGPL-2.1+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000861}
862
863license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800864 name: "SPDX-license-identifier-LGPL-2.1-only",
865 conditions: ["restricted"],
866 url: "https://spdx.org/licenses/LGPL-2.1-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000867}
868
869license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800870 name: "SPDX-license-identifier-LGPL-2.1-or-later",
871 conditions: ["restricted"],
872 url: "https://spdx.org/licenses/LGPL-2.1-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000873}
874
875license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800876 name: "SPDX-license-identifier-LGPL-3.0",
877 conditions: ["restricted"],
878 url: "https://spdx.org/licenses/LGPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000879}
880
881license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800882 name: "SPDX-license-identifier-LGPL-3.0+",
883 conditions: ["restricted"],
884 url: "https://spdx.org/licenses/LGPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000885}
886
887license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800888 name: "SPDX-license-identifier-LGPL-3.0-only",
889 conditions: ["restricted"],
890 url: "https://spdx.org/licenses/LGPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000891}
892
893license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800894 name: "SPDX-license-identifier-LGPL-3.0-or-later",
895 conditions: ["restricted"],
896 url: "https://spdx.org/licenses/LGPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000897}
898
899license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800900 name: "SPDX-license-identifier-LGPLLR",
901 conditions: ["restricted"],
902 url: "https://spdx.org/licenses/LGPLLR.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000903}
904
905license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800906 name: "SPDX-license-identifier-LPL-1.02",
907 conditions: ["notice"],
908 url: "https://spdx.org/licenses/LPL-1.02.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000909}
910
911license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800912 name: "SPDX-license-identifier-MIT",
913 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000914}
915
916license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800917 name: "SPDX-license-identifier-MIT-0",
918 conditions: ["notice"],
919 url: "https://spdx.org/licenses/MIT-0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000920}
921
922license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800923 name: "SPDX-license-identifier-MIT-CMU",
924 conditions: ["notice"],
925 url: "https://spdx.org/licenses/MIT-CMU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000926}
927
928license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800929 name: "SPDX-license-identifier-MIT-advertising",
930 conditions: ["notice"],
931 url: "https://spdx.org/licenses/MIT-advertising.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000932}
933
934license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800935 name: "SPDX-license-identifier-MIT-enna",
936 conditions: ["notice"],
937 url: "https://spdx.org/licenses/MIT-enna.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000938}
939
940license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800941 name: "SPDX-license-identifier-MIT-feh",
942 conditions: ["notice"],
943 url: "https://spdx.org/licenses/MIT-feh.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000944}
945
946license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800947 name: "SPDX-license-identifier-MITNFA",
948 conditions: ["notice"],
949 url: "https://spdx.org/licenses/MITNFA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000950}
951
952license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800953 name: "SPDX-license-identifier-MPL",
954 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000955}
956
957license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800958 name: "SPDX-license-identifier-MPL-1.0",
959 conditions: ["reciprocal"],
960 url: "https://spdx.org/licenses/MPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000961}
962
963license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800964 name: "SPDX-license-identifier-MPL-1.1",
965 conditions: ["reciprocal"],
966 url: "https://spdx.org/licenses/MPL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000967}
968
969license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800970 name: "SPDX-license-identifier-MPL-2.0",
971 conditions: ["reciprocal"],
972 url: "https://spdx.org/licenses/MPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000973}
974
975license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800976 name: "SPDX-license-identifier-MPL-2.0-no-copyleft-exception",
977 conditions: ["reciprocal"],
978 url: "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000979}
980
981license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800982 name: "SPDX-license-identifier-MS-PL",
983 conditions: ["notice"],
984 url: "https://spdx.org/licenses/MS-PL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000985}
986
987license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800988 name: "SPDX-license-identifier-MS-RL",
989 conditions: ["by_exception_only"],
990 url: "https://spdx.org/licenses/MS-RL.html",
991}
992
993license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800994 name: "SPDX-license-identifier-NCSA",
995 conditions: ["notice"],
996 url: "https://spdx.org/licenses/NCSA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000997}
998
999license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001000 name: "SPDX-license-identifier-OFL",
1001 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001002}
1003
1004license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001005 name: "SPDX-license-identifier-OFL-1.0",
1006 conditions: ["by_exception_only"],
1007 url: "https://spdx.org/licenses/OFL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001008}
1009
1010license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001011 name: "SPDX-license-identifier-OFL-1.0-RFN",
1012 conditions: ["by_exception_only"],
1013 url: "https://spdx.org/licenses/OFL-1.0-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001014}
1015
1016license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001017 name: "SPDX-license-identifier-OFL-1.0-no-RFN",
1018 conditions: ["by_exception_only"],
1019 url: "https://spdx.org/licenses/OFL-1.0-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001020}
1021
1022license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001023 name: "SPDX-license-identifier-OFL-1.1",
1024 conditions: ["by_exception_only"],
1025 url: "https://spdx.org/licenses/OFL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001026}
1027
1028license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001029 name: "SPDX-license-identifier-OFL-1.1-RFN",
1030 conditions: ["by_exception_only"],
1031 url: "https://spdx.org/licenses/OFL-1.1-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001032}
1033
1034license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001035 name: "SPDX-license-identifier-OFL-1.1-no-RFN",
1036 conditions: ["by_exception_only"],
1037 url: "https://spdx.org/licenses/OFL-1.1-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001038}
1039
1040license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001041 name: "SPDX-license-identifier-OpenSSL",
1042 conditions: ["notice"],
1043 url: "https://spdx.org/licenses/OpenSSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001044}
1045
1046license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001047 name: "SPDX-license-identifier-PSF-2.0",
1048 conditions: ["notice"],
1049 url: "https://spdx.org/licenses/PSF-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001050}
1051
1052license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001053 name: "SPDX-license-identifier-SISSL",
1054 conditions: [
1055 "by_exception_only",
1056 "not_allowed",
1057 ],
1058 url: "https://spdx.org/licenses/SISSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001059}
1060
1061license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001062 name: "SPDX-license-identifier-SISSL-1.2",
1063 conditions: [
1064 "by_exception_only",
1065 "not_allowed",
1066 ],
1067 url: "https://spdx.org/licenses/SISSL-1.2.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001068}
1069
1070license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001071 name: "SPDX-license-identifier-SPL-1.0",
1072 conditions: [
1073 "by_exception_only",
1074 "reciprocal",
1075 ],
1076 url: "https://spdx.org/licenses/SPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001077}
1078
1079license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001080 name: "SPDX-license-identifier-SSPL",
1081 conditions: [
1082 "by_exception_only",
1083 "not_allowed",
1084 ],
1085 url: "https://spdx.org/licenses/SSPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001086}
1087
1088license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001089 name: "SPDX-license-identifier-UPL-1.0",
1090 conditions: ["notice"],
1091 url: "https://spdx.org/licenses/UPL-1.-.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001092}
1093
1094license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001095 name: "SPDX-license-identifier-Unicode-DFS",
1096 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001097}
1098
1099license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001100 name: "SPDX-license-identifier-Unicode-DFS-2015",
1101 conditions: ["notice"],
1102 url: "https://spdx.org/licenses/Unicode-DFS-2015.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001103}
1104
1105license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001106 name: "SPDX-license-identifier-Unicode-DFS-2016",
1107 conditions: ["notice"],
1108 url: "https://spdx.org/licenses/Unicode-DFS-2016.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001109}
1110
1111license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001112 name: "SPDX-license-identifier-Unlicense",
1113 conditions: ["unencumbered"],
1114 url: "https://spdx.org/licenses/Unlicense.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001115}
1116
1117license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001118 name: "SPDX-license-identifier-W3C",
1119 conditions: ["notice"],
1120 url: "https://spdx.org/licenses/W3C.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001121}
1122
1123license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001124 name: "SPDX-license-identifier-W3C-19980720",
1125 conditions: ["notice"],
1126 url: "https://spdx.org/licenses/W3C-19980720.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001127}
1128
1129license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001130 name: "SPDX-license-identifier-W3C-20150513",
1131 conditions: ["notice"],
1132 url: "https://spdx.org/licenses/W3C-20150513.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001133}
1134
1135license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001136 name: "SPDX-license-identifier-WTFPL",
Bob Badour7a105302021-02-02 12:08:28 -08001137 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -08001138 url: "https://spdx.org/licenses/WTFPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001139}
1140
1141license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001142 name: "SPDX-license-identifier-Watcom-1.0",
1143 conditions: [
1144 "by_exception_only",
1145 "not_allowed",
1146 ],
1147 url: "https://spdx.org/licenses/Watcom-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001148}
1149
1150license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001151 name: "SPDX-license-identifier-Xnet",
1152 conditions: ["notice"],
1153 url: "https://spdx.org/licenses/Xnet.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001154}
1155
1156license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001157 name: "SPDX-license-identifier-ZPL",
1158 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001159}
1160
1161license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001162 name: "SPDX-license-identifier-ZPL-1.1",
1163 conditions: ["notice"],
1164 url: "https://spdx.org/licenses/ZPL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001165}
1166
1167license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001168 name: "SPDX-license-identifier-ZPL-2.0",
1169 conditions: ["notice"],
1170 url: "https://spdx.org/licenses/ZPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001171}
1172
1173license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001174 name: "SPDX-license-identifier-ZPL-2.1",
1175 conditions: ["notice"],
1176 url: "https://spdx.org/licenses/ZPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001177}
1178
1179license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001180 name: "SPDX-license-identifier-Zend-2.0",
1181 conditions: ["notice"],
1182 url: "https://spdx.org/licenses/Zend-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001183}
1184
1185license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001186 name: "SPDX-license-identifier-Zlib",
1187 conditions: ["notice"],
1188 url: "https://spdx.org/licenses/Zlib.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001189}
1190
1191license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001192 name: "SPDX-license-identifier-libtiff",
1193 conditions: ["notice"],
1194 url: "https://spdx.org/licenses/libtiff.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001195}
1196
Bob Badourb80dfee2021-01-07 03:34:31 +00001197// Legacy license kinds -- do not add new references -- use an spdx kind instead.
1198license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001199 name: "legacy_unknown",
1200 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001201}
1202
1203license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001204 name: "legacy_unencumbered",
1205 conditions: ["unencumbered"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001206}
1207
1208license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001209 name: "legacy_permissive",
1210 conditions: ["permissive"],
Bob Badour73056ea2021-01-21 08:53:58 -08001211}
1212
1213license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001214 name: "legacy_notice",
1215 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001216}
1217
1218license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001219 name: "legacy_reciprocal",
1220 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001221}
1222
1223license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001224 name: "legacy_restricted",
1225 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001226}
1227
1228license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001229 name: "legacy_by_exception_only",
1230 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001231}
1232
1233license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -08001234 name: "legacy_not_a_contribution",
1235 conditions: [
1236 "by_exception_only",
1237 "not_allowed",
1238 ],
1239}
1240
1241license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001242 name: "legacy_not_allowed",
1243 conditions: [
1244 "by_exception_only",
1245 "not_allowed",
1246 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001247}
1248
1249license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001250 name: "legacy_proprietary",
1251 conditions: [
1252 "by_exception_only",
1253 "not_allowed",
1254 "proprietary",
1255 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001256}