blob: d7fac90e3fb3282cd6b9b7a8b4413fcacd212558 [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 Badourb545c5f2021-01-23 14:35:55 -0800128 name: "SPDX-license-identifier-Apache",
129 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000130}
131
132license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800133 name: "SPDX-license-identifier-Apache-1.0",
134 conditions: ["notice"],
135 url: "https://spdx.org/licenses/Apache-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000136}
137
138license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800139 name: "SPDX-license-identifier-Apache-1.1",
140 conditions: ["notice"],
141 url: "https://spdx.org/licenses/Apache-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000142}
143
144license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800145 name: "SPDX-license-identifier-Apache-2.0",
146 conditions: ["notice"],
147 url: "https://spdx.org/licenses/Apache-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000148}
149
150license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800151 name: "SPDX-license-identifier-Artistic",
152 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000153}
154
155license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800156 name: "SPDX-license-identifier-Artistic-1.0",
157 conditions: ["notice"],
158 url: "https://spdx.org/licenses/Artistic-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000159}
160
161license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800162 name: "SPDX-license-identifier-Artistic-1.0-Perl",
163 conditions: ["notice"],
164 url: "https://spdx.org/licenses/Artistic-1.0-Perl.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000165}
166
167license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800168 name: "SPDX-license-identifier-Artistic-1.0-cl8",
169 conditions: ["notice"],
170 url: "https://spdx.org/licenses/Artistic-1.0-cl8.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000171}
172
173license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800174 name: "SPDX-license-identifier-Artistic-2.0",
175 conditions: ["notice"],
176 url: "https://spdx.org/licenses/Artistic-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000177}
178
179license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800180 name: "SPDX-license-identifier-BSD",
181 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000182}
183
184license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800185 name: "SPDX-license-identifier-BSD-1-Clause",
186 conditions: ["notice"],
187 url: "https://spdx.org/licenses/BSD-1-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000188}
189
190license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800191 name: "SPDX-license-identifier-BSD-2-Clause",
192 conditions: ["notice"],
193 url: "https://spdx.org/licenses/BSD-2-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000194}
195
196license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800197 name: "SPDX-license-identifier-BSD-2-Clause-FreeBSD",
198 conditions: ["notice"],
199 url: "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000200}
201
202license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800203 name: "SPDX-license-identifier-BSD-2-Clause-NetBSD",
204 conditions: ["notice"],
205 url: "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000206}
207
208license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800209 name: "SPDX-license-identifier-BSD-2-Clause-Patent",
210 conditions: ["notice"],
211 url: "https://spdx.org/licenses/BSD-2-Clause-Patent.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000212}
213
214license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800215 name: "SPDX-license-identifier-BSD-3-Clause",
216 conditions: ["notice"],
217 url: "https://spdx.org/licenses/BSD-3-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000218}
219
220license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800221 name: "SPDX-license-identifier-BSD-3-Clause-Attribution",
222 conditions: ["notice"],
223 url: "https://spdx.org/licenses/BSD-3-Clause-Attribution.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000224}
225
226license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800227 name: "SPDX-license-identifier-BSD-3-Clause-Clear",
228 conditions: ["notice"],
229 url: "https://spdx.org/licenses/BSD-3-Clause-Clear.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000230}
231
232license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800233 name: "SPDX-license-identifier-BSD-3-Clause-LBNL",
234 conditions: ["notice"],
235 url: "https://spdx.org/licenses/BSD-3-Clause-LBNL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000236}
237
238license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800239 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-License",
240 conditions: ["notice"],
241 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000242}
243
244license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800245 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-License-2014",
246 conditions: ["notice"],
247 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000248}
249
250license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800251 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-Warranty",
252 conditions: ["notice"],
253 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000254}
255
256license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800257 name: "SPDX-license-identifier-BSD-3-Clause-Open-MPI",
258 conditions: ["notice"],
259 url: "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000260}
261
262license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800263 name: "SPDX-license-identifier-BSD-4-Clause",
264 conditions: ["notice"],
265 url: "https://spdx.org/licenses/BSD-4-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000266}
267
268license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800269 name: "SPDX-license-identifier-BSD-4-Clause-UC",
270 conditions: ["notice"],
271 url: "https://spdx.org/licenses/BSD-4-Clause-UC.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000272}
273
274license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800275 name: "SPDX-license-identifier-BSD-Protection",
276 conditions: ["notice"],
277 url: "https://spdx.org/licenses/BSD-Protection.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000278}
279
280license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800281 name: "SPDX-license-identifier-BSD-Source-Code",
282 conditions: ["notice"],
283 url: "https://spdx.org/licenses/BSD-Source-Code.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000284}
285
286license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800287 name: "SPDX-license-identifier-BSL-1.0",
288 conditions: ["notice"],
289 url: "https://spdx.org/licenses/BSL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000290}
291
292license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800293 name: "SPDX-license-identifier-Beerware",
294 conditions: [
295 "by_exception_only",
296 "not_allowed",
297 ],
298 url: "https://spdx.org/licenses/Beerware.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000299}
300
301license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800302 name: "SPDX-license-identifier-CC-BY",
303 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000304}
305
306license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800307 name: "SPDX-license-identifier-CC-BY-1.0",
308 conditions: ["notice"],
309 url: "https://spdx.org/licenses/CC-BY-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000310}
311
312license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800313 name: "SPDX-license-identifier-CC-BY-2.0",
314 conditions: ["notice"],
315 url: "https://spdx.org/licenses/CC-BY-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000316}
317
318license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800319 name: "SPDX-license-identifier-CC-BY-2.5",
320 conditions: ["notice"],
321 url: "https://spdx.org/licenses/CC-BY-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000322}
323
324license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800325 name: "SPDX-license-identifier-CC-BY-3.0",
326 conditions: ["notice"],
327 url: "https://spdx.org/licenses/CC-BY-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000328}
329
330license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800331 name: "SPDX-license-identifier-CC-BY-4.0",
332 conditions: ["notice"],
333 url: "https://spdx.org/licenses/CC-BY-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000334}
335
336license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800337 name: "SPDX-license-identifier-CC-BY-NC",
338 conditions: [
339 "by_exception_only",
340 "not_allowed",
341 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000342}
343
344license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800345 name: "SPDX-license-identifier-CC-BY-NC-1.0",
346 conditions: [
347 "by_exception_only",
348 "not_allowed",
349 ],
350 url: "https://spdx.org/licenses/CC-BY-NC-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000351}
352
353license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800354 name: "SPDX-license-identifier-CC-BY-NC-2.0",
355 conditions: [
356 "by_exception_only",
357 "not_allowed",
358 ],
359 url: "https://spdx.org/licenses/CC-BY-NC-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000360}
361
362license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800363 name: "SPDX-license-identifier-CC-BY-NC-2.5",
364 conditions: [
365 "by_exception_only",
366 "not_allowed",
367 ],
368 url: "https://spdx.org/licenses/CC-BY-NC-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000369}
370
371license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800372 name: "SPDX-license-identifier-CC-BY-NC-3.0",
373 conditions: [
374 "by_exception_only",
375 "not_allowed",
376 ],
377 url: "https://spdx.org/licenses/CC-BY-NC-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000378}
379
380license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800381 name: "SPDX-license-identifier-CC-BY-NC-4.0",
382 conditions: [
383 "by_exception_only",
384 "not_allowed",
385 ],
386 url: "https://spdx.org/licenses/CC-BY-NC-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000387}
388
389license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800390 name: "SPDX-license-identifier-CC-BY-NC-ND-1.0",
391 conditions: [
392 "by_exception_only",
393 "not_allowed",
394 ],
395 url: "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000396}
397
398license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800399 name: "SPDX-license-identifier-CC-BY-NC-ND-2.0",
400 conditions: [
401 "by_exception_only",
402 "not_allowed",
403 ],
404 url: "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000405}
406
407license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800408 name: "SPDX-license-identifier-CC-BY-NC-ND-2.5",
409 conditions: [
410 "by_exception_only",
411 "not_allowed",
412 ],
413 url: "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000414}
415
416license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800417 name: "SPDX-license-identifier-CC-BY-NC-ND-3.0",
418 conditions: [
419 "by_exception_only",
420 "not_allowed",
421 ],
422 url: "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000423}
424
425license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800426 name: "SPDX-license-identifier-CC-BY-NC-ND-4.0",
427 conditions: [
428 "by_exception_only",
429 "not_allowed",
430 ],
431 url: "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000432}
433
434license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800435 name: "SPDX-license-identifier-CC-BY-NC-SA-1.0",
436 conditions: [
437 "by_exception_only",
438 "not_allowed",
439 ],
440 url: "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000441}
442
443license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800444 name: "SPDX-license-identifier-CC-BY-NC-SA-2.0",
445 conditions: [
446 "by_exception_only",
447 "not_allowed",
448 ],
449 url: "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000450}
451
452license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800453 name: "SPDX-license-identifier-CC-BY-NC-SA-2.5",
454 conditions: [
455 "by_exception_only",
456 "not_allowed",
457 ],
458 url: "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000459}
460
461license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800462 name: "SPDX-license-identifier-CC-BY-NC-SA-3.0",
463 conditions: [
464 "by_exception_only",
465 "not_allowed",
466 ],
467 url: "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000468}
469
470license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800471 name: "SPDX-license-identifier-CC-BY-NC-SA-4.0",
472 conditions: [
473 "by_exception_only",
474 "not_allowed",
475 ],
476 url: "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000477}
478
479license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800480 name: "SPDX-license-identifier-CC-BY-ND",
481 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000482}
483
484license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800485 name: "SPDX-license-identifier-CC-BY-ND-1.0",
486 conditions: ["restricted"],
487 url: "https://spdx.org/licenses/CC-BY-ND-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000488}
489
490license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800491 name: "SPDX-license-identifier-CC-BY-ND-2.0",
492 conditions: ["restricted"],
493 url: "https://spdx.org/licenses/CC-BY-ND-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000494}
495
496license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800497 name: "SPDX-license-identifier-CC-BY-ND-2.5",
498 conditions: ["restricted"],
499 url: "https://spdx.org/licenses/CC-BY-ND-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000500}
501
502license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800503 name: "SPDX-license-identifier-CC-BY-ND-3.0",
504 conditions: ["restricted"],
505 url: "https://spdx.org/licenses/CC-BY-ND-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000506}
507
508license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800509 name: "SPDX-license-identifier-CC-BY-ND-4.0",
510 conditions: ["restricted"],
511 url: "https://spdx.org/licenses/CC-BY-ND-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000512}
513
514license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800515 name: "SPDX-license-identifier-CC-BY-SA",
516 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000517}
518
519license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800520 name: "SPDX-license-identifier-CC-BY-SA-1.0",
521 conditions: ["restricted"],
522 url: "https://spdx.org/licenses/CC-BY-SA-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000523}
524
525license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800526 name: "SPDX-license-identifier-CC-BY-SA-2.0",
527 conditions: ["restricted"],
528 url: "https://spdx.org/licenses/CC-BY-SA-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000529}
530
531license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800532 name: "SPDX-license-identifier-CC-BY-SA-2.5",
533 conditions: ["restricted"],
534 url: "https://spdx.org/licenses/CC-BY-SA-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000535}
536
537license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800538 name: "SPDX-license-identifier-CC-BY-SA-3.0",
539 conditions: ["restricted"],
540 url: "https://spdx.org/licenses/CC-BY-SA-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000541}
542
543license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800544 name: "SPDX-license-identifier-CC-BY-SA-4.0",
545 conditions: ["restricted"],
546 url: "https://spdx.org/licenses/CC-BY-SA-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000547}
548
549license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800550 name: "SPDX-license-identifier-CC-BY-SA-ND",
551 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000552}
553
554license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800555 name: "SPDX-license-identifier-CC0-1.0",
556 conditions: ["unencumbered"],
557 url: "https://spdx.org/licenses/CC0-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000558}
559
560license_kind {
Bob Badourf34e4412021-01-26 00:02:44 -0800561 name: "SPDX-license-identifier-CDDL",
562 conditions: ["reciprocal"],
563}
564
565license_kind {
566 name: "SPDX-license-identifier-CDDL-1.0",
567 conditions: ["reciprocal"],
568 url: "https://spdx.org/licenses/CDLL-1.0.html",
569}
570
571license_kind {
572 name: "SPDX-license-identifier-CDDL-1.1",
573 conditions: ["reciprocal"],
574 url: "https://spdx.org/licenses/CDLL-1.1.html",
575}
576
577license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800578 name: "SPDX-license-identifier-CPAL-1.0",
579 conditions: [
580 "by_exception_only",
581 "not_allowed",
582 ],
583 url: "https://spdx.org/licenses/CPAL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000584}
585
586license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800587 name: "SPDX-license-identifier-CPL-1.0",
588 conditions: ["reciprocal"],
589 url: "https://spdx.org/licenses/CPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000590}
591
592license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800593 name: "SPDX-license-identifier-EPL",
594 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000595}
596
597license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800598 name: "SPDX-license-identifier-EPL-1.0",
599 conditions: ["reciprocal"],
600 url: "https://spdx.org/licenses/EPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000601}
602
603license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800604 name: "SPDX-license-identifier-EPL-2.0",
605 conditions: ["reciprocal"],
606 url: "https://spdx.org/licenses/EPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000607}
608
609license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800610 name: "SPDX-license-identifier-EUPL",
611 conditions: [
612 "by_exception_only",
613 "not_allowed",
614 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000615}
616
617license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800618 name: "SPDX-license-identifier-EUPL-1.0",
619 conditions: [
620 "by_exception_only",
621 "not_allowed",
622 ],
623 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000624}
625
626license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800627 name: "SPDX-license-identifier-EUPL-1.1",
628 conditions: [
629 "by_exception_only",
630 "not_allowed",
631 ],
632 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000633}
634
635license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800636 name: "SPDX-license-identifier-EUPL-1.2",
637 conditions: [
638 "by_exception_only",
639 "not_allowed",
640 ],
641 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000642}
643
644license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800645 name: "SPDX-license-identifier-FSFAP",
646 conditions: ["notice"],
647 url: "https://spdx.org/licenses/FSFAP",
648}
649
650license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800651 name: "SPDX-license-identifier-FTL",
652 conditions: ["notice"],
653 url: "https://spdx.org/licenses/FTL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000654}
655
656license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800657 name: "SPDX-license-identifier-GFDL",
658 conditions: ["by_exception_only"],
659}
660
661license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800662 name: "SPDX-license-identifier-GPL",
663 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000664}
665
666license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800667 name: "SPDX-license-identifier-GPL-1.0",
668 conditions: ["restricted"],
669 url: "https://spdx.org/licenses/GPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000670}
671
672license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800673 name: "SPDX-license-identifier-GPL-1.0+",
674 conditions: ["restricted"],
675 url: "https://spdx.org/licenses/GPL-1.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000676}
677
678license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800679 name: "SPDX-license-identifier-GPL-1.0-only",
680 conditions: ["restricted"],
681 url: "https://spdx.org/licenses/GPL-1.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000682}
683
684license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800685 name: "SPDX-license-identifier-GPL-1.0-or-later",
686 conditions: ["restricted"],
687 url: "https://spdx.org/licenses/GPL-1.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000688}
689
690license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800691 name: "SPDX-license-identifier-GPL-2.0",
692 conditions: ["restricted"],
693 url: "https://spdx.org/licenses/GPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000694}
695
696license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800697 name: "SPDX-license-identifier-GPL-2.0+",
698 conditions: ["restricted"],
699 url: "https://spdx.org/licenses/GPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000700}
701
702license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800703 name: "SPDX-license-identifier-GPL-2.0-only",
704 conditions: ["restricted"],
705 url: "https://spdx.org/licenses/GPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000706}
707
708license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800709 name: "SPDX-license-identifier-GPL-2.0-or-later",
710 conditions: ["restricted"],
711 url: "https://spdx.org/licenses/GPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000712}
713
714license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800715 name: "SPDX-license-identifier-GPL-2.0-with-GCC-exception",
716 conditions: ["restricted"],
717 url: "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000718}
719
720license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800721 name: "SPDX-license-identifier-GPL-2.0-with-autoconf-exception",
722 conditions: ["restricted"],
723 url: "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000724}
725
726license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800727 name: "SPDX-license-identifier-GPL-2.0-with-bison-exception",
728 conditions: ["restricted"],
729 url: "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000730}
731
732license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800733 name: "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
734 conditions: ["restricted"],
735 url: "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000736}
737
738license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800739 name: "SPDX-license-identifier-GPL-2.0-with-font-exception",
740 conditions: ["restricted"],
741 url: "https://spdx.org/licenses/GPL-2.0-with-font-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000742}
743
744license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800745 name: "SPDX-license-identifier-GPL-3.0",
746 conditions: ["restricted"],
747 url: "https://spdx.org/licenses/GPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000748}
749
750license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800751 name: "SPDX-license-identifier-GPL-3.0+",
752 conditions: ["restricted"],
753 url: "https://spdx.org/licenses/GPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000754}
755
756license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800757 name: "SPDX-license-identifier-GPL-3.0-only",
758 conditions: ["restricted"],
759 url: "https://spdx.org/licenses/GPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000760}
761
762license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800763 name: "SPDX-license-identifier-GPL-3.0-or-later",
764 conditions: ["restricted"],
765 url: "https://spdx.org/licenses/GPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000766}
767
768license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800769 name: "SPDX-license-identifier-GPL-3.0-with-GCC-exception",
770 conditions: ["restricted"],
771 url: "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000772}
773
774license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800775 name: "SPDX-license-identifier-GPL-3.0-with-autoconf-exception",
776 conditions: ["restricted"],
777 url: "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000778}
779
780license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800781 name: "SPDX-license-identifier-GPL-with-classpath-exception",
782 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000783}
784
785license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800786 name: "SPDX-license-identifier-HPND",
787 conditions: ["notice"],
788 url: "https://spdx.org/licenses/HPND.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000789}
790
791license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800792 name: "SPDX-license-identifier-ICU",
793 conditions: ["notice"],
794 url: "https://spdx.org/licenses/ICU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000795}
796
797license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800798 name: "SPDX-license-identifier-ISC",
799 conditions: ["notice"],
800 url: "https://spdx.org/licenses/ISC.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000801}
802
803license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800804 name: "SPDX-license-identifier-JSON",
805 conditions: ["notice"],
806 url: "https://spdx.org/licenses/JSON.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000807}
808
809license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800810 name: "SPDX-license-identifier-LGPL",
811 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000812}
813
814license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800815 name: "SPDX-license-identifier-LGPL-2.0",
816 conditions: ["restricted"],
817 url: "https://spdx.org/licenses/LGPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000818}
819
820license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800821 name: "SPDX-license-identifier-LGPL-2.0+",
822 conditions: ["restricted"],
823 url: "https://spdx.org/licenses/LGPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000824}
825
826license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800827 name: "SPDX-license-identifier-LGPL-2.0-only",
828 conditions: ["restricted"],
829 url: "https://spdx.org/licenses/LGPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000830}
831
832license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800833 name: "SPDX-license-identifier-LGPL-2.0-or-later",
834 conditions: ["restricted"],
835 url: "https://spdx.org/licenses/LGPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000836}
837
838license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800839 name: "SPDX-license-identifier-LGPL-2.1",
840 conditions: ["restricted"],
841 url: "https://spdx.org/licenses/LGPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000842}
843
844license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800845 name: "SPDX-license-identifier-LGPL-2.1+",
846 conditions: ["restricted"],
847 url: "https://spdx.org/licenses/LGPL-2.1+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000848}
849
850license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800851 name: "SPDX-license-identifier-LGPL-2.1-only",
852 conditions: ["restricted"],
853 url: "https://spdx.org/licenses/LGPL-2.1-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000854}
855
856license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800857 name: "SPDX-license-identifier-LGPL-2.1-or-later",
858 conditions: ["restricted"],
859 url: "https://spdx.org/licenses/LGPL-2.1-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000860}
861
862license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800863 name: "SPDX-license-identifier-LGPL-3.0",
864 conditions: ["restricted"],
865 url: "https://spdx.org/licenses/LGPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000866}
867
868license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800869 name: "SPDX-license-identifier-LGPL-3.0+",
870 conditions: ["restricted"],
871 url: "https://spdx.org/licenses/LGPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000872}
873
874license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800875 name: "SPDX-license-identifier-LGPL-3.0-only",
876 conditions: ["restricted"],
877 url: "https://spdx.org/licenses/LGPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000878}
879
880license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800881 name: "SPDX-license-identifier-LGPL-3.0-or-later",
882 conditions: ["restricted"],
883 url: "https://spdx.org/licenses/LGPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000884}
885
886license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800887 name: "SPDX-license-identifier-LGPLLR",
888 conditions: ["restricted"],
889 url: "https://spdx.org/licenses/LGPLLR.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000890}
891
892license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800893 name: "SPDX-license-identifier-LPL-1.02",
894 conditions: ["notice"],
895 url: "https://spdx.org/licenses/LPL-1.02.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000896}
897
898license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800899 name: "SPDX-license-identifier-MIT",
900 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000901}
902
903license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800904 name: "SPDX-license-identifier-MIT-0",
905 conditions: ["notice"],
906 url: "https://spdx.org/licenses/MIT-0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000907}
908
909license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800910 name: "SPDX-license-identifier-MIT-CMU",
911 conditions: ["notice"],
912 url: "https://spdx.org/licenses/MIT-CMU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000913}
914
915license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800916 name: "SPDX-license-identifier-MIT-advertising",
917 conditions: ["notice"],
918 url: "https://spdx.org/licenses/MIT-advertising.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000919}
920
921license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800922 name: "SPDX-license-identifier-MIT-enna",
923 conditions: ["notice"],
924 url: "https://spdx.org/licenses/MIT-enna.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000925}
926
927license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800928 name: "SPDX-license-identifier-MIT-feh",
929 conditions: ["notice"],
930 url: "https://spdx.org/licenses/MIT-feh.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000931}
932
933license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800934 name: "SPDX-license-identifier-MITNFA",
935 conditions: ["notice"],
936 url: "https://spdx.org/licenses/MITNFA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000937}
938
939license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800940 name: "SPDX-license-identifier-MPL",
941 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000942}
943
944license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800945 name: "SPDX-license-identifier-MPL-1.0",
946 conditions: ["reciprocal"],
947 url: "https://spdx.org/licenses/MPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000948}
949
950license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800951 name: "SPDX-license-identifier-MPL-1.1",
952 conditions: ["reciprocal"],
953 url: "https://spdx.org/licenses/MPL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000954}
955
956license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800957 name: "SPDX-license-identifier-MPL-2.0",
958 conditions: ["reciprocal"],
959 url: "https://spdx.org/licenses/MPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000960}
961
962license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800963 name: "SPDX-license-identifier-MPL-2.0-no-copyleft-exception",
964 conditions: ["reciprocal"],
965 url: "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000966}
967
968license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800969 name: "SPDX-license-identifier-MS-PL",
970 conditions: ["notice"],
971 url: "https://spdx.org/licenses/MS-PL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000972}
973
974license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800975 name: "SPDX-license-identifier-MS-RL",
976 conditions: ["by_exception_only"],
977 url: "https://spdx.org/licenses/MS-RL.html",
978}
979
980license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800981 name: "SPDX-license-identifier-NCSA",
982 conditions: ["notice"],
983 url: "https://spdx.org/licenses/NCSA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000984}
985
986license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800987 name: "SPDX-license-identifier-OFL",
988 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000989}
990
991license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800992 name: "SPDX-license-identifier-OFL-1.0",
993 conditions: ["by_exception_only"],
994 url: "https://spdx.org/licenses/OFL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000995}
996
997license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800998 name: "SPDX-license-identifier-OFL-1.0-RFN",
999 conditions: ["by_exception_only"],
1000 url: "https://spdx.org/licenses/OFL-1.0-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001001}
1002
1003license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001004 name: "SPDX-license-identifier-OFL-1.0-no-RFN",
1005 conditions: ["by_exception_only"],
1006 url: "https://spdx.org/licenses/OFL-1.0-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001007}
1008
1009license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001010 name: "SPDX-license-identifier-OFL-1.1",
1011 conditions: ["by_exception_only"],
1012 url: "https://spdx.org/licenses/OFL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001013}
1014
1015license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001016 name: "SPDX-license-identifier-OFL-1.1-RFN",
1017 conditions: ["by_exception_only"],
1018 url: "https://spdx.org/licenses/OFL-1.1-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001019}
1020
1021license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001022 name: "SPDX-license-identifier-OFL-1.1-no-RFN",
1023 conditions: ["by_exception_only"],
1024 url: "https://spdx.org/licenses/OFL-1.1-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001025}
1026
1027license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001028 name: "SPDX-license-identifier-OpenSSL",
1029 conditions: ["notice"],
1030 url: "https://spdx.org/licenses/OpenSSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001031}
1032
1033license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001034 name: "SPDX-license-identifier-PSF-2.0",
1035 conditions: ["notice"],
1036 url: "https://spdx.org/licenses/PSF-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001037}
1038
1039license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001040 name: "SPDX-license-identifier-SISSL",
1041 conditions: [
1042 "by_exception_only",
1043 "not_allowed",
1044 ],
1045 url: "https://spdx.org/licenses/SISSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001046}
1047
1048license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001049 name: "SPDX-license-identifier-SISSL-1.2",
1050 conditions: [
1051 "by_exception_only",
1052 "not_allowed",
1053 ],
1054 url: "https://spdx.org/licenses/SISSL-1.2.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001055}
1056
1057license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001058 name: "SPDX-license-identifier-SPL-1.0",
1059 conditions: [
1060 "by_exception_only",
1061 "reciprocal",
1062 ],
1063 url: "https://spdx.org/licenses/SPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001064}
1065
1066license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001067 name: "SPDX-license-identifier-SSPL",
1068 conditions: [
1069 "by_exception_only",
1070 "not_allowed",
1071 ],
1072 url: "https://spdx.org/licenses/SSPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001073}
1074
1075license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001076 name: "SPDX-license-identifier-UPL-1.0",
1077 conditions: ["notice"],
1078 url: "https://spdx.org/licenses/UPL-1.-.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001079}
1080
1081license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001082 name: "SPDX-license-identifier-Unicode-DFS",
1083 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001084}
1085
1086license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001087 name: "SPDX-license-identifier-Unicode-DFS-2015",
1088 conditions: ["notice"],
1089 url: "https://spdx.org/licenses/Unicode-DFS-2015.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001090}
1091
1092license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001093 name: "SPDX-license-identifier-Unicode-DFS-2016",
1094 conditions: ["notice"],
1095 url: "https://spdx.org/licenses/Unicode-DFS-2016.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001096}
1097
1098license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001099 name: "SPDX-license-identifier-Unlicense",
1100 conditions: ["unencumbered"],
1101 url: "https://spdx.org/licenses/Unlicense.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001102}
1103
1104license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001105 name: "SPDX-license-identifier-W3C",
1106 conditions: ["notice"],
1107 url: "https://spdx.org/licenses/W3C.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001108}
1109
1110license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001111 name: "SPDX-license-identifier-W3C-19980720",
1112 conditions: ["notice"],
1113 url: "https://spdx.org/licenses/W3C-19980720.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001114}
1115
1116license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001117 name: "SPDX-license-identifier-W3C-20150513",
1118 conditions: ["notice"],
1119 url: "https://spdx.org/licenses/W3C-20150513.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001120}
1121
1122license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001123 name: "SPDX-license-identifier-WTFPL",
1124 conditions: [
1125 "by_exception_only",
1126 "not_allowed",
1127 ],
1128 url: "https://spdx.org/licenses/WTFPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001129}
1130
1131license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001132 name: "SPDX-license-identifier-Watcom-1.0",
1133 conditions: [
1134 "by_exception_only",
1135 "not_allowed",
1136 ],
1137 url: "https://spdx.org/licenses/Watcom-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001138}
1139
1140license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001141 name: "SPDX-license-identifier-Xnet",
1142 conditions: ["notice"],
1143 url: "https://spdx.org/licenses/Xnet.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001144}
1145
1146license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001147 name: "SPDX-license-identifier-ZPL",
1148 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001149}
1150
1151license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001152 name: "SPDX-license-identifier-ZPL-1.1",
1153 conditions: ["notice"],
1154 url: "https://spdx.org/licenses/ZPL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001155}
1156
1157license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001158 name: "SPDX-license-identifier-ZPL-2.0",
1159 conditions: ["notice"],
1160 url: "https://spdx.org/licenses/ZPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001161}
1162
1163license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001164 name: "SPDX-license-identifier-ZPL-2.1",
1165 conditions: ["notice"],
1166 url: "https://spdx.org/licenses/ZPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001167}
1168
1169license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001170 name: "SPDX-license-identifier-Zend-2.0",
1171 conditions: ["notice"],
1172 url: "https://spdx.org/licenses/Zend-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001173}
1174
1175license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001176 name: "SPDX-license-identifier-Zlib",
1177 conditions: ["notice"],
1178 url: "https://spdx.org/licenses/Zlib.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001179}
1180
1181license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001182 name: "SPDX-license-identifier-libtiff",
1183 conditions: ["notice"],
1184 url: "https://spdx.org/licenses/libtiff.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001185}
1186
Bob Badourb80dfee2021-01-07 03:34:31 +00001187// Legacy license kinds -- do not add new references -- use an spdx kind instead.
1188license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001189 name: "legacy_unknown",
1190 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001191}
1192
1193license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001194 name: "legacy_unencumbered",
1195 conditions: ["unencumbered"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001196}
1197
1198license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001199 name: "legacy_permissive",
1200 conditions: ["permissive"],
Bob Badour73056ea2021-01-21 08:53:58 -08001201}
1202
1203license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001204 name: "legacy_notice",
1205 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001206}
1207
1208license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001209 name: "legacy_reciprocal",
1210 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001211}
1212
1213license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001214 name: "legacy_restricted",
1215 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001216}
1217
1218license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001219 name: "legacy_by_exception_only",
1220 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001221}
1222
1223license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -08001224 name: "legacy_not_a_contribution",
1225 conditions: [
1226 "by_exception_only",
1227 "not_allowed",
1228 ],
1229}
1230
1231license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001232 name: "legacy_not_allowed",
1233 conditions: [
1234 "by_exception_only",
1235 "not_allowed",
1236 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001237}
1238
1239license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001240 name: "legacy_proprietary",
1241 conditions: [
1242 "by_exception_only",
1243 "not_allowed",
1244 "proprietary",
1245 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001246}