blob: f4a76d7e19877ca99a8b774a0fb4b7b9210a1da4 [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",
310 conditions: [
311 "by_exception_only",
312 "not_allowed",
313 ],
314 url: "https://spdx.org/licenses/Beerware.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000315}
316
317license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800318 name: "SPDX-license-identifier-CC-BY",
319 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000320}
321
322license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800323 name: "SPDX-license-identifier-CC-BY-1.0",
324 conditions: ["notice"],
325 url: "https://spdx.org/licenses/CC-BY-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000326}
327
328license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800329 name: "SPDX-license-identifier-CC-BY-2.0",
330 conditions: ["notice"],
331 url: "https://spdx.org/licenses/CC-BY-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000332}
333
334license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800335 name: "SPDX-license-identifier-CC-BY-2.5",
336 conditions: ["notice"],
337 url: "https://spdx.org/licenses/CC-BY-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000338}
339
340license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800341 name: "SPDX-license-identifier-CC-BY-3.0",
342 conditions: ["notice"],
343 url: "https://spdx.org/licenses/CC-BY-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000344}
345
346license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800347 name: "SPDX-license-identifier-CC-BY-4.0",
348 conditions: ["notice"],
349 url: "https://spdx.org/licenses/CC-BY-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000350}
351
352license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800353 name: "SPDX-license-identifier-CC-BY-NC",
354 conditions: [
355 "by_exception_only",
356 "not_allowed",
357 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000358}
359
360license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800361 name: "SPDX-license-identifier-CC-BY-NC-1.0",
362 conditions: [
363 "by_exception_only",
364 "not_allowed",
365 ],
366 url: "https://spdx.org/licenses/CC-BY-NC-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000367}
368
369license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800370 name: "SPDX-license-identifier-CC-BY-NC-2.0",
371 conditions: [
372 "by_exception_only",
373 "not_allowed",
374 ],
375 url: "https://spdx.org/licenses/CC-BY-NC-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000376}
377
378license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800379 name: "SPDX-license-identifier-CC-BY-NC-2.5",
380 conditions: [
381 "by_exception_only",
382 "not_allowed",
383 ],
384 url: "https://spdx.org/licenses/CC-BY-NC-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000385}
386
387license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800388 name: "SPDX-license-identifier-CC-BY-NC-3.0",
389 conditions: [
390 "by_exception_only",
391 "not_allowed",
392 ],
393 url: "https://spdx.org/licenses/CC-BY-NC-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000394}
395
396license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800397 name: "SPDX-license-identifier-CC-BY-NC-4.0",
398 conditions: [
399 "by_exception_only",
400 "not_allowed",
401 ],
402 url: "https://spdx.org/licenses/CC-BY-NC-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000403}
404
405license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800406 name: "SPDX-license-identifier-CC-BY-NC-ND-1.0",
407 conditions: [
408 "by_exception_only",
409 "not_allowed",
410 ],
411 url: "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000412}
413
414license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800415 name: "SPDX-license-identifier-CC-BY-NC-ND-2.0",
416 conditions: [
417 "by_exception_only",
418 "not_allowed",
419 ],
420 url: "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000421}
422
423license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800424 name: "SPDX-license-identifier-CC-BY-NC-ND-2.5",
425 conditions: [
426 "by_exception_only",
427 "not_allowed",
428 ],
429 url: "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000430}
431
432license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800433 name: "SPDX-license-identifier-CC-BY-NC-ND-3.0",
434 conditions: [
435 "by_exception_only",
436 "not_allowed",
437 ],
438 url: "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000439}
440
441license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800442 name: "SPDX-license-identifier-CC-BY-NC-ND-4.0",
443 conditions: [
444 "by_exception_only",
445 "not_allowed",
446 ],
447 url: "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000448}
449
450license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800451 name: "SPDX-license-identifier-CC-BY-NC-SA-1.0",
452 conditions: [
453 "by_exception_only",
454 "not_allowed",
455 ],
456 url: "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000457}
458
459license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800460 name: "SPDX-license-identifier-CC-BY-NC-SA-2.0",
461 conditions: [
462 "by_exception_only",
463 "not_allowed",
464 ],
465 url: "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000466}
467
468license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800469 name: "SPDX-license-identifier-CC-BY-NC-SA-2.5",
470 conditions: [
471 "by_exception_only",
472 "not_allowed",
473 ],
474 url: "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000475}
476
477license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800478 name: "SPDX-license-identifier-CC-BY-NC-SA-3.0",
479 conditions: [
480 "by_exception_only",
481 "not_allowed",
482 ],
483 url: "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000484}
485
486license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800487 name: "SPDX-license-identifier-CC-BY-NC-SA-4.0",
488 conditions: [
489 "by_exception_only",
490 "not_allowed",
491 ],
492 url: "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000493}
494
495license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800496 name: "SPDX-license-identifier-CC-BY-ND",
497 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000498}
499
500license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800501 name: "SPDX-license-identifier-CC-BY-ND-1.0",
502 conditions: ["restricted"],
503 url: "https://spdx.org/licenses/CC-BY-ND-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000504}
505
506license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800507 name: "SPDX-license-identifier-CC-BY-ND-2.0",
508 conditions: ["restricted"],
509 url: "https://spdx.org/licenses/CC-BY-ND-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000510}
511
512license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800513 name: "SPDX-license-identifier-CC-BY-ND-2.5",
514 conditions: ["restricted"],
515 url: "https://spdx.org/licenses/CC-BY-ND-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000516}
517
518license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800519 name: "SPDX-license-identifier-CC-BY-ND-3.0",
520 conditions: ["restricted"],
521 url: "https://spdx.org/licenses/CC-BY-ND-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000522}
523
524license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800525 name: "SPDX-license-identifier-CC-BY-ND-4.0",
526 conditions: ["restricted"],
527 url: "https://spdx.org/licenses/CC-BY-ND-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000528}
529
530license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800531 name: "SPDX-license-identifier-CC-BY-SA",
532 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000533}
534
535license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800536 name: "SPDX-license-identifier-CC-BY-SA-1.0",
537 conditions: ["restricted"],
538 url: "https://spdx.org/licenses/CC-BY-SA-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000539}
540
541license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800542 name: "SPDX-license-identifier-CC-BY-SA-2.0",
543 conditions: ["restricted"],
544 url: "https://spdx.org/licenses/CC-BY-SA-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000545}
546
547license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800548 name: "SPDX-license-identifier-CC-BY-SA-2.5",
549 conditions: ["restricted"],
550 url: "https://spdx.org/licenses/CC-BY-SA-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000551}
552
553license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800554 name: "SPDX-license-identifier-CC-BY-SA-3.0",
555 conditions: ["restricted"],
556 url: "https://spdx.org/licenses/CC-BY-SA-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000557}
558
559license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800560 name: "SPDX-license-identifier-CC-BY-SA-4.0",
561 conditions: ["restricted"],
562 url: "https://spdx.org/licenses/CC-BY-SA-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000563}
564
565license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800566 name: "SPDX-license-identifier-CC-BY-SA-ND",
567 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000568}
569
570license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800571 name: "SPDX-license-identifier-CC0-1.0",
572 conditions: ["unencumbered"],
573 url: "https://spdx.org/licenses/CC0-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000574}
575
576license_kind {
Bob Badourf34e4412021-01-26 00:02:44 -0800577 name: "SPDX-license-identifier-CDDL",
578 conditions: ["reciprocal"],
579}
580
581license_kind {
582 name: "SPDX-license-identifier-CDDL-1.0",
583 conditions: ["reciprocal"],
584 url: "https://spdx.org/licenses/CDLL-1.0.html",
585}
586
587license_kind {
588 name: "SPDX-license-identifier-CDDL-1.1",
589 conditions: ["reciprocal"],
590 url: "https://spdx.org/licenses/CDLL-1.1.html",
591}
592
593license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800594 name: "SPDX-license-identifier-CPAL-1.0",
595 conditions: [
596 "by_exception_only",
597 "not_allowed",
598 ],
599 url: "https://spdx.org/licenses/CPAL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000600}
601
602license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800603 name: "SPDX-license-identifier-CPL-1.0",
604 conditions: ["reciprocal"],
605 url: "https://spdx.org/licenses/CPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000606}
607
608license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800609 name: "SPDX-license-identifier-EPL",
610 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000611}
612
613license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800614 name: "SPDX-license-identifier-EPL-1.0",
615 conditions: ["reciprocal"],
616 url: "https://spdx.org/licenses/EPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000617}
618
619license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800620 name: "SPDX-license-identifier-EPL-2.0",
621 conditions: ["reciprocal"],
622 url: "https://spdx.org/licenses/EPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000623}
624
625license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800626 name: "SPDX-license-identifier-EUPL",
627 conditions: [
628 "by_exception_only",
629 "not_allowed",
630 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000631}
632
633license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800634 name: "SPDX-license-identifier-EUPL-1.0",
635 conditions: [
636 "by_exception_only",
637 "not_allowed",
638 ],
639 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000640}
641
642license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800643 name: "SPDX-license-identifier-EUPL-1.1",
644 conditions: [
645 "by_exception_only",
646 "not_allowed",
647 ],
648 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000649}
650
651license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800652 name: "SPDX-license-identifier-EUPL-1.2",
653 conditions: [
654 "by_exception_only",
655 "not_allowed",
656 ],
657 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000658}
659
660license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800661 name: "SPDX-license-identifier-FSFAP",
662 conditions: ["notice"],
663 url: "https://spdx.org/licenses/FSFAP",
664}
665
666license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800667 name: "SPDX-license-identifier-FTL",
668 conditions: ["notice"],
669 url: "https://spdx.org/licenses/FTL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000670}
671
672license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800673 name: "SPDX-license-identifier-GFDL",
674 conditions: ["by_exception_only"],
675}
676
677license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800678 name: "SPDX-license-identifier-GPL",
679 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000680}
681
682license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800683 name: "SPDX-license-identifier-GPL-1.0",
684 conditions: ["restricted"],
685 url: "https://spdx.org/licenses/GPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000686}
687
688license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800689 name: "SPDX-license-identifier-GPL-1.0+",
690 conditions: ["restricted"],
691 url: "https://spdx.org/licenses/GPL-1.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000692}
693
694license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800695 name: "SPDX-license-identifier-GPL-1.0-only",
696 conditions: ["restricted"],
697 url: "https://spdx.org/licenses/GPL-1.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000698}
699
700license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800701 name: "SPDX-license-identifier-GPL-1.0-or-later",
702 conditions: ["restricted"],
703 url: "https://spdx.org/licenses/GPL-1.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000704}
705
706license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800707 name: "SPDX-license-identifier-GPL-2.0",
708 conditions: ["restricted"],
709 url: "https://spdx.org/licenses/GPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000710}
711
712license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800713 name: "SPDX-license-identifier-GPL-2.0+",
714 conditions: ["restricted"],
715 url: "https://spdx.org/licenses/GPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000716}
717
718license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800719 name: "SPDX-license-identifier-GPL-2.0-only",
720 conditions: ["restricted"],
721 url: "https://spdx.org/licenses/GPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000722}
723
724license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800725 name: "SPDX-license-identifier-GPL-2.0-or-later",
726 conditions: ["restricted"],
727 url: "https://spdx.org/licenses/GPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000728}
729
730license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800731 name: "SPDX-license-identifier-GPL-2.0-with-GCC-exception",
732 conditions: ["restricted"],
733 url: "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000734}
735
736license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800737 name: "SPDX-license-identifier-GPL-2.0-with-autoconf-exception",
738 conditions: ["restricted"],
739 url: "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000740}
741
742license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800743 name: "SPDX-license-identifier-GPL-2.0-with-bison-exception",
744 conditions: ["restricted"],
745 url: "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000746}
747
748license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800749 name: "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
750 conditions: ["restricted"],
751 url: "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000752}
753
754license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800755 name: "SPDX-license-identifier-GPL-2.0-with-font-exception",
756 conditions: ["restricted"],
757 url: "https://spdx.org/licenses/GPL-2.0-with-font-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000758}
759
760license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800761 name: "SPDX-license-identifier-GPL-3.0",
762 conditions: ["restricted"],
763 url: "https://spdx.org/licenses/GPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000764}
765
766license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800767 name: "SPDX-license-identifier-GPL-3.0+",
768 conditions: ["restricted"],
769 url: "https://spdx.org/licenses/GPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000770}
771
772license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800773 name: "SPDX-license-identifier-GPL-3.0-only",
774 conditions: ["restricted"],
775 url: "https://spdx.org/licenses/GPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000776}
777
778license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800779 name: "SPDX-license-identifier-GPL-3.0-or-later",
780 conditions: ["restricted"],
781 url: "https://spdx.org/licenses/GPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000782}
783
784license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800785 name: "SPDX-license-identifier-GPL-3.0-with-GCC-exception",
786 conditions: ["restricted"],
787 url: "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000788}
789
790license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800791 name: "SPDX-license-identifier-GPL-3.0-with-autoconf-exception",
792 conditions: ["restricted"],
793 url: "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000794}
795
796license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800797 name: "SPDX-license-identifier-GPL-with-classpath-exception",
798 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000799}
800
801license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800802 name: "SPDX-license-identifier-HPND",
803 conditions: ["notice"],
804 url: "https://spdx.org/licenses/HPND.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000805}
806
807license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800808 name: "SPDX-license-identifier-ICU",
809 conditions: ["notice"],
810 url: "https://spdx.org/licenses/ICU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000811}
812
813license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800814 name: "SPDX-license-identifier-ISC",
815 conditions: ["notice"],
816 url: "https://spdx.org/licenses/ISC.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000817}
818
819license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800820 name: "SPDX-license-identifier-JSON",
821 conditions: ["notice"],
822 url: "https://spdx.org/licenses/JSON.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000823}
824
825license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800826 name: "SPDX-license-identifier-LGPL",
827 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000828}
829
830license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800831 name: "SPDX-license-identifier-LGPL-2.0",
832 conditions: ["restricted"],
833 url: "https://spdx.org/licenses/LGPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000834}
835
836license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800837 name: "SPDX-license-identifier-LGPL-2.0+",
838 conditions: ["restricted"],
839 url: "https://spdx.org/licenses/LGPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000840}
841
842license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800843 name: "SPDX-license-identifier-LGPL-2.0-only",
844 conditions: ["restricted"],
845 url: "https://spdx.org/licenses/LGPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000846}
847
848license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800849 name: "SPDX-license-identifier-LGPL-2.0-or-later",
850 conditions: ["restricted"],
851 url: "https://spdx.org/licenses/LGPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000852}
853
854license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800855 name: "SPDX-license-identifier-LGPL-2.1",
856 conditions: ["restricted"],
857 url: "https://spdx.org/licenses/LGPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000858}
859
860license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800861 name: "SPDX-license-identifier-LGPL-2.1+",
862 conditions: ["restricted"],
863 url: "https://spdx.org/licenses/LGPL-2.1+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000864}
865
866license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800867 name: "SPDX-license-identifier-LGPL-2.1-only",
868 conditions: ["restricted"],
869 url: "https://spdx.org/licenses/LGPL-2.1-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000870}
871
872license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800873 name: "SPDX-license-identifier-LGPL-2.1-or-later",
874 conditions: ["restricted"],
875 url: "https://spdx.org/licenses/LGPL-2.1-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000876}
877
878license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800879 name: "SPDX-license-identifier-LGPL-3.0",
880 conditions: ["restricted"],
881 url: "https://spdx.org/licenses/LGPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000882}
883
884license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800885 name: "SPDX-license-identifier-LGPL-3.0+",
886 conditions: ["restricted"],
887 url: "https://spdx.org/licenses/LGPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000888}
889
890license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800891 name: "SPDX-license-identifier-LGPL-3.0-only",
892 conditions: ["restricted"],
893 url: "https://spdx.org/licenses/LGPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000894}
895
896license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800897 name: "SPDX-license-identifier-LGPL-3.0-or-later",
898 conditions: ["restricted"],
899 url: "https://spdx.org/licenses/LGPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000900}
901
902license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800903 name: "SPDX-license-identifier-LGPLLR",
904 conditions: ["restricted"],
905 url: "https://spdx.org/licenses/LGPLLR.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000906}
907
908license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800909 name: "SPDX-license-identifier-LPL-1.02",
910 conditions: ["notice"],
911 url: "https://spdx.org/licenses/LPL-1.02.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000912}
913
914license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800915 name: "SPDX-license-identifier-MIT",
916 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000917}
918
919license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800920 name: "SPDX-license-identifier-MIT-0",
921 conditions: ["notice"],
922 url: "https://spdx.org/licenses/MIT-0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000923}
924
925license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800926 name: "SPDX-license-identifier-MIT-CMU",
927 conditions: ["notice"],
928 url: "https://spdx.org/licenses/MIT-CMU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000929}
930
931license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800932 name: "SPDX-license-identifier-MIT-advertising",
933 conditions: ["notice"],
934 url: "https://spdx.org/licenses/MIT-advertising.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000935}
936
937license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800938 name: "SPDX-license-identifier-MIT-enna",
939 conditions: ["notice"],
940 url: "https://spdx.org/licenses/MIT-enna.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000941}
942
943license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800944 name: "SPDX-license-identifier-MIT-feh",
945 conditions: ["notice"],
946 url: "https://spdx.org/licenses/MIT-feh.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000947}
948
949license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800950 name: "SPDX-license-identifier-MITNFA",
951 conditions: ["notice"],
952 url: "https://spdx.org/licenses/MITNFA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000953}
954
955license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800956 name: "SPDX-license-identifier-MPL",
957 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000958}
959
960license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800961 name: "SPDX-license-identifier-MPL-1.0",
962 conditions: ["reciprocal"],
963 url: "https://spdx.org/licenses/MPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000964}
965
966license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800967 name: "SPDX-license-identifier-MPL-1.1",
968 conditions: ["reciprocal"],
969 url: "https://spdx.org/licenses/MPL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000970}
971
972license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800973 name: "SPDX-license-identifier-MPL-2.0",
974 conditions: ["reciprocal"],
975 url: "https://spdx.org/licenses/MPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000976}
977
978license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800979 name: "SPDX-license-identifier-MPL-2.0-no-copyleft-exception",
980 conditions: ["reciprocal"],
981 url: "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000982}
983
984license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800985 name: "SPDX-license-identifier-MS-PL",
986 conditions: ["notice"],
987 url: "https://spdx.org/licenses/MS-PL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000988}
989
990license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800991 name: "SPDX-license-identifier-MS-RL",
992 conditions: ["by_exception_only"],
993 url: "https://spdx.org/licenses/MS-RL.html",
994}
995
996license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800997 name: "SPDX-license-identifier-NCSA",
998 conditions: ["notice"],
999 url: "https://spdx.org/licenses/NCSA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001000}
1001
1002license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001003 name: "SPDX-license-identifier-OFL",
1004 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001005}
1006
1007license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001008 name: "SPDX-license-identifier-OFL-1.0",
1009 conditions: ["by_exception_only"],
1010 url: "https://spdx.org/licenses/OFL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001011}
1012
1013license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001014 name: "SPDX-license-identifier-OFL-1.0-RFN",
1015 conditions: ["by_exception_only"],
1016 url: "https://spdx.org/licenses/OFL-1.0-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001017}
1018
1019license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001020 name: "SPDX-license-identifier-OFL-1.0-no-RFN",
1021 conditions: ["by_exception_only"],
1022 url: "https://spdx.org/licenses/OFL-1.0-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001023}
1024
1025license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001026 name: "SPDX-license-identifier-OFL-1.1",
1027 conditions: ["by_exception_only"],
1028 url: "https://spdx.org/licenses/OFL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001029}
1030
1031license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001032 name: "SPDX-license-identifier-OFL-1.1-RFN",
1033 conditions: ["by_exception_only"],
1034 url: "https://spdx.org/licenses/OFL-1.1-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001035}
1036
1037license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001038 name: "SPDX-license-identifier-OFL-1.1-no-RFN",
1039 conditions: ["by_exception_only"],
1040 url: "https://spdx.org/licenses/OFL-1.1-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001041}
1042
1043license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001044 name: "SPDX-license-identifier-OpenSSL",
1045 conditions: ["notice"],
1046 url: "https://spdx.org/licenses/OpenSSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001047}
1048
1049license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001050 name: "SPDX-license-identifier-PSF-2.0",
1051 conditions: ["notice"],
1052 url: "https://spdx.org/licenses/PSF-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001053}
1054
1055license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001056 name: "SPDX-license-identifier-SISSL",
1057 conditions: [
1058 "by_exception_only",
1059 "not_allowed",
1060 ],
1061 url: "https://spdx.org/licenses/SISSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001062}
1063
1064license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001065 name: "SPDX-license-identifier-SISSL-1.2",
1066 conditions: [
1067 "by_exception_only",
1068 "not_allowed",
1069 ],
1070 url: "https://spdx.org/licenses/SISSL-1.2.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001071}
1072
1073license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001074 name: "SPDX-license-identifier-SPL-1.0",
1075 conditions: [
1076 "by_exception_only",
1077 "reciprocal",
1078 ],
1079 url: "https://spdx.org/licenses/SPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001080}
1081
1082license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001083 name: "SPDX-license-identifier-SSPL",
1084 conditions: [
1085 "by_exception_only",
1086 "not_allowed",
1087 ],
1088 url: "https://spdx.org/licenses/SSPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001089}
1090
1091license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001092 name: "SPDX-license-identifier-UPL-1.0",
1093 conditions: ["notice"],
1094 url: "https://spdx.org/licenses/UPL-1.-.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001095}
1096
1097license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001098 name: "SPDX-license-identifier-Unicode-DFS",
1099 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001100}
1101
1102license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001103 name: "SPDX-license-identifier-Unicode-DFS-2015",
1104 conditions: ["notice"],
1105 url: "https://spdx.org/licenses/Unicode-DFS-2015.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001106}
1107
1108license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001109 name: "SPDX-license-identifier-Unicode-DFS-2016",
1110 conditions: ["notice"],
1111 url: "https://spdx.org/licenses/Unicode-DFS-2016.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001112}
1113
1114license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001115 name: "SPDX-license-identifier-Unlicense",
1116 conditions: ["unencumbered"],
1117 url: "https://spdx.org/licenses/Unlicense.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001118}
1119
1120license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001121 name: "SPDX-license-identifier-W3C",
1122 conditions: ["notice"],
1123 url: "https://spdx.org/licenses/W3C.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001124}
1125
1126license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001127 name: "SPDX-license-identifier-W3C-19980720",
1128 conditions: ["notice"],
1129 url: "https://spdx.org/licenses/W3C-19980720.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001130}
1131
1132license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001133 name: "SPDX-license-identifier-W3C-20150513",
1134 conditions: ["notice"],
1135 url: "https://spdx.org/licenses/W3C-20150513.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001136}
1137
1138license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001139 name: "SPDX-license-identifier-WTFPL",
1140 conditions: [
1141 "by_exception_only",
1142 "not_allowed",
1143 ],
1144 url: "https://spdx.org/licenses/WTFPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001145}
1146
1147license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001148 name: "SPDX-license-identifier-Watcom-1.0",
1149 conditions: [
1150 "by_exception_only",
1151 "not_allowed",
1152 ],
1153 url: "https://spdx.org/licenses/Watcom-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001154}
1155
1156license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001157 name: "SPDX-license-identifier-Xnet",
1158 conditions: ["notice"],
1159 url: "https://spdx.org/licenses/Xnet.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001160}
1161
1162license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001163 name: "SPDX-license-identifier-ZPL",
1164 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001165}
1166
1167license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001168 name: "SPDX-license-identifier-ZPL-1.1",
1169 conditions: ["notice"],
1170 url: "https://spdx.org/licenses/ZPL-1.1.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.0",
1175 conditions: ["notice"],
1176 url: "https://spdx.org/licenses/ZPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001177}
1178
1179license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001180 name: "SPDX-license-identifier-ZPL-2.1",
1181 conditions: ["notice"],
1182 url: "https://spdx.org/licenses/ZPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001183}
1184
1185license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001186 name: "SPDX-license-identifier-Zend-2.0",
1187 conditions: ["notice"],
1188 url: "https://spdx.org/licenses/Zend-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001189}
1190
1191license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001192 name: "SPDX-license-identifier-Zlib",
1193 conditions: ["notice"],
1194 url: "https://spdx.org/licenses/Zlib.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001195}
1196
1197license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001198 name: "SPDX-license-identifier-libtiff",
1199 conditions: ["notice"],
1200 url: "https://spdx.org/licenses/libtiff.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001201}
1202
Bob Badourb80dfee2021-01-07 03:34:31 +00001203// Legacy license kinds -- do not add new references -- use an spdx kind instead.
1204license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001205 name: "legacy_unknown",
1206 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001207}
1208
1209license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001210 name: "legacy_unencumbered",
1211 conditions: ["unencumbered"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001212}
1213
1214license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001215 name: "legacy_permissive",
1216 conditions: ["permissive"],
Bob Badour73056ea2021-01-21 08:53:58 -08001217}
1218
1219license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001220 name: "legacy_notice",
1221 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001222}
1223
1224license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001225 name: "legacy_reciprocal",
1226 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001227}
1228
1229license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001230 name: "legacy_restricted",
1231 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001232}
1233
1234license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001235 name: "legacy_by_exception_only",
1236 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001237}
1238
1239license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -08001240 name: "legacy_not_a_contribution",
1241 conditions: [
1242 "by_exception_only",
1243 "not_allowed",
1244 ],
1245}
1246
1247license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001248 name: "legacy_not_allowed",
1249 conditions: [
1250 "by_exception_only",
1251 "not_allowed",
1252 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001253}
1254
1255license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001256 name: "legacy_proprietary",
1257 conditions: [
1258 "by_exception_only",
1259 "not_allowed",
1260 "proprietary",
1261 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001262}