File: copyright_hints

package info (click to toggle)
libstring-license-perl 0.0.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,900 kB
  • sloc: perl: 1,309; cpp: 360; ansic: 210; python: 27; ruby: 21; xml: 16; sh: 8; makefile: 3
file content (1480 lines) | stat: -rw-r--r-- 47,204 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: FIXME
Upstream-Contact: FIXME
Source: FIXME
Disclaimer: Autogenerated by licensecheck

Files: CREDITS
 Changes
 INSTALL
 META.yml
 Makefile.PL
 TODO.md
 debian/control
 debian/copyright-check
 debian/gbp.conf
 debian/rules
 debian/source/format
 debian/source/lintian-overrides
 debian/upstream/metadata
 debian/watch
 dist.ini
 t/OSI.t
 t/S-L-Names-Custom.t
 t/S-L-Names-SPDX.t
 t/SPDX.t
 t/Software-License.t
 t/basic-lib-no-RE2.t
 t/devscripts.t
 t/exception.t
 t/fedora.t
 t/fedora/MIT-Bellcore.txt
 t/fedora/MIT-Old-Style-disclaimer-no-doc.txt
 t/fedora/MIT-UnixCrypt-Variant.txt
 t/fedora/README
 t/flaws.t
 t/flaws/generated/gslcdf-module.c
 t/flaws/generated/mkinstalldirs
 t/grant.t
 t/grant/CC-BY-SA_and_more/WMLA
 t/lib/Test2/Require/TestCorpus.pm
 t/lib/Test2/ScanCode.pm
 t/lib/Uncruft.pm
 t/license.t
Copyright: NONE
License: UNKNOWN
 FIXME

Files: t/flaws/generated/compile
 t/flaws/generated/config.guess
 t/flaws/generated/config.sub
 t/flaws/generated/depcomp
 t/flaws/generated/missing
Copyright: 1992-2009, Free Software Foundation, Inc.
  1996-2020, Free Software Foundation, Inc.
  1999-2020, Free Software Foundation, Inc.
License: GPL-2+ with Autoconf-data exception
 FIXME

Files: t/devscripts/bug-559429
 t/devscripts/gpl-2
 t/devscripts/gpl-2-comma.sh
 t/devscripts/gpl-2-incorrect-address
Copyright: 2012, Devscripts developers
License: GPL-2
 FIXME

Files: lib/String/License/Naming.pm
 lib/String/License/Naming/Custom.pm
 lib/String/License/Naming/SPDX.pm
Copyright: 2023, Jonas Smedegaard
License: AGPL-3+
 FIXME

Files: t/OSI/BSL-1.0
 t/SPDX/BSL-1.0.txt
 t/fedora/MIT-Thrift.txt
Copyright: NONE
License: BSL-1.0
 FIXME

Files: META.json
 t/exception/Font/LICENSE
Copyright: NONE
License: AGPL-3
 FIXME

Files: t/OSI/AGPL-3.0
 t/SPDX/AGPL-3.0.txt
Copyright: 2007, Free Software Foundation, Inc. <http://fsf.org/>
License: AGPL-3
 FIXME

Files: t/OSI/Apache-2.0
 t/SPDX/Apache-2.0.txt
Copyright: NONE
License: Apache-2.0
 FIXME

Files: t/devscripts/bsd-3-clause-authorsany.c
 t/devscripts/bsd-3-clause.cpp
Copyright: 2012, Devscripts developers
  2013, Devscripts developers
License: BSD-3-clause
 FIXME

Files: t/OSI/CECILL-2.1
 t/SPDX/CECILL-2.1.txt
Copyright: NONE
License: CECILL-2.1
 FIXME

Files: t/OSI/EPL-1.0
 t/SPDX/EPL-1.0.txt
Copyright: rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
License: EPL-1.0
 FIXME

Files: t/OSI/MIT
 t/SPDX/MIT.txt
Copyright: NONE
License: Expat
 FIXME

Files: t/devscripts/gpl-2+
 t/devscripts/gpl-2+.scm
Copyright: 2012, Devscripts developers
License: GPL-2+
 FIXME

Files: t/devscripts/gpl-3-only.c
 t/devscripts/gpl-3.sh
Copyright: 2012, Devscripts developers
License: GPL-3
 FIXME

Files: t/devscripts/gpl-3+
 t/devscripts/gpl-variation.c
Copyright: 2012, Devscripts developers
  2013, Devscripts developers
License: GPL-3+
 FIXME

Files: t/SPDX/ICU.txt
 t/fedora/MIT-ICU.txt
Copyright: 1995-2006, International Business Machines Corporation and others
  1995-2014, International Business Machines Corporation and others
License: ICU
 FIXME

Files: t/OSI/LGPL-2.0
 t/SPDX/LGPL-2.0.txt
Copyright: 1991, Free Software Foundation, Inc.
License: LGPL-2
 FIXME

Files: t/OSI/LGPL-2.1
 t/SPDX/LGPL-2.1.txt
Copyright: 1991, 1999, Free Software Foundation, Inc.
License: LGPL-2.1
 FIXME

Files: t/SPDX/MIT-CMU.txt
 t/fedora/MIT-CMU.txt
Copyright: 1989, 1991-1992, Carnegie Mellon University
  1996, 1998-2000, The Regents of the University of California
License: MIT-CMU
 FIXME

Files: t/SPDX/MIT-enna.txt
 t/fedora/MIT-enna.txt
Copyright: 2000, Carsten Haitzler and various contributors (see AUTHORS)
License: MIT-enna
 FIXME

Files: t/SPDX/MIT-feh.txt
 t/fedora/MIT-feh.txt
Copyright: NONE
License: MIT-feh
 FIXME

Files: t/OSI/MPL-1.0
 t/SPDX/MPL-1.0.txt
Copyright: any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License.
License: MPL-1.0
 FIXME

Files: t/devscripts/mpl-2.0-comma.sh
 t/devscripts/mpl-2.0.sh
Copyright: devscripts developers
License: MPL-2.0
 FIXME

Files: t/OSI/PostgreSQL
 t/fedora/PostgreSQL.txt
Copyright: NONE
License: PostgreSQL
 FIXME

Files: t/OSI/QPL-1.0
 t/SPDX/QPL-1.0.txt
Copyright: 1999, Trolltech AS, Norway.
  1999-2005, Trolltech AS, Norway.
  trademark notices and disclaimers, as released by the initial developer of the Software, is distributed.
License: QPL-1.0
 FIXME

Files: t/OSI/RPSL-1.0
 t/SPDX/RPSL-1.0.txt
Copyright: 1995-2002, RealNetworks, Inc. and/or its licensors.
  RealNetworks, Inc., 1995-2002.
  You agree not use any information derived from Your use and review of the Covered Code, including but not limited to any algorithms or inventions that may be contained in the Covered Code, for the purpose of asserting any of Your patent rights, or assisting a third party to assert any of its patent rights, against Licensor or any Contributor.
  automatically without notice from Licensor if You, at any time during the term of this License, commence an action for patent infringement against Licensor (including by cross-claim or counter claim in a lawsuit);
License: RPSL-1.0
 FIXME

Files: t/flaws/generated/Makefile.in
 t/flaws/generated/testsuite
Copyright: 1994-2020, Free Software Foundation, Inc.
  2009-2012, Free Software Foundation, Inc.
License: UNKNOWN
 FIXME

Files: t/OSI/Zlib
 t/SPDX/Zlib.txt
Copyright: NONE
License: Zlib
 FIXME

Files: t/exception/OpenSSL/pokerth.cpp
Copyright: 2006-2012, Felix Hammer, Florian Thauer, Lothar May
License: (AGPL-3+ and/or OpenSSL) with OpenSSL exception
 FIXME

Files: t/exception/Bison/grammar.cxx
Copyright: 1984, 1989-1990, Free Software Foundation, Inc.
License: (Apache-2.0 and/or GPL-2+ and/or MPL-2.0) with Bison-1.24 exception
 FIXME

Files: t/exception/Classpath/CDDL-GPL-2-CP
Copyright: 1989, 1991, Free Software Foundation, Inc.
  the
  the combination of files
License: (CDDL-1.0 and/or GPL-2) with Classpath-2.0 exception
 FIXME

Files: t/exception/EPL/ts_proxy_http.erl
Copyright: Nicolas Niclausse 2005
License: (EPL and/or GPL-2+) with EPL-MPL-library exception
 FIXME

Files: t/exception/EPL/mdb_bot_sup.erl
Copyright: NONE
License: (EPL and/or GPL-2+) with EPL-library exception
 FIXME

Files: t/exception/SDC/sdc.py
Copyright: 2010-2015, Jarosław Staniek <staniek@kde.org>
License: (GPL-2+ and/or LGPL-2.1+) with SDC exception
 FIXME

Files: t/exception/Qt/qsslconfiguration.h
Copyright: 2015, The Qt Company Ltd.
License: (GPL-3 and/or LGPL-2.1 or LGPL-3) with Qt-GPL-OpenSSL_AND_Qt-LGPL-1.1 exception
 FIXME

Files: t/grant/misc/rpplexer.h
Copyright: 2001-2004, Roberto Raggi
  2015, The Qt Company Ltd.
License: (GPL-3 and/or LGPL-2.1 or LGPL-3) with Qt-LGPL-1.1 exception
 FIXME

Files: t/exception/Qt/qatomic_aarch64.h
Copyright: 2012, Digia Plc and/or its subsidiary(-ies).
License: (GPL-3 and/or LGPL-2.1) with Qt-LGPL-1.1 exception
 FIXME

Files: t/exception/OpenSSL/retr.h
Copyright: 1996-2011, 2015, 2018-2019, Free Software Foundation,
License: (GPL-3+ and/or OpenSSL) with OpenSSL exception
 FIXME

Files: t/SPDX/AFL-1.1.txt
Copyright: 2002, Lawrence E. Rosen.
License: AFL-1.1
 FIXME

Files: t/SPDX/AFL-1.2.txt
Copyright: 2002, Lawrence E. Rosen.
License: AFL-1.2
 FIXME

Files: t/SPDX/AFL-2.0.txt
Copyright: 2003, Lawrence E. Rosen.
License: AFL-2.0
 FIXME

Files: t/grant/AFL_and_more/xdgmime.c
Copyright: 2003-2004, Jonathan Blandford <jrb@alum.mit.edu>
  2003-2004, Red Hat, Inc.
License: AFL-2.0 and/or LGPL-2+
 FIXME

Files: t/SPDX/AFL-2.1.txt
Copyright: 2003-2004, Lawrence E. Rosen.
License: AFL-2.1
 FIXME

Files: t/OSI/AFL-3.0
Copyright: 2005, Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Academic Free License" or "AFL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under <insert your license name here>" or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process.
  exceptions and limitations (including "fair use" or "fair dealing"). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c).
  to do the following:
License: AFL-3.0
 FIXME

Files: t/SPDX/AFL-3.0.txt
Copyright: 2005, Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Academic Free License" or "AFL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under <insert your license name here>" or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process.
  exceptions and limitations (including “fair use” or “fair dealing”). This License shall terminate immediately and You may no longer exercise any of the rights granted to You by this License upon your failure to honor the conditions in Section 1(c).
  to do the following:
License: AFL-3.0
 FIXME

Files: t/devscripts/academic.h
Copyright: 2004-2008, Paul R. Holser, Jr.
License: AFL-3.0
 FIXME

Files: t/SPDX/AGPL-1.0.txt
Copyright: 1989, 1991, Free Software Foundation, Inc. made with their permission. Section 2(d) has been added to cover use of software over a computer network.
  2002, Affero Inc.
510 Third Street - Suite 225, San Francisco, CA 94107, USA
License: AGPL-1
 FIXME

Files: LICENSE
Copyright: 2007, Free Software Foundation, Inc. <http://fsf.org/>
  2024, Jonas Smedegaard.
License: AGPL-3
 FIXME

Files: COPYRIGHT
Copyright: 2009, Moritz Lenz and the SVG::Plot contributors (see file.
  2016, Jonas Smedegaard.
  2020, Toby Inkster.
  2023, Jonas Smedegaard.
  2024, Jonas Smedegaard.
  2024, the copyright holder(s).
  CREDITS
  None
  Unknown
License: AGPL-3 and/or Artistic-1.0 and/or Artistic-2.0 and/or GPL-1 and/or public-domain
 FIXME

Files: t/grant/AGPL/setup.py
Copyright: NONE
License: AGPL-3+
 FIXME

Files: t/grant/AGPL/fastx.c
Copyright: 2009-2013, A. Gordon (assafgordon@gmail.com)
License: AGPL-3+
 FIXME

Files: t/grant/AGPL/fet.cpp
Copyright: 2002, by Lalescu Liviu
License: AGPL-3+
 FIXME

Files: lib/String/License.pm
Copyright: 2007-2008, Adam D. Barratt
  2016-2023, Jonas Smedegaard
  2017-2022, Purism SPC
License: AGPL-3+ and/or Expat and/or GPL-2 and/or Perl
 FIXME

Files: README
Copyright: 2007-2008, Adam D. Barratt
  2016-2023, Jonas Smedegaard
  2017-2022, Purism SPC
License: AGPL-3+ and/or GPL-2 and/or Perl
 FIXME

Files: t/fedora/MIT-Adobe-Glyph-List.txt
Copyright: 1997-1998, 2002, 2007, Adobe Systems Incorporated
License: Adobe-Glyph
 FIXME

Files: t/SPDX/Aladdin.txt
Copyright: 1994-1995, 1997-1999, Aladdin Enterprises,
Menlo Park, California, U.S.A.
License: Aladdin-8
 FIXME

Files: t/SPDX/Apache-1.1.txt
Copyright: 2000, The Apache Software Foundation.
License: Apache-1.1
 FIXME

Files: t/grant/Apache/one_helper.rb
Copyright: 2002-2015, OpenNebula Project (OpenNebula.org), C12G Labs
License: Apache-2.0
 FIXME

Files: t/grant/Apache_and_more/PIE.htc
Copyright: NONE
License: Apache-2.0 or GPL-2
 FIXME

Files: t/grant/Apache_and_more/select2.js
Copyright: 2012, Igor Vaynberg
License: Apache-2.0 or GPL-2
 FIXME

Files: t/grant/Apache_and_more/rust.lang
Copyright: 2013-2015, The Rust Project Developers.
License: Apache-2.0 or MIT~unspecified
 FIXME

Files: t/SPDX/Artistic-1.0.txt
Copyright: NONE
License: Artistic-1.0
 FIXME

Files: t/OSI/Artistic-1.0-Perl
Copyright: NONE
License: Artistic-1.0-Perl
 FIXME

Files: t/devscripts/artistic-2-0-modules.pm
Copyright: 2009, Moritz Lenz and the SVG::Plot contributors (see file
License: Artistic-2.0
 FIXME

Files: t/devscripts/artistic-2-0.txt
Copyright: 2000, Testophilus Testownik <tester@testity.org>.
  2000-2006, The Perl Foundation.
  allow anyone who receives a copy of the Modified Version to
License: Artistic-2.0
 FIXME

Files: t/SPDX/Artistic-2.0.txt
Copyright: 2000-2006, The Perl Foundation.
  allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under
License: Artistic-2.0
 FIXME

Files: t/OSI/Artistic-2.0
Copyright: allow anyone who receives a copy of the
License: Artistic-2.0
 FIXME

Files: t/devscripts/bsd-1-clause-1.c
Copyright: 1995, 1999, Berkeley Software Design, Inc.
License: BSD-1-Clause
 FIXME

Files: t/OSI/BSD-2-Clause-Views
Copyright: NONE
License: BSD-2-Clause-Views
 FIXME

Files: t/SPDX/BSD-2-Clause.txt
Copyright: <<var;name=copyright;original= <year> <owner>;match=.+>>
License: BSD-2-clause
 FIXME

Files: t/devscripts/bsd.f
Copyright: 2012, Devscripts developers
License: BSD-2-clause
 FIXME

Files: t/OSI/BSD-3-Clause
Copyright: NONE
License: BSD-3-clause
 FIXME

Files: t/SPDX/BSD-3-Clause.txt
Copyright: <<var;name=copyright;original= <year> <owner>;match=.+>>.
License: BSD-3-clause
 FIXME

Files: t/devscripts/mame-style.c
Copyright: Miodrag Milanovic
License: BSD-3-clause
 FIXME

Files: t/SPDX/BSD-4-Clause.txt
Copyright: <<var;name=copyright;original=<year> <owner>;match=.+>>.
License: BSD-4-clause
 FIXME

Files: t/devscripts/boost.h
Copyright: 2006, Nemanja Trifunovic
License: BSL-1.0
 FIXME

Files: t/devscripts/beerware.cpp
Copyright: 2012, Devscripts developers
License: Beerware
 FIXME

Files: t/SPDX/CC-BY-1.0.txt
Copyright: trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.
License: CC-BY-1.0
 FIXME

Files: t/SPDX/CC-BY-2.0.txt
Copyright: NONE
License: CC-BY-2.0
 FIXME

Files: t/SPDX/CC-BY-2.5.txt
Copyright: NONE
License: CC-BY-2.5
 FIXME

Files: t/SPDX/CC-BY-3.0.txt
Copyright: Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
  protection under copyright law or other applicable laws.
License: CC-BY-3.0
 FIXME

Files: t/SPDX/CC-BY-4.0.txt
Copyright: including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
  resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
License: CC-BY-4.0
 FIXME

Files: t/SPDX/CC-BY-NC-1.0.txt
Copyright: trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party. EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF THE WORK.
License: CC-BY-NC-1.0
 FIXME

Files: t/SPDX/CC-BY-NC-2.0.txt
Copyright: NONE
License: CC-BY-NC-2.0
 FIXME

Files: t/SPDX/CC-BY-NC-2.5.txt
Copyright: NONE
License: CC-BY-NC-2.5
 FIXME

Files: t/SPDX/CC-BY-NC-3.0.txt
Copyright: Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
  protection under copyright law or other applicable laws.
License: CC-BY-NC-3.0
 FIXME

Files: t/SPDX/CC-BY-NC-4.0.txt
Copyright: including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
  resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
License: CC-BY-NC-4.0
 FIXME

Files: t/SPDX/CC-BY-NC-ND-1.0.txt
Copyright: trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.
License: CC-BY-NC-ND-1.0
 FIXME

Files: t/SPDX/CC-BY-NC-ND-2.0.txt
Copyright: NONE
License: CC-BY-NC-ND-2.0
 FIXME

Files: t/SPDX/CC-BY-NC-ND-2.5.txt
Copyright: NONE
License: CC-BY-NC-ND-2.5
 FIXME

Files: t/SPDX/CC-BY-NC-ND-3.0.txt
Copyright: Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
  protection under copyright law or other applicable laws.
License: CC-BY-NC-ND-3.0
 FIXME

Files: t/SPDX/CC-BY-NC-ND-4.0.txt
Copyright: including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
  resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
License: CC-BY-NC-ND-4.0
 FIXME

Files: t/SPDX/CC-BY-NC-SA-1.0.txt
Copyright: trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.
License: CC-BY-NC-SA-1.0
 FIXME

Files: t/SPDX/CC-BY-NC-SA-2.0.txt
Copyright: NONE
License: CC-BY-NC-SA-2.0
 FIXME

Files: t/SPDX/CC-BY-NC-SA-2.5.txt
Copyright: NONE
License: CC-BY-NC-SA-2.5
 FIXME

Files: t/SPDX/CC-BY-NC-SA-3.0.txt
Copyright: Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
  protection under copyright law or other applicable laws.
License: CC-BY-NC-SA-3.0
 FIXME

Files: t/SPDX/CC-BY-NC-SA-4.0.txt
Copyright: including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
  resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
License: CC-BY-NC-SA-4.0
 FIXME

Files: t/SPDX/CC-BY-ND-1.0.txt
Copyright: trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.
License: CC-BY-ND-1.0
 FIXME

Files: t/SPDX/CC-BY-ND-2.0.txt
Copyright: NONE
License: CC-BY-ND-2.0
 FIXME

Files: t/SPDX/CC-BY-ND-2.5.txt
Copyright: NONE
License: CC-BY-ND-2.5
 FIXME

Files: t/SPDX/CC-BY-ND-3.0.txt
Copyright: Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
  protection under copyright law or other applicable laws.
License: CC-BY-ND-3.0
 FIXME

Files: t/SPDX/CC-BY-ND-4.0.txt
Copyright: including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
  resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
License: CC-BY-ND-4.0
 FIXME

Files: t/SPDX/CC-BY-SA-1.0.txt
Copyright: trademark, publicity rights, common law rights or any other right of any third party or constitute defamation, invasion of privacy or other tortious injury to any third party.
License: CC-BY-SA-1.0
 FIXME

Files: t/SPDX/CC-BY-SA-2.0.txt
Copyright: NONE
License: CC-BY-SA-2.0
 FIXME

Files: t/grant/CC-BY-SA_and_more/cewl.rb
Copyright: Robin Wood 2016
License: CC-BY-SA-2.0
 FIXME

Files: t/SPDX/CC-BY-SA-2.5.txt
Copyright: NONE
License: CC-BY-SA-2.5
 FIXME

Files: t/grant/CC-BY-SA_and_more/utilities.scad
Copyright: NONE
License: CC-BY-SA-3.0
 FIXME

Files: t/SPDX/CC-BY-SA-3.0.txt
Copyright: Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
  protection under copyright law or other applicable laws.
License: CC-BY-SA-3.0
 FIXME

Files: t/SPDX/CC-BY-SA-4.0.txt
Copyright: including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
  resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
License: CC-BY-SA-4.0
 FIXME

Files: t/SPDX/CC0-1.0.txt
Copyright: NONE
License: CC0-1.0
 FIXME

Files: t/devscripts/cddl.h
Copyright: 2006, Sun Microsystems, Inc.
License: CDDL
 FIXME

Files: t/OSI/CDDL-1.0
Copyright: patent or trademark notices contained within the Covered
  the
License: CDDL-1.0
 FIXME

Files: t/SPDX/CDDL-1.0.txt
Copyright: the combination of files containing Original Software with files containing Modifications, in each case including portions thereof.
License: CDDL-1.0
 FIXME

Files: t/SPDX/CDDL-1.1.txt
Copyright: the combination of files containing Original Software with files containing Modifications, in each case including portions thereof.
License: CDDL-1.1
 FIXME

Files: t/SPDX/CECILL-1.0.txt
Copyright: NONE
License: CECILL-1.0
 FIXME

Files: t/SPDX/CECILL-1.1.txt
Copyright: NONE
License: CECILL-1.1
 FIXME

Files: t/SPDX/CECILL-2.0.txt
Copyright: NONE
License: CECILL-2.0
 FIXME

Files: t/SPDX/CECILL-B.txt
Copyright: NONE
License: CECILL-B
 FIXME

Files: t/SPDX/CECILL-C.txt
Copyright: NONE
License: CECILL-C
 FIXME

Files: t/exception/Cecill/tv_implementpoly.reference
Copyright: 2006-2018
License: CECILL-C with Sollya-4.1 exception
 FIXME

Files: t/SPDX/Cube.txt
Copyright: 2001-2003, Wouter van Oortmerssen.
License: Cube
 FIXME

Files: t/fedora/MIT-PetSC.txt
Copyright: 1995-2010, UNIVERSITY OF CHICAGO
License: DSDP
 FIXME

Files: t/devscripts/epl.h
Copyright: 2004, 2006, IBM Corporation and others.
License: EPL-1.0
 FIXME

Files: t/grant/EPL_and_more/Activator.java
Copyright: 2011, Refractions Research Inc.
License: EPL-1.0
 FIXME

Files: t/SPDX/Eurosym.txt
Copyright: 1999-2002, Henrik Theiling
License: Eurosym
 FIXME

Files: t/devscripts/info-at-eof.h
Copyright: 1994-2012, Lua.org, PUC-Rio"
  1994-2012, Lua.org, PUC-Rio.
License: Expat
 FIXME

Files: t/fedora/MIT-sublicense.txt
Copyright: 1998-2000, Thai Open Source Software Center Ltd
License: Expat
 FIXME

Files: t/flaws/generated/configure
Copyright: 1992-1996, 1998-2012, Free Software Foundation, Inc.
License: FSFUL
 FIXME

Files: t/flaws/generated/aclocal.m4
Copyright: 1996-2020, Free Software Foundation, Inc.
License: FSFULLR
 FIXME

Files: t/SPDX/FTL.txt
Copyright: 1996-2000, David Turner, Robert Wilhelm, and Werner Lemberg.
  1996-2002, 2006, David Turner, Robert Wilhelm, and Werner Lemberg
License: FTL
 FIXME

Files: t/devscripts/freetype.c
Copyright: 2001, 2012, David Turner, Robert Wilhelm, and Werner Lemberg.
License: FTL
 FIXME

Files: t/fedora/MIT-Festival.txt
Copyright: NONE
License: Festival
 FIXME

Files: t/devscripts/gpl-no-version.h
Copyright: 2011, Wolfgang Hauck <wolfgang.hauck@gmx.de>.
License: GPL
 FIXME

Files: t/exception/Qt/main.cpp
Copyright: 2004-2008, Trolltech ASA.
License: GPL with Qt-GPL-Eclipse exception
 FIXME

Files: t/devscripts/gpl-1
Copyright: 2012, Devscripts developers
License: GPL-1+
 FIXME

Files: t/OSI/GPL-2.0
Copyright: 1989, 1991, Free Software Foundation, Inc.,
License: GPL-2
 FIXME

Files: t/encoding/copr-iso8859.h
Copyright: 2011, Heinrich M
License: GPL-2
 FIXME

Files: t/exception/non-GPL/buildnum.pl
Copyright: 2001, Sun Microsystems, Inc. Used by permission.
  2005, Red Hat, Inc.
License: GPL-2 with 389 exception
 FIXME

Files: t/exception/Classpath/LICENSE
Copyright: 1989, 1991, Free Software Foundation, Inc.
License: GPL-2 with Classpath-2.0 exception
 FIXME

Files: t/exception/Classpath/GPL-2-CP
Copyright: 1989, 1991, Free Software Foundation, Inc.
  the
License: GPL-2 with Classpath-2.0 exception
 FIXME

Files: t/exception/OpenSSL/LICENSE
Copyright: 1989, 1991, Free Software Foundation, Inc.,
  2002-2013, Simon Urbanek
License: GPL-2 with OpenSSL~s3 exception
 FIXME

Files: t/exception/Xerces/generator.cxx
Copyright: 2005-2014, Code Synthesis Tools CC
  2005-2014, Code Synthesis Tools CC "
License: GPL-2 with Xerces exception
 FIXME

Files: t/flaws/fsf_address/phy_lcn.c
Copyright: 2010, Broadcom Corporation
  2011, Rafał Miłecki <zajec5@gmail.com>
License: GPL-2+
 FIXME

Files: t/flaws/fsf_address/doschk.c
Copyright: 1993, DJ Delorie
License: GPL-2+
 FIXME

Files: t/flaws/fsf_address/makedoc.c
Copyright: 1990-1992, Free Software Foundation, Inc.
License: GPL-2+
 FIXME

Files: t/flaws/fsf_address/gnuplot-context.el
Copyright: 2012-2013, Jon Oddie <jonxfield@gmail.com>
License: GPL-2+
 FIXME

Files: t/encoding/copr-utf8.h
Copyright: 2001-2010, Paul 'bar' Stevénsön
  2004-2015, Oliva 'f00' Oberto
License: GPL-2+
 FIXME

Files: t/grant/MPL_and_more/symbolstore.py
Copyright: 2007, the Initial Developer.
License: GPL-2+ and/or GPL-2+ or LGPL-2.1+ and/or MPL-1.1
 FIXME

Files: t/exception/Autoconf/m4_ax_func_getopt_long.m4
Copyright: 2008, Alexandre Duret-Lutz <adl@gnu.org>
License: GPL-2+ with Autoconf-2.0~Archive exception
 FIXME

Files: t/exception/Autoconf/autotroll.m4
Copyright: 2006-2018, Benoit Sigoure <benoit.sigoure@lrde.epita.fr>
  2012-2017, Werner Lemberg <wl@gnu.org>
License: GPL-2+ with Autoconf-2.0~AutoTroll exception
 FIXME

Files: t/exception/Autoconf/mkerrcodes1.awk
Copyright: 2003-2004, g10 Code GmbH
License: GPL-2+ with Autoconf-2.0~g10 exception
 FIXME

Files: t/exception/Autoconf/pkg.m4
Copyright: 2004, Scott James Remnant <scott@netsplit.com>.
License: GPL-2+ with Autoconf-data exception
 FIXME

Files: t/exception/GStreamer/hwp-properties-main.c
Copyright: 2000-2001, Eazel Inc.
  2003, Andrew Sobala <aes@gnome.org>
  2005, Bastien Nocera <hadess@hadess.net>
  2012, Changwoo Ryu <cwryu@debian.org
License: GPL-2+ with GStreamer exception
 FIXME

Files: t/exception/GStreamer/ev-properties-main.c
Copyright: 2000-2001, Eazel Inc.
  2003, Andrew Sobala <aes@gnome.org>
  2005, Bastien Nocera <hadess@hadess.net>
License: GPL-2+ with GStreamer exception
 FIXME

Files: t/exception/GStreamer/totem-object.c
Copyright: 2007, Bastien Nocera <hadess@hadess.net>
License: GPL-2+ with GStreamer exception
 FIXME

Files: t/exception/Proguard/GPL-with-Proguard-exception
Copyright: 1989, 1991, Free Software Foundation, Inc.,
  2002-2006, Eric Lafortune
License: GPL-2+ with Proguard exception
 FIXME

Files: t/exception/Proguard/LICENSE_exception.md
Copyright: 2002-2019, Guardsquare NV
License: GPL-2+ with Proguard exception
 FIXME

Files: t/exception/Qt/kcmaudiocd.h
Copyright: 2001, Carsten Duvenhorst <duvenhorst@m2.uni-hannover.de>
  2005, Benjamin Meyer <ben at meyerhome dot net>
License: GPL-2+ with Qt-kernel exception
 FIXME

Files: t/exception/Qt/konsolekalendaradd.h
Copyright: 2002-2004, Tuukka Pasanen <illuusio@mailcity.com>
  2003-2005, Allen Winter <winter@kde.org>
License: GPL-2+ with Qt-no-source exception
 FIXME

Files: t/exception/Warzone/COPYING.README
Copyright: NONE
License: GPL-2+ with Warzone exception
 FIXME

Files: t/exception/GCC/unwind-cxx.h
Copyright: 2001, Free Software Foundation, Inc.
License: GPL-2+ with mif exception
 FIXME

Files: t/exception/OpenSSL/simplexml.h
Copyright: 2008, Bryan Ischo <bryan@ischo.com>
License: GPL-3 with OpenSSL~s3 exception
 FIXME

Files: t/devscripts/comments-detection.h
Copyright: 2013, Devscripts developers.
License: GPL-3+
 FIXME

Files: t/devscripts/gpl-3+-with-rem-comment.xml
Copyright: 2008-2009, Dr. Michael Stehmann
License: GPL-3+
 FIXME

Files: t/flaws/no_fsf_address/update_fsf_address
Copyright: 2006, Free Software Foundation, Inc.
License: GPL-3+
 FIXME

Files: t/devscripts/gpl-3+.el
Copyright: 2004-2008, Thien-Thi Nguyen
License: GPL-3+
 FIXME

Files: t/exception/Autoconf/ax_pthread.m4
Copyright: 2008, Steven G. Johnson <stevenj@alum.mit.edu>
  2011, Daniel Richard G. <skunk@iSKUNK.ORG>
License: GPL-3+ with Autoconf-2.0~Archive exception
 FIXME

Files: t/exception/Bison/parse-date.c
Copyright: 1984, 1989-1990, 2000-2015, 2018, Free Software Foundation, Inc.
License: GPL-3+ with Bison-2.2 exception
 FIXME

Files: t/exception/FAUST/alsa-dsp.h
Copyright: 2003-2011, GRAME, Centre National de Creation Musicale
License: GPL-3+ with FAUST exception
 FIXME

Files: t/grant/NTP/install.sh
Copyright: 1991, the Massachusetts Institute of Technology
License: HPND-sell-variant
 FIXME

Files: t/fedora/MIT-DANSE/MIT-ICU.txt
Copyright: 2009, California Institute of Technology.
License: ICU
 FIXME

Files: t/OSI/ISC
Copyright: NONE
License: ISC
 FIXME

Files: t/devscripts/libuv-isc.am
Copyright: 2013, Ben Noordhuis <info@bnoordhuis.nl>
License: ISC
 FIXME

Files: t/SPDX/ISC.txt
Copyright: 1995-2003, Internet Software Consortium
  2004-2010, Internet Systems Consortium, Inc. ("ISC")
License: ISC
 FIXME

Files: t/grant/LGPL/PKG-INFO
Copyright: NONE
License: LGPL
 FIXME

Files: t/grant/LGPL/exr.h
Copyright: 2003, Brad Hards <bradh@frogmouth.net>
License: LGPL
 FIXME

Files: t/grant/LGPL/jitterbuf.h
Copyright: 2004-2005, Horizon Wimba, Inc.
License: LGPL
 FIXME

Files: t/grant/LGPL/dqblk_xfs.h
Copyright: 1995-2001, 2004, Silicon Graphics, Inc.
License: LGPL
 FIXME

Files: t/exception/OCaml/LICENSE.txt
Copyright: 1991, Free Software Foundation, Inc.
License: LGPL-2 with OCaml-LGPL-linking exception
 FIXME

Files: t/grant/LGPL/table.py
Copyright: 1998-1999, Bill Spitzak and others.
  2003, Andreas Held and others.
  2003, G. Ercolano
License: LGPL-2+
 FIXME

Files: t/flaws/fsf_address/HistAcc.tcc
Copyright: 1996, 1998-1999, 2001, 2003, Associated Universities, Inc. Washington DC, USA.
License: LGPL-2+
 FIXME

Files: t/exception/Libtool/lt__dirent.h
Copyright: 2001, 2004, 2006, Free Software Foundation, Inc.
License: LGPL-2+ with Libtool exception
 FIXME

Files: t/grant/LGPL/Model.pm
Copyright: 2005-2016, Dominique Dumont.
License: LGPL-2.1
 FIXME

Files: t/grant/LGPL/gnome.h
Copyright: 2000, 2011, IBM Corporation and others.
License: LGPL-2.1
 FIXME

Files: t/grant/LGPL/libotr.m4
Copyright: 2004-2007, Ian Goldberg, Chris Alexander, Nikita Borisov
License: LGPL-2.1
 FIXME

Files: t/grant/LGPL/criu.h
Copyright: 2013, Parallels, Inc. (www.parallels.com).
License: LGPL-2.1
 FIXME

Files: t/flaws/fsf_address/xfsaxstream.cxx
Copyright: 2000, Sun Microsystems, Inc.
  2008, IBM Corporation
License: LGPL-2.1 and/or SISSL
 FIXME

Files: t/grant/LGPL/videoplayer.cpp
Copyright: 2004-2007, Matthias Kretz <kretz@kde.org>
License: LGPL-2.1 or LGPL-3
 FIXME

Files: t/devscripts/comments-detection.txt
Copyright: NONE
License: LGPL-2.1+
 FIXME

Files: t/grant/LGPL/strv.c
Copyright: 2010, Lennart Poettering
  2015, Karel Zak <kzak@redhat.com>
License: LGPL-2.1+
 FIXME

Files: t/grant/LGPL_and_more/colamd.c
Copyright: 1998-2007, Timothy A. Davis
  this License,
  this License, and the Availability note are retained,
  this License, the
License: LGPL-2.1+ and/or LGPL-bdwgc
 FIXME

Files: t/exception/OpenSSL/crypto_openssl.c
Copyright: 2010-2019, Milan Broz
  2010-2019, Red Hat, Inc.
License: LGPL-2.1+ with OpenSSL~LGPL exception
 FIXME

Files: t/grant/LGPL/pic.c
Copyright: 2002, MandrakeSoft S.A.
  2008, Kevin O'Connor <kevin@koconnor.net>
License: LGPL-3
 FIXME

Files: t/devscripts/llgpl.lisp
Copyright: 2002, 2004, Sven Van Caekenberghe, Beta Nine BVBA.
License: LLGPL
 FIXME

Files: t/SPDX/Libpng.txt
Copyright: 1995-1996, Guy Eric Schalnat, Group 42, Inc.
  1996-1997, Andreas Digger
  1998-1999, Glenn Randers-Pehrson, and are distributed according to the same disclaimer and license as libpng-0.96, with the following individuals added to the list of Contributing Authors:
  2000-2002, Glenn Randers-Pehrson, and are distributed according to the same disclaimer and license as libpng-1.0.6 with the following individuals added to the list of Contributing Authors
  2004, 2006-2010, Glenn Randers-Pehrson, and are distributed according to the same disclaimer and license as libpng-1.2.5 with the following individual added to the list of Contributing Authors
License: Libpng
 FIXME

Files: t/fedora/MIT-Mlton.txt
Copyright: 1997-2000, the NEC Research Institute
  1999-2006, Henry Cejtin, Matthew Fluet, Suresh
License: MIT-CMU~warranty
 FIXME

Files: t/fedora/MIT-SMLNJ/MIT-Mlton.txt
Copyright: 1989-1998, Lucent Technologies
License: MIT-CMU~warranty
 FIXME

Files: t/fedora/MIT-Old-Style.txt
Copyright: NONE
License: MIT-Open-Group and/or NTP
 FIXME

Files: t/SPDX/MIT-advertising.txt
Copyright: 2000-2008, Carsten Haitzler, Geoff Harrison and various contributors Copyright (C) 2004-2008 Kim Woelders
License: MIT-advertising
 FIXME

Files: t/fedora/MIT-Another-Minimal.txt
Copyright: NONE
License: MIT~Boehm
 FIXME

Files: t/grant/MIT/gc.h
Copyright: 1988-1989, Hans-J. Boehm, Alan J. Demers
  1991-1995, Xerox Corporation.
  1996-1999, Silicon Graphics.
  1999, Hewlett-Packard Company.
  2000-2011, Hewlett-Packard Development Company.
  2007, Free Software Foundation, Inc
License: MIT~Boehm
 FIXME

Files: t/fedora/MIT-Epinions.txt
Copyright: 2000, Epinions, Inc.
License: MIT~Epinions
 FIXME

Files: t/fedora/MIT-HP.txt
Copyright: 1995, HEWLETT-PACKARD COMPANY
License: MIT~OSF
 FIXME

Files: t/fedora/MIT-OpenVision.txt
Copyright: OpenVision Technologies, Inc., 1996
License: MIT~OpenVision
 FIXME

Files: t/fedora/MIT-UnixCrypt.txt
Copyright: NONE
License: MIT~UnixCrypt
 FIXME

Files: t/fedora/MIT-Nuclear.txt
Copyright: 1996, Widget Workshop, Inc.
License: MIT~Widget
 FIXME

Files: t/fedora/MIT-Xfig.txt
Copyright: NONE
License: MIT~Xfig
 FIXME

Files: t/fedora/MIT-Modern.txt
Copyright: NONE
License: MIT~old
 FIXME

Files: t/grant/MIT/harfbuzz-impl.c
Copyright: 1998-2004, David Turner and Werner Lemberg
  2007, Red Hat, Inc.
  2008, Nokia Corporation and/or its subsidiary(-ies)
License: MIT~old
 FIXME

Files: t/fedora/MIT-Old-Style-disclaimer.txt
Copyright: NONE
License: MIT~oldstyle~disclaimer
 FIXME

Files: t/grant/MIT/spaces.c
Copyright: International Business Machines, Corp. 1991
  Lexmark International, Inc. 1991
License: MIT~oldstyle~permission
 FIXME

Files: t/fedora/MIT-Whatever.txt
Copyright: NONE
License: MIT~whatever
 FIXME

Files: t/OSI/MPL-1.1
Copyright: 
License: MPL-1.1
 FIXME

Files: t/SPDX/MPL-1.1.txt
Copyright: Representations.
License: MPL-1.1
 FIXME

Files: t/devscripts/mpl-1.1.sh
Copyright: 2012, the Initial Developer.
License: MPL-1.1
 FIXME

Files: t/OSI/MPL-2.0
Copyright: doctrines of fair use, fair dealing, or other
  under Patent Claims infringed by Covered Software in the absence of
License: MPL-2.0
 FIXME

Files: t/SPDX/MPL-2.0.txt
Copyright: doctrines of fair use, fair dealing, or other equivalents.
  under Patent Claims infringed by Covered Software in the absence of its Contributions.
License: MPL-2.0
 FIXME

Files: t/SPDX/MS-PL.txt
Copyright: Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.
  If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.
License: MS-PL
 FIXME

Files: t/SPDX/MS-RL.txt
Copyright: Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.
  If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.
License: MS-RL
 FIXME

Files: t/OSI/NTP
Copyright: (CopyrightHoldersName) (From 4-digit-year)-(To 4-digit-year)
License: NTP
 FIXME

Files: t/SPDX/NTP.txt
Copyright: <<var;name=copyright;original=(CopyrightHoldersName) (From 4-digit-year)-(To 4-digit-year);match=.+>>
License: NTP
 FIXME

Files: t/grant/NTP/helvO12.bdf
Copyright: 1984-1989, 1994, Adobe Systems Incorporated.
  1988, 1994, Digital Equipment Corporation.
License: NTP
 FIXME

Files: t/grant/NTP/directory.h
Copyright: 1998, Dietmar Kuehl, Claas Solutions GmbH >
License: NTP
 FIXME

Files: t/grant/NTP/map.h
Copyright: 1994, Hewlett-Packard Company
  1996-1997, Silicon Graphics Computer Systems, Inc.
License: NTP
 FIXME

Files: t/fedora/MIT-Old-Style-no-ad.txt
Copyright: 1989, Massachusetts Institute of Technology
License: NTP
 FIXME

Files: t/grant/NTP/monlist.c
Copyright: 1992-1997, University of Delaware
  1997-1998, 2008, 2012, The Board of Trustees of the Leland Stanford Junior University
License: NTP
 FIXME

Files: t/fedora/MIT-Old-Style-disclaimer-no-ad.txt
Copyright: NONE
License: NTP~disclaimer
 FIXME

Files: t/grant/NTP/gslcdf-module.c
Copyright: 2003-2005, Massachusetts Institute of Technology
License: NTP~disclaimer
 FIXME

Files: t/SPDX/OFL-1.0.txt
Copyright: NONE
License: OFL-1.0
 FIXME

Files: t/SPDX/OFL-1.1.txt
Copyright: NONE
License: OFL-1.1
 FIXME

Files: t/OSI/OFL-1.1
Copyright: <dates>, <Copyright Holder> (<URL|email>),
  <dates>, <additional Copyright Holder> (<URL|email>),
  <dates>, <additional Copyright Holder> (<URL|email>).
License: OFL-1.1
 FIXME

Files: t/SPDX/PostgreSQL.txt
Copyright: 1994, The Regents of the University of California
  1996-2010, The PostgreSQL Global Development Group
License: PostgreSQL
 FIXME

Files: t/OSI/Python-2.0
Copyright: 1991-1995, Stichting Mathematisch Centrum Amsterdam,
  i.e., "Copyright (c)
License: Python-2.0
 FIXME

Files: t/SPDX/Python-2.0.txt
Copyright: 1991-1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands.
  i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation;
License: Python-2.0
 FIXME

Files: t/SPDX/SGI-B-1.0.txt
Copyright: [dates of first publication, as appearing in the Notice in the Original Code] Silicon Graphics, Inc. Copyright in any portions created by third parties is as indicated elsewhere herein.
  trade secret, trademark or other intellectual property rights of any kind) of any other person or entity or (ii) breaches any representation or warranty, express, implied or statutory, to which, under any applicable law, it might be deemed to have been subject.
License: SGI-B-1.0
 FIXME

Files: t/SPDX/SGI-B-1.1.txt
Copyright: [dates of first publication, as appearing in the Notice in the Original Code] Silicon Graphics, Inc. Copyright in any portions created by third parties is as indicated elsewhere herein.
License: SGI-B-1.1
 FIXME

Files: t/encoding/README.gs550j
Copyright: 1996-1999, Daisuke SUZUKI.
  1999
  1999, Norihito Ohmori.
License: UNKNOWN
 FIXME

Files: t/fedora/MIT-Cheusov.txt
Copyright: 2006, Aleksey Cheusov
License: UNKNOWN
 FIXME

Files: MANIFEST
Copyright: CREDITS
License: UNKNOWN
 FIXME

Files: t/grant/EPL_and_more/Base64Coder.java
Copyright: 2003-2010, Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland
License: UNKNOWN
 FIXME

Files: t/devscripts/regexp-killer.c
Copyright: 2013, Devscript Developers
License: UNKNOWN
 FIXME

Files: t/grant/LGPL_and_more/da.aff
Copyright: 2015, Foreningen for frit tilgængelige sprogværktøjer
License: UNKNOWN
 FIXME

Files: doap.ttl
Copyright: John Doe".";
  and license extraction."@en;
  as well as (C)."^^dt:Change, "Deduplicate copyright statements varying only in case."^^dt:Change, "Make the copyright regex more flexible."^^dt:Change, "Tidy up the pre-check regexes."^^dt:Change, "Unescape "@"s in copyright statements."^^dt:Change;
  info.";
  information (for nroff files).";
  output."^^dt:Change;
  owner to mention "and others".";
  owner when © and owners are specified on 2 or more lines.";
  owner with email like info@foo.com.";
License: UNKNOWN
 FIXME

Files: t/fedora/MIT-Minimal.txt
Copyright: Medical Research Council 1994.
License: UNKNOWN
 FIXME

Files: t/grant/Apache_and_more/test_run.py
Copyright: 2011, Robert Collins <robertc@robertcollins.net>
License: UNKNOWN
 FIXME

Files: SIGNATURE
Copyright: SHA256 c9ac808992955531ba49997144bf0fd6f2d8ffee38dc057852fed388678bc9a8 CREDITS
License: UNKNOWN
 FIXME

Files: t/fedora/Unicode.txt
Copyright: 1991-2005, Unicode, Inc.
License: UNKNOWN
 FIXME

Files: t/SPDX/Unicode-TOU.txt
Copyright: 1991-2014, Unicode, Inc.
License: Unicode-TOU
 FIXME

Files: t/grant/WTFPL/COPYING.WTFPL
Copyright: 2000, Banlu Kemiyatorn (]d).
License: WTFPL-1.0
 FIXME

Files: t/SPDX/WTFPL.txt
Copyright: 2004, Sam Hocevar <sam@hocevar.net>
License: WTFPL-2
 FIXME

Files: t/fedora/MIT-WordNet.txt
Copyright: 2006, Princeton University.
License: WordNet
 FIXME

Files: t/flaws/generated/install-sh
Copyright: 1994, X Consortium
License: X11
 FIXME

Files: t/grant/MIT/old_colamd.c
Copyright: 1998, the University of Florida.
  2003, The Regents of the University of California, through
  and "Used by permission." If this code is
License: bdwgc-matlab
 FIXME

Files: t/SPDX/curl.txt
Copyright: 1996-2015, Daniel Stenberg, <daniel@haxx.se>.
License: curl
 FIXME

Files: t/fedora/MIT-Hylafax.txt
Copyright: 1990-1996, Sam Leffler Copyright (c) 1991-1996 Silicon Graphics,
License: libtiff
 FIXME

Files: t/fedora/MIT-mpich2.txt
Copyright: NONE
License: mpich2
 FIXME

Files: t/SPDX/zlib-acknowledgement.txt
Copyright: 2000-2002, Philip A. Craig
  2002-2004, James W. Newkirk, Michael C. Two, Alexei A. Vorontsov
  2002-2007, Charlie Poole
  2002-2007, Charlie Poole or Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright (c) 2000-2002 Philip A. Craig
License: zlib-acknowledgement
 FIXME