blob: e87bdcf4cdf340d770bc04a53d95784582bd4f7c [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 Badourb545c5f2021-01-23 14:35:55 -0800561 name: "SPDX-license-identifier-CPAL-1.0",
562 conditions: [
563 "by_exception_only",
564 "not_allowed",
565 ],
566 url: "https://spdx.org/licenses/CPAL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000567}
568
569license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800570 name: "SPDX-license-identifier-CPL-1.0",
571 conditions: ["reciprocal"],
572 url: "https://spdx.org/licenses/CPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000573}
574
575license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800576 name: "SPDX-license-identifier-EPL",
577 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000578}
579
580license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800581 name: "SPDX-license-identifier-EPL-1.0",
582 conditions: ["reciprocal"],
583 url: "https://spdx.org/licenses/EPL-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-EPL-2.0",
588 conditions: ["reciprocal"],
589 url: "https://spdx.org/licenses/EPL-2.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-EUPL",
594 conditions: [
595 "by_exception_only",
596 "not_allowed",
597 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000598}
599
600license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800601 name: "SPDX-license-identifier-EUPL-1.0",
602 conditions: [
603 "by_exception_only",
604 "not_allowed",
605 ],
606 url: "https://spdx.org/licenses/EUPL-1.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-1.1",
611 conditions: [
612 "by_exception_only",
613 "not_allowed",
614 ],
615 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000616}
617
618license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800619 name: "SPDX-license-identifier-EUPL-1.2",
620 conditions: [
621 "by_exception_only",
622 "not_allowed",
623 ],
624 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000625}
626
627license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800628 name: "SPDX-license-identifier-FSFAP",
629 conditions: ["notice"],
630 url: "https://spdx.org/licenses/FSFAP",
631}
632
633license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800634 name: "SPDX-license-identifier-FTL",
635 conditions: ["notice"],
636 url: "https://spdx.org/licenses/FTL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000637}
638
639license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800640 name: "SPDX-license-identifier-GFDL",
641 conditions: ["by_exception_only"],
642}
643
644license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800645 name: "SPDX-license-identifier-GPL",
646 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000647}
648
649license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800650 name: "SPDX-license-identifier-GPL-1.0",
651 conditions: ["restricted"],
652 url: "https://spdx.org/licenses/GPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000653}
654
655license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800656 name: "SPDX-license-identifier-GPL-1.0+",
657 conditions: ["restricted"],
658 url: "https://spdx.org/licenses/GPL-1.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000659}
660
661license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800662 name: "SPDX-license-identifier-GPL-1.0-only",
663 conditions: ["restricted"],
664 url: "https://spdx.org/licenses/GPL-1.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000665}
666
667license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800668 name: "SPDX-license-identifier-GPL-1.0-or-later",
669 conditions: ["restricted"],
670 url: "https://spdx.org/licenses/GPL-1.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000671}
672
673license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800674 name: "SPDX-license-identifier-GPL-2.0",
675 conditions: ["restricted"],
676 url: "https://spdx.org/licenses/GPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000677}
678
679license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800680 name: "SPDX-license-identifier-GPL-2.0+",
681 conditions: ["restricted"],
682 url: "https://spdx.org/licenses/GPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000683}
684
685license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800686 name: "SPDX-license-identifier-GPL-2.0-only",
687 conditions: ["restricted"],
688 url: "https://spdx.org/licenses/GPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000689}
690
691license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800692 name: "SPDX-license-identifier-GPL-2.0-or-later",
693 conditions: ["restricted"],
694 url: "https://spdx.org/licenses/GPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000695}
696
697license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800698 name: "SPDX-license-identifier-GPL-2.0-with-GCC-exception",
699 conditions: ["restricted"],
700 url: "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000701}
702
703license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800704 name: "SPDX-license-identifier-GPL-2.0-with-autoconf-exception",
705 conditions: ["restricted"],
706 url: "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000707}
708
709license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800710 name: "SPDX-license-identifier-GPL-2.0-with-bison-exception",
711 conditions: ["restricted"],
712 url: "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000713}
714
715license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800716 name: "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
717 conditions: ["restricted"],
718 url: "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000719}
720
721license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800722 name: "SPDX-license-identifier-GPL-2.0-with-font-exception",
723 conditions: ["restricted"],
724 url: "https://spdx.org/licenses/GPL-2.0-with-font-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000725}
726
727license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800728 name: "SPDX-license-identifier-GPL-3.0",
729 conditions: ["restricted"],
730 url: "https://spdx.org/licenses/GPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000731}
732
733license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800734 name: "SPDX-license-identifier-GPL-3.0+",
735 conditions: ["restricted"],
736 url: "https://spdx.org/licenses/GPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000737}
738
739license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800740 name: "SPDX-license-identifier-GPL-3.0-only",
741 conditions: ["restricted"],
742 url: "https://spdx.org/licenses/GPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000743}
744
745license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800746 name: "SPDX-license-identifier-GPL-3.0-or-later",
747 conditions: ["restricted"],
748 url: "https://spdx.org/licenses/GPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000749}
750
751license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800752 name: "SPDX-license-identifier-GPL-3.0-with-GCC-exception",
753 conditions: ["restricted"],
754 url: "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000755}
756
757license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800758 name: "SPDX-license-identifier-GPL-3.0-with-autoconf-exception",
759 conditions: ["restricted"],
760 url: "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000761}
762
763license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800764 name: "SPDX-license-identifier-GPL-with-classpath-exception",
765 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000766}
767
768license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800769 name: "SPDX-license-identifier-HPND",
770 conditions: ["notice"],
771 url: "https://spdx.org/licenses/HPND.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000772}
773
774license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800775 name: "SPDX-license-identifier-ICU",
776 conditions: ["notice"],
777 url: "https://spdx.org/licenses/ICU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000778}
779
780license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800781 name: "SPDX-license-identifier-ISC",
782 conditions: ["notice"],
783 url: "https://spdx.org/licenses/ISC.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000784}
785
786license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800787 name: "SPDX-license-identifier-JSON",
788 conditions: ["notice"],
789 url: "https://spdx.org/licenses/JSON.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000790}
791
792license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800793 name: "SPDX-license-identifier-LGPL",
794 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000795}
796
797license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800798 name: "SPDX-license-identifier-LGPL-2.0",
799 conditions: ["restricted"],
800 url: "https://spdx.org/licenses/LGPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000801}
802
803license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800804 name: "SPDX-license-identifier-LGPL-2.0+",
805 conditions: ["restricted"],
806 url: "https://spdx.org/licenses/LGPL-2.0+.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-2.0-only",
811 conditions: ["restricted"],
812 url: "https://spdx.org/licenses/LGPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000813}
814
815license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800816 name: "SPDX-license-identifier-LGPL-2.0-or-later",
817 conditions: ["restricted"],
818 url: "https://spdx.org/licenses/LGPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000819}
820
821license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800822 name: "SPDX-license-identifier-LGPL-2.1",
823 conditions: ["restricted"],
824 url: "https://spdx.org/licenses/LGPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000825}
826
827license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800828 name: "SPDX-license-identifier-LGPL-2.1+",
829 conditions: ["restricted"],
830 url: "https://spdx.org/licenses/LGPL-2.1+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000831}
832
833license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800834 name: "SPDX-license-identifier-LGPL-2.1-only",
835 conditions: ["restricted"],
836 url: "https://spdx.org/licenses/LGPL-2.1-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000837}
838
839license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800840 name: "SPDX-license-identifier-LGPL-2.1-or-later",
841 conditions: ["restricted"],
842 url: "https://spdx.org/licenses/LGPL-2.1-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000843}
844
845license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800846 name: "SPDX-license-identifier-LGPL-3.0",
847 conditions: ["restricted"],
848 url: "https://spdx.org/licenses/LGPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000849}
850
851license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800852 name: "SPDX-license-identifier-LGPL-3.0+",
853 conditions: ["restricted"],
854 url: "https://spdx.org/licenses/LGPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000855}
856
857license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800858 name: "SPDX-license-identifier-LGPL-3.0-only",
859 conditions: ["restricted"],
860 url: "https://spdx.org/licenses/LGPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000861}
862
863license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800864 name: "SPDX-license-identifier-LGPL-3.0-or-later",
865 conditions: ["restricted"],
866 url: "https://spdx.org/licenses/LGPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000867}
868
869license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800870 name: "SPDX-license-identifier-LGPLLR",
871 conditions: ["restricted"],
872 url: "https://spdx.org/licenses/LGPLLR.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000873}
874
875license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800876 name: "SPDX-license-identifier-LPL-1.02",
877 conditions: ["notice"],
878 url: "https://spdx.org/licenses/LPL-1.02.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000879}
880
881license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800882 name: "SPDX-license-identifier-MIT",
883 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000884}
885
886license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800887 name: "SPDX-license-identifier-MIT-0",
888 conditions: ["notice"],
889 url: "https://spdx.org/licenses/MIT-0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000890}
891
892license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800893 name: "SPDX-license-identifier-MIT-CMU",
894 conditions: ["notice"],
895 url: "https://spdx.org/licenses/MIT-CMU.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-advertising",
900 conditions: ["notice"],
901 url: "https://spdx.org/licenses/MIT-advertising.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000902}
903
904license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800905 name: "SPDX-license-identifier-MIT-enna",
906 conditions: ["notice"],
907 url: "https://spdx.org/licenses/MIT-enna.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000908}
909
910license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800911 name: "SPDX-license-identifier-MIT-feh",
912 conditions: ["notice"],
913 url: "https://spdx.org/licenses/MIT-feh.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000914}
915
916license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800917 name: "SPDX-license-identifier-MITNFA",
918 conditions: ["notice"],
919 url: "https://spdx.org/licenses/MITNFA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000920}
921
922license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800923 name: "SPDX-license-identifier-MPL",
924 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000925}
926
927license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800928 name: "SPDX-license-identifier-MPL-1.0",
929 conditions: ["reciprocal"],
930 url: "https://spdx.org/licenses/MPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000931}
932
933license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800934 name: "SPDX-license-identifier-MPL-1.1",
935 conditions: ["reciprocal"],
936 url: "https://spdx.org/licenses/MPL-1.1.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-2.0",
941 conditions: ["reciprocal"],
942 url: "https://spdx.org/licenses/MPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000943}
944
945license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800946 name: "SPDX-license-identifier-MPL-2.0-no-copyleft-exception",
947 conditions: ["reciprocal"],
948 url: "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000949}
950
951license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800952 name: "SPDX-license-identifier-MS-PL",
953 conditions: ["notice"],
954 url: "https://spdx.org/licenses/MS-PL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000955}
956
957license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800958 name: "SPDX-license-identifier-MS-RL",
959 conditions: ["by_exception_only"],
960 url: "https://spdx.org/licenses/MS-RL.html",
961}
962
963license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800964 name: "SPDX-license-identifier-NCSA",
965 conditions: ["notice"],
966 url: "https://spdx.org/licenses/NCSA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000967}
968
969license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800970 name: "SPDX-license-identifier-OFL",
971 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000972}
973
974license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800975 name: "SPDX-license-identifier-OFL-1.0",
976 conditions: ["by_exception_only"],
977 url: "https://spdx.org/licenses/OFL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000978}
979
980license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800981 name: "SPDX-license-identifier-OFL-1.0-RFN",
982 conditions: ["by_exception_only"],
983 url: "https://spdx.org/licenses/OFL-1.0-RFN.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-1.0-no-RFN",
988 conditions: ["by_exception_only"],
989 url: "https://spdx.org/licenses/OFL-1.0-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000990}
991
992license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800993 name: "SPDX-license-identifier-OFL-1.1",
994 conditions: ["by_exception_only"],
995 url: "https://spdx.org/licenses/OFL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000996}
997
998license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800999 name: "SPDX-license-identifier-OFL-1.1-RFN",
1000 conditions: ["by_exception_only"],
1001 url: "https://spdx.org/licenses/OFL-1.1-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001002}
1003
1004license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001005 name: "SPDX-license-identifier-OFL-1.1-no-RFN",
1006 conditions: ["by_exception_only"],
1007 url: "https://spdx.org/licenses/OFL-1.1-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001008}
1009
1010license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001011 name: "SPDX-license-identifier-OpenSSL",
1012 conditions: ["notice"],
1013 url: "https://spdx.org/licenses/OpenSSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001014}
1015
1016license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001017 name: "SPDX-license-identifier-PSF-2.0",
1018 conditions: ["notice"],
1019 url: "https://spdx.org/licenses/PSF-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001020}
1021
1022license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001023 name: "SPDX-license-identifier-SISSL",
1024 conditions: [
1025 "by_exception_only",
1026 "not_allowed",
1027 ],
1028 url: "https://spdx.org/licenses/SISSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001029}
1030
1031license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001032 name: "SPDX-license-identifier-SISSL-1.2",
1033 conditions: [
1034 "by_exception_only",
1035 "not_allowed",
1036 ],
1037 url: "https://spdx.org/licenses/SISSL-1.2.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001038}
1039
1040license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001041 name: "SPDX-license-identifier-SPL-1.0",
1042 conditions: [
1043 "by_exception_only",
1044 "reciprocal",
1045 ],
1046 url: "https://spdx.org/licenses/SPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001047}
1048
1049license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001050 name: "SPDX-license-identifier-SSPL",
1051 conditions: [
1052 "by_exception_only",
1053 "not_allowed",
1054 ],
1055 url: "https://spdx.org/licenses/SSPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001056}
1057
1058license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001059 name: "SPDX-license-identifier-UPL-1.0",
1060 conditions: ["notice"],
1061 url: "https://spdx.org/licenses/UPL-1.-.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001062}
1063
1064license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001065 name: "SPDX-license-identifier-Unicode-DFS",
1066 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001067}
1068
1069license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001070 name: "SPDX-license-identifier-Unicode-DFS-2015",
1071 conditions: ["notice"],
1072 url: "https://spdx.org/licenses/Unicode-DFS-2015.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001073}
1074
1075license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001076 name: "SPDX-license-identifier-Unicode-DFS-2016",
1077 conditions: ["notice"],
1078 url: "https://spdx.org/licenses/Unicode-DFS-2016.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001079}
1080
1081license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001082 name: "SPDX-license-identifier-Unlicense",
1083 conditions: ["unencumbered"],
1084 url: "https://spdx.org/licenses/Unlicense.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001085}
1086
1087license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001088 name: "SPDX-license-identifier-W3C",
1089 conditions: ["notice"],
1090 url: "https://spdx.org/licenses/W3C.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001091}
1092
1093license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001094 name: "SPDX-license-identifier-W3C-19980720",
1095 conditions: ["notice"],
1096 url: "https://spdx.org/licenses/W3C-19980720.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001097}
1098
1099license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001100 name: "SPDX-license-identifier-W3C-20150513",
1101 conditions: ["notice"],
1102 url: "https://spdx.org/licenses/W3C-20150513.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001103}
1104
1105license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001106 name: "SPDX-license-identifier-WTFPL",
1107 conditions: [
1108 "by_exception_only",
1109 "not_allowed",
1110 ],
1111 url: "https://spdx.org/licenses/WTFPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001112}
1113
1114license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001115 name: "SPDX-license-identifier-Watcom-1.0",
1116 conditions: [
1117 "by_exception_only",
1118 "not_allowed",
1119 ],
1120 url: "https://spdx.org/licenses/Watcom-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001121}
1122
1123license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001124 name: "SPDX-license-identifier-Xnet",
1125 conditions: ["notice"],
1126 url: "https://spdx.org/licenses/Xnet.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001127}
1128
1129license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001130 name: "SPDX-license-identifier-ZPL",
1131 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001132}
1133
1134license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001135 name: "SPDX-license-identifier-ZPL-1.1",
1136 conditions: ["notice"],
1137 url: "https://spdx.org/licenses/ZPL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001138}
1139
1140license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001141 name: "SPDX-license-identifier-ZPL-2.0",
1142 conditions: ["notice"],
1143 url: "https://spdx.org/licenses/ZPL-2.0.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-2.1",
1148 conditions: ["notice"],
1149 url: "https://spdx.org/licenses/ZPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001150}
1151
1152license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001153 name: "SPDX-license-identifier-Zend-2.0",
1154 conditions: ["notice"],
1155 url: "https://spdx.org/licenses/Zend-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001156}
1157
1158license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001159 name: "SPDX-license-identifier-Zlib",
1160 conditions: ["notice"],
1161 url: "https://spdx.org/licenses/Zlib.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001162}
1163
1164license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001165 name: "SPDX-license-identifier-libtiff",
1166 conditions: ["notice"],
1167 url: "https://spdx.org/licenses/libtiff.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001168}
1169
Bob Badourb80dfee2021-01-07 03:34:31 +00001170// Legacy license kinds -- do not add new references -- use an spdx kind instead.
1171license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001172 name: "legacy_unknown",
1173 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001174}
1175
1176license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001177 name: "legacy_unencumbered",
1178 conditions: ["unencumbered"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001179}
1180
1181license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001182 name: "legacy_permissive",
1183 conditions: ["permissive"],
Bob Badour73056ea2021-01-21 08:53:58 -08001184}
1185
1186license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001187 name: "legacy_notice",
1188 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001189}
1190
1191license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001192 name: "legacy_reciprocal",
1193 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001194}
1195
1196license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001197 name: "legacy_restricted",
1198 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001199}
1200
1201license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001202 name: "legacy_by_exception_only",
1203 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001204}
1205
1206license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -08001207 name: "legacy_not_a_contribution",
1208 conditions: [
1209 "by_exception_only",
1210 "not_allowed",
1211 ],
1212}
1213
1214license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001215 name: "legacy_not_allowed",
1216 conditions: [
1217 "by_exception_only",
1218 "not_allowed",
1219 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001220}
1221
1222license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001223 name: "legacy_proprietary",
1224 conditions: [
1225 "by_exception_only",
1226 "not_allowed",
1227 "proprietary",
1228 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001229}