blob: 8db001f44ea27069f4fac9709b227e34a96d31c2 [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
Bob Badour45923712022-01-28 12:55:32 -080021filegroup {
22 name: "Apache-2.0-License-Text",
23 srcs: ["LICENSE"],
24}
25
Bob Badourb80dfee2021-01-07 03:34:31 +000026license {
Bob Badourb545c5f2021-01-23 14:35:55 -080027 name: "Android-Apache-2.0",
Bob Badour414719e2021-04-15 12:43:39 -070028 package_name: "Android",
Bob Badourb545c5f2021-01-23 14:35:55 -080029 license_kinds: ["SPDX-license-identifier-Apache-2.0"],
30 copyright_notice: "Copyright (C) The Android Open Source Project",
31 license_text: ["LICENSE"],
Bob Badourb80dfee2021-01-07 03:34:31 +000032}
33
34license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -080035 name: "SPDX-license-identifier-0BSD",
36 conditions: ["unencumbered"],
37 url: "https://spdx.org/licenses/0BSD",
38}
39
40license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080041 name: "SPDX-license-identifier-AFL-1.1",
42 conditions: ["by_exception_only"],
43 url: "https://spdx.org/licenses/AFL-1.1.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-1.2",
48 conditions: ["by_exception_only"],
49 url: "https://spdx.org/licenses/AFL-1.2.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.0",
54 conditions: ["by_exception_only"],
55 url: "https://spdx.org/licenses/AFL-2.0.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-2.1",
60 conditions: ["notice"],
61 url: "https://spdx.org/licenses/AFL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000062}
63
64license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080065 name: "SPDX-license-identifier-AFL-3.0",
66 conditions: ["notice"],
67 url: "https://spdx.org/licenses/AFL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000068}
69
70license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080071 name: "SPDX-license-identifier-AGPL",
72 conditions: [
73 "by_exception_only",
74 "not_allowed",
75 ],
76 url: "https://spdx.org/licenses/AGPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000077}
78
79license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080080 name: "SPDX-license-identifier-AGPL-1.0",
81 conditions: [
82 "by_exception_only",
83 "not_allowed",
84 ],
85 url: "https://spdx.org/licenses/AGPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000086}
87
88license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080089 name: "SPDX-license-identifier-AGPL-1.0-only",
90 conditions: [
91 "by_exception_only",
92 "not_allowed",
93 ],
94 url: "https://spdx.org/licenses/AGPL-1.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000095}
96
97license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080098 name: "SPDX-license-identifier-AGPL-1.0-or-later",
99 conditions: [
100 "by_exception_only",
101 "not_allowed",
102 ],
103 url: "https://spdx.org/licenses/AGPL-1.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000104}
105
106license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800107 name: "SPDX-license-identifier-AGPL-3.0",
108 conditions: [
109 "by_exception_only",
110 "not_allowed",
111 ],
112 url: "https://spdx.org/licenses/AGPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000113}
114
115license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800116 name: "SPDX-license-identifier-AGPL-3.0-only",
117 conditions: [
118 "by_exception_only",
119 "not_allowed",
120 ],
121 url: "https://spdx.org/licenses/AGPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000122}
123
124license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800125 name: "SPDX-license-identifier-AGPL-3.0-or-later",
126 conditions: [
127 "by_exception_only",
128 "not_allowed",
129 ],
130 url: "https://spdx.org/licenses/AGPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000131}
132
133license_kind {
Bob Badour304fe7f2021-01-27 16:51:36 -0800134 name: "SPDX-license-identifier-APSL-1.1",
135 conditions: [
136 "reciprocal",
137 ],
138 url: "https://spdx.org/licenses/APSL-1.1.html",
139}
140
141license_kind {
142 name: "SPDX-license-identifier-APSL-2.0",
143 conditions: [
144 "reciprocal",
145 ],
146 url: "https://spdx.org/licenses/APSL-2.0.html",
147}
148
149license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800150 name: "SPDX-license-identifier-Apache",
151 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000152}
153
154license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800155 name: "SPDX-license-identifier-Apache-1.0",
156 conditions: ["notice"],
157 url: "https://spdx.org/licenses/Apache-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000158}
159
160license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800161 name: "SPDX-license-identifier-Apache-1.1",
162 conditions: ["notice"],
163 url: "https://spdx.org/licenses/Apache-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000164}
165
166license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800167 name: "SPDX-license-identifier-Apache-2.0",
168 conditions: ["notice"],
169 url: "https://spdx.org/licenses/Apache-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000170}
171
172license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800173 name: "SPDX-license-identifier-Artistic",
174 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000175}
176
177license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800178 name: "SPDX-license-identifier-Artistic-1.0",
179 conditions: ["notice"],
180 url: "https://spdx.org/licenses/Artistic-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000181}
182
183license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800184 name: "SPDX-license-identifier-Artistic-1.0-Perl",
185 conditions: ["notice"],
186 url: "https://spdx.org/licenses/Artistic-1.0-Perl.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000187}
188
189license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800190 name: "SPDX-license-identifier-Artistic-1.0-cl8",
191 conditions: ["notice"],
192 url: "https://spdx.org/licenses/Artistic-1.0-cl8.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000193}
194
195license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800196 name: "SPDX-license-identifier-Artistic-2.0",
197 conditions: ["notice"],
198 url: "https://spdx.org/licenses/Artistic-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000199}
200
201license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800202 name: "SPDX-license-identifier-BSD",
203 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000204}
205
206license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800207 name: "SPDX-license-identifier-BSD-1-Clause",
208 conditions: ["notice"],
209 url: "https://spdx.org/licenses/BSD-1-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000210}
211
212license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800213 name: "SPDX-license-identifier-BSD-2-Clause",
214 conditions: ["notice"],
215 url: "https://spdx.org/licenses/BSD-2-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000216}
217
218license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800219 name: "SPDX-license-identifier-BSD-2-Clause-FreeBSD",
220 conditions: ["notice"],
221 url: "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000222}
223
224license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800225 name: "SPDX-license-identifier-BSD-2-Clause-NetBSD",
226 conditions: ["notice"],
227 url: "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000228}
229
230license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800231 name: "SPDX-license-identifier-BSD-2-Clause-Patent",
232 conditions: ["notice"],
233 url: "https://spdx.org/licenses/BSD-2-Clause-Patent.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000234}
235
236license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800237 name: "SPDX-license-identifier-BSD-3-Clause",
238 conditions: ["notice"],
239 url: "https://spdx.org/licenses/BSD-3-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000240}
241
242license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800243 name: "SPDX-license-identifier-BSD-3-Clause-Attribution",
244 conditions: ["notice"],
245 url: "https://spdx.org/licenses/BSD-3-Clause-Attribution.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000246}
247
248license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800249 name: "SPDX-license-identifier-BSD-3-Clause-Clear",
250 conditions: ["notice"],
251 url: "https://spdx.org/licenses/BSD-3-Clause-Clear.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000252}
253
254license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800255 name: "SPDX-license-identifier-BSD-3-Clause-LBNL",
256 conditions: ["notice"],
257 url: "https://spdx.org/licenses/BSD-3-Clause-LBNL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000258}
259
260license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800261 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-License",
262 conditions: ["notice"],
263 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000264}
265
266license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800267 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-License-2014",
268 conditions: ["notice"],
269 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000270}
271
272license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800273 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-Warranty",
274 conditions: ["notice"],
275 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000276}
277
278license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800279 name: "SPDX-license-identifier-BSD-3-Clause-Open-MPI",
280 conditions: ["notice"],
281 url: "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000282}
283
284license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800285 name: "SPDX-license-identifier-BSD-4-Clause",
286 conditions: ["notice"],
287 url: "https://spdx.org/licenses/BSD-4-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000288}
289
290license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800291 name: "SPDX-license-identifier-BSD-4-Clause-UC",
292 conditions: ["notice"],
293 url: "https://spdx.org/licenses/BSD-4-Clause-UC.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000294}
295
296license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800297 name: "SPDX-license-identifier-BSD-Protection",
298 conditions: ["notice"],
299 url: "https://spdx.org/licenses/BSD-Protection.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000300}
301
302license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800303 name: "SPDX-license-identifier-BSD-Source-Code",
304 conditions: ["notice"],
305 url: "https://spdx.org/licenses/BSD-Source-Code.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000306}
307
308license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800309 name: "SPDX-license-identifier-BSL-1.0",
310 conditions: ["notice"],
311 url: "https://spdx.org/licenses/BSL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000312}
313
314license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800315 name: "SPDX-license-identifier-Beerware",
Bob Badour7a105302021-02-02 12:08:28 -0800316 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800317 url: "https://spdx.org/licenses/Beerware.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000318}
319
320license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800321 name: "SPDX-license-identifier-CC-BY",
322 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000323}
324
325license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800326 name: "SPDX-license-identifier-CC-BY-1.0",
327 conditions: ["notice"],
328 url: "https://spdx.org/licenses/CC-BY-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000329}
330
331license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800332 name: "SPDX-license-identifier-CC-BY-2.0",
333 conditions: ["notice"],
334 url: "https://spdx.org/licenses/CC-BY-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000335}
336
337license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800338 name: "SPDX-license-identifier-CC-BY-2.5",
339 conditions: ["notice"],
340 url: "https://spdx.org/licenses/CC-BY-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000341}
342
343license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800344 name: "SPDX-license-identifier-CC-BY-3.0",
345 conditions: ["notice"],
346 url: "https://spdx.org/licenses/CC-BY-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000347}
348
349license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800350 name: "SPDX-license-identifier-CC-BY-4.0",
351 conditions: ["notice"],
352 url: "https://spdx.org/licenses/CC-BY-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000353}
354
355license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800356 name: "SPDX-license-identifier-CC-BY-NC",
357 conditions: [
358 "by_exception_only",
359 "not_allowed",
360 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000361}
362
363license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800364 name: "SPDX-license-identifier-CC-BY-NC-1.0",
365 conditions: [
366 "by_exception_only",
367 "not_allowed",
368 ],
369 url: "https://spdx.org/licenses/CC-BY-NC-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000370}
371
372license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800373 name: "SPDX-license-identifier-CC-BY-NC-2.0",
374 conditions: [
375 "by_exception_only",
376 "not_allowed",
377 ],
378 url: "https://spdx.org/licenses/CC-BY-NC-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000379}
380
381license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800382 name: "SPDX-license-identifier-CC-BY-NC-2.5",
383 conditions: [
384 "by_exception_only",
385 "not_allowed",
386 ],
387 url: "https://spdx.org/licenses/CC-BY-NC-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000388}
389
390license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800391 name: "SPDX-license-identifier-CC-BY-NC-3.0",
392 conditions: [
393 "by_exception_only",
394 "not_allowed",
395 ],
396 url: "https://spdx.org/licenses/CC-BY-NC-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000397}
398
399license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800400 name: "SPDX-license-identifier-CC-BY-NC-4.0",
401 conditions: [
402 "by_exception_only",
403 "not_allowed",
404 ],
405 url: "https://spdx.org/licenses/CC-BY-NC-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000406}
407
408license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800409 name: "SPDX-license-identifier-CC-BY-NC-ND-1.0",
410 conditions: [
411 "by_exception_only",
412 "not_allowed",
413 ],
414 url: "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000415}
416
417license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800418 name: "SPDX-license-identifier-CC-BY-NC-ND-2.0",
419 conditions: [
420 "by_exception_only",
421 "not_allowed",
422 ],
423 url: "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000424}
425
426license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800427 name: "SPDX-license-identifier-CC-BY-NC-ND-2.5",
428 conditions: [
429 "by_exception_only",
430 "not_allowed",
431 ],
432 url: "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000433}
434
435license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800436 name: "SPDX-license-identifier-CC-BY-NC-ND-3.0",
437 conditions: [
438 "by_exception_only",
439 "not_allowed",
440 ],
441 url: "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000442}
443
444license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800445 name: "SPDX-license-identifier-CC-BY-NC-ND-4.0",
446 conditions: [
447 "by_exception_only",
448 "not_allowed",
449 ],
450 url: "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000451}
452
453license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800454 name: "SPDX-license-identifier-CC-BY-NC-SA-1.0",
455 conditions: [
456 "by_exception_only",
457 "not_allowed",
458 ],
459 url: "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000460}
461
462license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800463 name: "SPDX-license-identifier-CC-BY-NC-SA-2.0",
464 conditions: [
465 "by_exception_only",
466 "not_allowed",
467 ],
468 url: "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000469}
470
471license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800472 name: "SPDX-license-identifier-CC-BY-NC-SA-2.5",
473 conditions: [
474 "by_exception_only",
475 "not_allowed",
476 ],
477 url: "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000478}
479
480license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800481 name: "SPDX-license-identifier-CC-BY-NC-SA-3.0",
482 conditions: [
483 "by_exception_only",
484 "not_allowed",
485 ],
486 url: "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000487}
488
489license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800490 name: "SPDX-license-identifier-CC-BY-NC-SA-4.0",
491 conditions: [
492 "by_exception_only",
493 "not_allowed",
494 ],
495 url: "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000496}
497
498license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800499 name: "SPDX-license-identifier-CC-BY-ND",
Bob Badourdf6099d2021-11-15 17:52:08 -0800500 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000501}
502
503license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800504 name: "SPDX-license-identifier-CC-BY-ND-1.0",
Bob Badourdf6099d2021-11-15 17:52:08 -0800505 conditions: ["by_exception_only"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800506 url: "https://spdx.org/licenses/CC-BY-ND-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000507}
508
509license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800510 name: "SPDX-license-identifier-CC-BY-ND-2.0",
Bob Badourdf6099d2021-11-15 17:52:08 -0800511 conditions: ["by_exception_only"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800512 url: "https://spdx.org/licenses/CC-BY-ND-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000513}
514
515license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800516 name: "SPDX-license-identifier-CC-BY-ND-2.5",
Bob Badourdf6099d2021-11-15 17:52:08 -0800517 conditions: ["by_exception_only"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800518 url: "https://spdx.org/licenses/CC-BY-ND-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000519}
520
521license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800522 name: "SPDX-license-identifier-CC-BY-ND-3.0",
Bob Badourdf6099d2021-11-15 17:52:08 -0800523 conditions: ["by_exception_only"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800524 url: "https://spdx.org/licenses/CC-BY-ND-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000525}
526
527license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800528 name: "SPDX-license-identifier-CC-BY-ND-4.0",
Bob Badourdf6099d2021-11-15 17:52:08 -0800529 conditions: ["by_exception_only"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800530 url: "https://spdx.org/licenses/CC-BY-ND-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000531}
532
533license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800534 name: "SPDX-license-identifier-CC-BY-SA",
535 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000536}
537
538license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800539 name: "SPDX-license-identifier-CC-BY-SA-1.0",
540 conditions: ["restricted"],
541 url: "https://spdx.org/licenses/CC-BY-SA-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000542}
543
544license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800545 name: "SPDX-license-identifier-CC-BY-SA-2.0",
546 conditions: ["restricted"],
547 url: "https://spdx.org/licenses/CC-BY-SA-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000548}
549
550license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800551 name: "SPDX-license-identifier-CC-BY-SA-2.5",
552 conditions: ["restricted"],
553 url: "https://spdx.org/licenses/CC-BY-SA-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000554}
555
556license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800557 name: "SPDX-license-identifier-CC-BY-SA-3.0",
558 conditions: ["restricted"],
559 url: "https://spdx.org/licenses/CC-BY-SA-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000560}
561
562license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800563 name: "SPDX-license-identifier-CC-BY-SA-4.0",
564 conditions: ["restricted"],
565 url: "https://spdx.org/licenses/CC-BY-SA-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000566}
567
568license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800569 name: "SPDX-license-identifier-CC-BY-SA-ND",
Bob Badourdf6099d2021-11-15 17:52:08 -0800570 conditions: [
571 "restricted",
572 "by_exception_only",
573 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000574}
575
576license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800577 name: "SPDX-license-identifier-CC0-1.0",
578 conditions: ["unencumbered"],
579 url: "https://spdx.org/licenses/CC0-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000580}
581
582license_kind {
Bob Badourf34e4412021-01-26 00:02:44 -0800583 name: "SPDX-license-identifier-CDDL",
584 conditions: ["reciprocal"],
585}
586
587license_kind {
588 name: "SPDX-license-identifier-CDDL-1.0",
589 conditions: ["reciprocal"],
590 url: "https://spdx.org/licenses/CDLL-1.0.html",
591}
592
593license_kind {
594 name: "SPDX-license-identifier-CDDL-1.1",
595 conditions: ["reciprocal"],
596 url: "https://spdx.org/licenses/CDLL-1.1.html",
597}
598
599license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800600 name: "SPDX-license-identifier-CPAL-1.0",
601 conditions: [
602 "by_exception_only",
603 "not_allowed",
604 ],
605 url: "https://spdx.org/licenses/CPAL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000606}
607
608license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800609 name: "SPDX-license-identifier-CPL-1.0",
610 conditions: ["reciprocal"],
611 url: "https://spdx.org/licenses/CPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000612}
613
614license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800615 name: "SPDX-license-identifier-EPL",
616 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000617}
618
619license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800620 name: "SPDX-license-identifier-EPL-1.0",
621 conditions: ["reciprocal"],
622 url: "https://spdx.org/licenses/EPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000623}
624
625license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800626 name: "SPDX-license-identifier-EPL-2.0",
627 conditions: ["reciprocal"],
628 url: "https://spdx.org/licenses/EPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000629}
630
631license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800632 name: "SPDX-license-identifier-EUPL",
633 conditions: [
634 "by_exception_only",
635 "not_allowed",
636 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000637}
638
639license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800640 name: "SPDX-license-identifier-EUPL-1.0",
641 conditions: [
642 "by_exception_only",
643 "not_allowed",
644 ],
645 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000646}
647
648license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800649 name: "SPDX-license-identifier-EUPL-1.1",
650 conditions: [
651 "by_exception_only",
652 "not_allowed",
653 ],
654 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000655}
656
657license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800658 name: "SPDX-license-identifier-EUPL-1.2",
659 conditions: [
660 "by_exception_only",
661 "not_allowed",
662 ],
663 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000664}
665
666license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800667 name: "SPDX-license-identifier-FSFAP",
668 conditions: ["notice"],
669 url: "https://spdx.org/licenses/FSFAP",
670}
671
672license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800673 name: "SPDX-license-identifier-FTL",
674 conditions: ["notice"],
675 url: "https://spdx.org/licenses/FTL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000676}
677
678license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800679 name: "SPDX-license-identifier-GFDL",
680 conditions: ["by_exception_only"],
681}
682
683license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800684 name: "SPDX-license-identifier-GPL",
685 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000686}
687
688license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800689 name: "SPDX-license-identifier-GPL-1.0",
690 conditions: ["restricted"],
691 url: "https://spdx.org/licenses/GPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000692}
693
694license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800695 name: "SPDX-license-identifier-GPL-1.0+",
696 conditions: ["restricted"],
697 url: "https://spdx.org/licenses/GPL-1.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000698}
699
700license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800701 name: "SPDX-license-identifier-GPL-1.0-only",
702 conditions: ["restricted"],
703 url: "https://spdx.org/licenses/GPL-1.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000704}
705
706license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800707 name: "SPDX-license-identifier-GPL-1.0-or-later",
708 conditions: ["restricted"],
709 url: "https://spdx.org/licenses/GPL-1.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000710}
711
712license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800713 name: "SPDX-license-identifier-GPL-2.0",
714 conditions: ["restricted"],
715 url: "https://spdx.org/licenses/GPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000716}
717
718license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800719 name: "SPDX-license-identifier-GPL-2.0+",
720 conditions: ["restricted"],
721 url: "https://spdx.org/licenses/GPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000722}
723
724license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800725 name: "SPDX-license-identifier-GPL-2.0-only",
726 conditions: ["restricted"],
727 url: "https://spdx.org/licenses/GPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000728}
729
730license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800731 name: "SPDX-license-identifier-GPL-2.0-or-later",
732 conditions: ["restricted"],
733 url: "https://spdx.org/licenses/GPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000734}
735
736license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800737 name: "SPDX-license-identifier-GPL-2.0-with-GCC-exception",
738 conditions: ["restricted"],
739 url: "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000740}
741
742license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800743 name: "SPDX-license-identifier-GPL-2.0-with-autoconf-exception",
744 conditions: ["restricted"],
745 url: "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000746}
747
748license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800749 name: "SPDX-license-identifier-GPL-2.0-with-bison-exception",
750 conditions: ["restricted"],
751 url: "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000752}
753
754license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800755 name: "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
756 conditions: ["restricted"],
757 url: "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000758}
759
760license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800761 name: "SPDX-license-identifier-GPL-2.0-with-font-exception",
762 conditions: ["restricted"],
763 url: "https://spdx.org/licenses/GPL-2.0-with-font-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000764}
765
766license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800767 name: "SPDX-license-identifier-GPL-3.0",
768 conditions: ["restricted"],
769 url: "https://spdx.org/licenses/GPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000770}
771
772license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800773 name: "SPDX-license-identifier-GPL-3.0+",
774 conditions: ["restricted"],
775 url: "https://spdx.org/licenses/GPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000776}
777
778license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800779 name: "SPDX-license-identifier-GPL-3.0-only",
780 conditions: ["restricted"],
781 url: "https://spdx.org/licenses/GPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000782}
783
784license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800785 name: "SPDX-license-identifier-GPL-3.0-or-later",
786 conditions: ["restricted"],
787 url: "https://spdx.org/licenses/GPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000788}
789
790license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800791 name: "SPDX-license-identifier-GPL-3.0-with-GCC-exception",
792 conditions: ["restricted"],
793 url: "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000794}
795
796license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800797 name: "SPDX-license-identifier-GPL-3.0-with-autoconf-exception",
798 conditions: ["restricted"],
799 url: "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000800}
801
802license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800803 name: "SPDX-license-identifier-GPL-with-classpath-exception",
804 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000805}
806
807license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800808 name: "SPDX-license-identifier-HPND",
809 conditions: ["notice"],
810 url: "https://spdx.org/licenses/HPND.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000811}
812
813license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800814 name: "SPDX-license-identifier-ICU",
815 conditions: ["notice"],
816 url: "https://spdx.org/licenses/ICU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000817}
818
819license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800820 name: "SPDX-license-identifier-ISC",
821 conditions: ["notice"],
822 url: "https://spdx.org/licenses/ISC.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000823}
824
825license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800826 name: "SPDX-license-identifier-JSON",
827 conditions: ["notice"],
828 url: "https://spdx.org/licenses/JSON.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000829}
830
831license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800832 name: "SPDX-license-identifier-LGPL",
833 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000834}
835
836license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800837 name: "SPDX-license-identifier-LGPL-2.0",
838 conditions: ["restricted"],
839 url: "https://spdx.org/licenses/LGPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000840}
841
842license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800843 name: "SPDX-license-identifier-LGPL-2.0+",
844 conditions: ["restricted"],
845 url: "https://spdx.org/licenses/LGPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000846}
847
848license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800849 name: "SPDX-license-identifier-LGPL-2.0-only",
850 conditions: ["restricted"],
851 url: "https://spdx.org/licenses/LGPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000852}
853
854license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800855 name: "SPDX-license-identifier-LGPL-2.0-or-later",
856 conditions: ["restricted"],
857 url: "https://spdx.org/licenses/LGPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000858}
859
860license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800861 name: "SPDX-license-identifier-LGPL-2.1",
862 conditions: ["restricted"],
863 url: "https://spdx.org/licenses/LGPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000864}
865
866license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800867 name: "SPDX-license-identifier-LGPL-2.1+",
868 conditions: ["restricted"],
869 url: "https://spdx.org/licenses/LGPL-2.1+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000870}
871
872license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800873 name: "SPDX-license-identifier-LGPL-2.1-only",
874 conditions: ["restricted"],
875 url: "https://spdx.org/licenses/LGPL-2.1-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000876}
877
878license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800879 name: "SPDX-license-identifier-LGPL-2.1-or-later",
880 conditions: ["restricted"],
881 url: "https://spdx.org/licenses/LGPL-2.1-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000882}
883
884license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800885 name: "SPDX-license-identifier-LGPL-3.0",
886 conditions: ["restricted"],
887 url: "https://spdx.org/licenses/LGPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000888}
889
890license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800891 name: "SPDX-license-identifier-LGPL-3.0+",
892 conditions: ["restricted"],
893 url: "https://spdx.org/licenses/LGPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000894}
895
896license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800897 name: "SPDX-license-identifier-LGPL-3.0-only",
898 conditions: ["restricted"],
899 url: "https://spdx.org/licenses/LGPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000900}
901
902license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800903 name: "SPDX-license-identifier-LGPL-3.0-or-later",
904 conditions: ["restricted"],
905 url: "https://spdx.org/licenses/LGPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000906}
907
908license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800909 name: "SPDX-license-identifier-LGPLLR",
910 conditions: ["restricted"],
911 url: "https://spdx.org/licenses/LGPLLR.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000912}
913
914license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800915 name: "SPDX-license-identifier-LPL-1.02",
916 conditions: ["notice"],
917 url: "https://spdx.org/licenses/LPL-1.02.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000918}
919
920license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800921 name: "SPDX-license-identifier-MIT",
922 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000923}
924
925license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800926 name: "SPDX-license-identifier-MIT-0",
927 conditions: ["notice"],
928 url: "https://spdx.org/licenses/MIT-0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000929}
930
931license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800932 name: "SPDX-license-identifier-MIT-CMU",
933 conditions: ["notice"],
934 url: "https://spdx.org/licenses/MIT-CMU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000935}
936
937license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800938 name: "SPDX-license-identifier-MIT-advertising",
939 conditions: ["notice"],
940 url: "https://spdx.org/licenses/MIT-advertising.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000941}
942
943license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800944 name: "SPDX-license-identifier-MIT-enna",
945 conditions: ["notice"],
946 url: "https://spdx.org/licenses/MIT-enna.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000947}
948
949license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800950 name: "SPDX-license-identifier-MIT-feh",
951 conditions: ["notice"],
952 url: "https://spdx.org/licenses/MIT-feh.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000953}
954
955license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800956 name: "SPDX-license-identifier-MITNFA",
957 conditions: ["notice"],
958 url: "https://spdx.org/licenses/MITNFA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000959}
960
961license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800962 name: "SPDX-license-identifier-MPL",
963 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000964}
965
966license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800967 name: "SPDX-license-identifier-MPL-1.0",
968 conditions: ["reciprocal"],
969 url: "https://spdx.org/licenses/MPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000970}
971
972license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800973 name: "SPDX-license-identifier-MPL-1.1",
974 conditions: ["reciprocal"],
975 url: "https://spdx.org/licenses/MPL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000976}
977
978license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800979 name: "SPDX-license-identifier-MPL-2.0",
980 conditions: ["reciprocal"],
981 url: "https://spdx.org/licenses/MPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000982}
983
984license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800985 name: "SPDX-license-identifier-MPL-2.0-no-copyleft-exception",
986 conditions: ["reciprocal"],
987 url: "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000988}
989
990license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800991 name: "SPDX-license-identifier-MS-PL",
992 conditions: ["notice"],
993 url: "https://spdx.org/licenses/MS-PL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000994}
995
996license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800997 name: "SPDX-license-identifier-MS-RL",
998 conditions: ["by_exception_only"],
999 url: "https://spdx.org/licenses/MS-RL.html",
1000}
1001
1002license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001003 name: "SPDX-license-identifier-NCSA",
1004 conditions: ["notice"],
1005 url: "https://spdx.org/licenses/NCSA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001006}
1007
1008license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001009 name: "SPDX-license-identifier-OFL",
1010 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001011}
1012
1013license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001014 name: "SPDX-license-identifier-OFL-1.0",
1015 conditions: ["by_exception_only"],
1016 url: "https://spdx.org/licenses/OFL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001017}
1018
1019license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001020 name: "SPDX-license-identifier-OFL-1.0-RFN",
1021 conditions: ["by_exception_only"],
1022 url: "https://spdx.org/licenses/OFL-1.0-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001023}
1024
1025license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001026 name: "SPDX-license-identifier-OFL-1.0-no-RFN",
1027 conditions: ["by_exception_only"],
1028 url: "https://spdx.org/licenses/OFL-1.0-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001029}
1030
1031license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001032 name: "SPDX-license-identifier-OFL-1.1",
1033 conditions: ["by_exception_only"],
1034 url: "https://spdx.org/licenses/OFL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001035}
1036
1037license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001038 name: "SPDX-license-identifier-OFL-1.1-RFN",
1039 conditions: ["by_exception_only"],
1040 url: "https://spdx.org/licenses/OFL-1.1-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001041}
1042
1043license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001044 name: "SPDX-license-identifier-OFL-1.1-no-RFN",
1045 conditions: ["by_exception_only"],
1046 url: "https://spdx.org/licenses/OFL-1.1-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001047}
1048
1049license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001050 name: "SPDX-license-identifier-OpenSSL",
1051 conditions: ["notice"],
1052 url: "https://spdx.org/licenses/OpenSSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001053}
1054
1055license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001056 name: "SPDX-license-identifier-PSF-2.0",
1057 conditions: ["notice"],
1058 url: "https://spdx.org/licenses/PSF-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001059}
1060
1061license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001062 name: "SPDX-license-identifier-SISSL",
1063 conditions: [
1064 "by_exception_only",
1065 "not_allowed",
1066 ],
1067 url: "https://spdx.org/licenses/SISSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001068}
1069
1070license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001071 name: "SPDX-license-identifier-SISSL-1.2",
1072 conditions: [
1073 "by_exception_only",
1074 "not_allowed",
1075 ],
1076 url: "https://spdx.org/licenses/SISSL-1.2.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001077}
1078
1079license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001080 name: "SPDX-license-identifier-SPL-1.0",
1081 conditions: [
1082 "by_exception_only",
1083 "reciprocal",
1084 ],
1085 url: "https://spdx.org/licenses/SPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001086}
1087
1088license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001089 name: "SPDX-license-identifier-SSPL",
1090 conditions: [
1091 "by_exception_only",
1092 "not_allowed",
1093 ],
1094 url: "https://spdx.org/licenses/SSPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001095}
1096
1097license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001098 name: "SPDX-license-identifier-UPL-1.0",
1099 conditions: ["notice"],
1100 url: "https://spdx.org/licenses/UPL-1.-.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001101}
1102
1103license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001104 name: "SPDX-license-identifier-Unicode-DFS",
1105 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001106}
1107
1108license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001109 name: "SPDX-license-identifier-Unicode-DFS-2015",
1110 conditions: ["notice"],
1111 url: "https://spdx.org/licenses/Unicode-DFS-2015.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001112}
1113
1114license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001115 name: "SPDX-license-identifier-Unicode-DFS-2016",
1116 conditions: ["notice"],
1117 url: "https://spdx.org/licenses/Unicode-DFS-2016.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001118}
1119
1120license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001121 name: "SPDX-license-identifier-Unlicense",
1122 conditions: ["unencumbered"],
1123 url: "https://spdx.org/licenses/Unlicense.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001124}
1125
1126license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001127 name: "SPDX-license-identifier-W3C",
1128 conditions: ["notice"],
1129 url: "https://spdx.org/licenses/W3C.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001130}
1131
1132license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001133 name: "SPDX-license-identifier-W3C-19980720",
1134 conditions: ["notice"],
1135 url: "https://spdx.org/licenses/W3C-19980720.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001136}
1137
1138license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001139 name: "SPDX-license-identifier-W3C-20150513",
1140 conditions: ["notice"],
1141 url: "https://spdx.org/licenses/W3C-20150513.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001142}
1143
1144license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001145 name: "SPDX-license-identifier-WTFPL",
Bob Badour7a105302021-02-02 12:08:28 -08001146 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -08001147 url: "https://spdx.org/licenses/WTFPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001148}
1149
1150license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001151 name: "SPDX-license-identifier-Watcom-1.0",
1152 conditions: [
1153 "by_exception_only",
1154 "not_allowed",
1155 ],
1156 url: "https://spdx.org/licenses/Watcom-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001157}
1158
1159license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001160 name: "SPDX-license-identifier-Xnet",
1161 conditions: ["notice"],
1162 url: "https://spdx.org/licenses/Xnet.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001163}
1164
1165license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001166 name: "SPDX-license-identifier-ZPL",
1167 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001168}
1169
1170license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001171 name: "SPDX-license-identifier-ZPL-1.1",
1172 conditions: ["notice"],
1173 url: "https://spdx.org/licenses/ZPL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001174}
1175
1176license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001177 name: "SPDX-license-identifier-ZPL-2.0",
1178 conditions: ["notice"],
1179 url: "https://spdx.org/licenses/ZPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001180}
1181
1182license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001183 name: "SPDX-license-identifier-ZPL-2.1",
1184 conditions: ["notice"],
1185 url: "https://spdx.org/licenses/ZPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001186}
1187
1188license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001189 name: "SPDX-license-identifier-Zend-2.0",
1190 conditions: ["notice"],
1191 url: "https://spdx.org/licenses/Zend-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001192}
1193
1194license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001195 name: "SPDX-license-identifier-Zlib",
1196 conditions: ["notice"],
1197 url: "https://spdx.org/licenses/Zlib.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001198}
1199
1200license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001201 name: "SPDX-license-identifier-libtiff",
1202 conditions: ["notice"],
1203 url: "https://spdx.org/licenses/libtiff.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001204}
1205
Bob Badourb80dfee2021-01-07 03:34:31 +00001206// Legacy license kinds -- do not add new references -- use an spdx kind instead.
1207license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001208 name: "legacy_unknown",
1209 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001210}
1211
1212license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001213 name: "legacy_unencumbered",
1214 conditions: ["unencumbered"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001215}
1216
1217license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001218 name: "legacy_permissive",
1219 conditions: ["permissive"],
Bob Badour73056ea2021-01-21 08:53:58 -08001220}
1221
1222license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001223 name: "legacy_notice",
1224 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001225}
1226
1227license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001228 name: "legacy_reciprocal",
1229 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001230}
1231
1232license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001233 name: "legacy_restricted",
1234 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001235}
1236
1237license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001238 name: "legacy_by_exception_only",
1239 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001240}
1241
1242license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -08001243 name: "legacy_not_a_contribution",
1244 conditions: [
1245 "by_exception_only",
1246 "not_allowed",
1247 ],
1248}
1249
1250license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001251 name: "legacy_not_allowed",
1252 conditions: [
1253 "by_exception_only",
1254 "not_allowed",
1255 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001256}
1257
1258license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001259 name: "legacy_proprietary",
1260 conditions: [
1261 "by_exception_only",
1262 "not_allowed",
1263 "proprietary",
1264 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001265}