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
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
|
# $NetBSD: 3RDPARTY,v 1.1917 2023/03/23 16:44:03 kre Exp $
#
# This file contains a list of the software that has been integrated into
# NetBSD where we are not the primary maintainer.
#
# When you make changes to this software, be sure to discuss it with the
# maintainer and contribute your patches. Divergence from the official
# sources is not desirable, and should be avoided as much as possible.
#
# When importing, please deal with the RCS IDs in this way:
# 1. Preserve the RCS IDs in the files by removing the $ signs from
# the IDs before you do the import.
# 2. After the import, add NetBSD RCS IDs to all of the files.
#
# A few notes on the format of this file (for the benefit of
# 3rdparty2html):
#
# 1.) Any line whose first non-whitespace character is # is a comment;
# 2.) Entries are separated by blank lines;
# 3.) Every package needs at least the Package, Version, Current Vers,
# and Maintainer fields;
# 4.) Where a field has multiple lines of information, the field tag
# should be repeated on each line, except:
# 5.) The Notes: field tag should appear on a line by itself; all
# remaining lines until the end of the record are notes.
#
# Package: name or brief description (required, must be first)
# Version: version that is included with NetBSD (required)
# Current Vers: version that is available upstream (required)
# Maintainer: name and/or email address of upstream maintainer (required)
# Archive Site: URL to archive of upstream releases
# Home Page: URL to web page for upstream project
# Date: Date last checked
# Mailing List: email address or URL related to upstream mailing list
# License: description of license
# Responsible: comma-separated list of NetBSD developers
# Location: comma-separated list of subdirectories in the NetBSD src tree
# Notes:
# Multiple lines of free-form text,
# Must be last.
#
Package: acpica
Version: 20221020
Current Vers: 20221020
Maintainer: Intel
Archive Site: http://www.acpica.org/downloads/
Home Page: http://www.acpica.org/
Date: 2022-12-10
Mailing List: devel@acpica.org
License: BSD-like
Responsible: jruoho
Location: sys/external/bsd/acpica/dist
Notes:
You want the unix2 (dual-licensed) tar file.
Please read src/sys/dev/acpi/acpica/README before any modification.
Package: am-utils [amd]
Version: 6.2
Current Vers: 6.2
Maintainer: Erez Zadok <ezk@cs.columbia.edu>
Archive Site: ftp://ftp.am-utils.org/pub/am-utils/
Home Page: http://www.am-utils.org/
Date: 2020-06-13
Mailing List: am-utils
Responsible: christos
License: BSD (4-clause)
Location: external/bsd/am-utils/dist
Notes:
Amd2netbsd script to convert to BSD make system and remove unneeded files.
Fix symbolic links before import.
Check external/bsd/am-utils/include/config.h is correct after import.
Update date of release in external/bsd/am-utils/man/Makefile (two places).
Package: Automated Testing Framework (ATF)
Version: 0.20
Current Vers: 0.21
Maintainer: Julio Merino <jmmv@NetBSD.org>
Archive site: https://github.com/jmmv/atf/releases
Home page: https://github.com/jmmv/atf
Date: 2020-06-13
Mailing List: atf-devel@NetBSD.org
Responsible: jmmv
License: The NetBSD Foundation's license (BSD 2-clause)
Location: external/bsd/atf/dist
Notes:
The source files are in external/bsd/atf/dist.
Use external/bsd/atf/prepare-import.sh to regenerate the dist/ directory.
Please avoid performing local changes to this package without discussing
them with the responsible person and/or the mailing list shown above.
Note that the external/bsd/atf/dist/tools is owned by NetBSD and does not
exist upstream; however, please continue to discuss any desired changes
upfront.
Package: ath-hal
Version: FreeBSD SVN revision number 185521
Current Vers: FreeBSD SVN revision number 361486
Maintainer: Sam Leffler <sam@errno.com>
Archive Site: none
Home Page: https://svnweb.freebsd.org/base/head/sys/dev/ath/ath_hal/
Date: 2020-06-13
Mailing List: none
Responsible: sam, alc
License: BSD-like (2-clause), ISC
Location: sys/external/isc/atheros_hal/dist
Notes:
Package: bc
Version: 1.06
Current Vers: 1.07.1
Maintainer: Phil Nelson <phil@cs.wwu.edu>
Archive Site: ftp://ftp.gnu.org/gnu/bc/
Home Page: http://www.gnu.org/software/bc/
Date: 2020-06-13
Mailing List: bug-bc@gnu.org
Responsible: phil, simonb
License: GPLv2, LGPGv2.1
Location: external/bsd/bc
Notes:
bc includes dc, both of which are in the NetBSD tree.
Package: bind [named and utils]
Version: 9.16.37/MPL
Current Vers: 9.16.37/MPL 9.19.9/MPL
Maintainer: ISC
Archive Site: ftp://ftp.isc.org/isc/bind9/
Home Page: http://www.isc.org/software/bind/
Date: 2023-01-25
Mailing List: https://lists.isc.org/mailman/listinfo/bind-announce
Mailing List: https://lists.isc.org/mailman/listinfo/bind-users
Responsible: christos
License: BSD-like (2-clause) / MPL
Location: external/mpl/bind/dist
Notes:
First bind2netbsd script to import into src/external/bsd/bind/dist.
The Makefiles in src/external/mpl/bind are not handled by the script.
Build bind to generate the include files.
Then binclude4netbsd script to import into src/external/bsd/bind/include.
The libc and include parts of the resolver are now part of libbind.
Package: blocklist
Version: current-2020-06-14
Current Vers: current-2020-06-14
Maintainer: Christos Zoulas <christos@zoulas.com>
Archive Site: https://github.com/zoulasc/blocklist
Home Page: https://github.com/zoulasc/blocklist
Date: 2020-06-13
Responsible: christos
License: BSD-like (2-clause)
Location: external/bsd/blocklist
Notes:
Package: libuv
Version: 1.44.2
Current Vers: 1.44.2
Maintainer: libuv
Archive Site: https://dist.libuv.org/dist/
Home Page: https://libuv.org
Date: 2022-09-22
Mailing List: https://groups.google.com/forum/#!forum/libuv
Responsible: christos
License: mit
Location: external/mit/libuv/dist
Notes:
Package: unbound
Version: 1.16.3
Current Vers: 1.16.3
Maintainer: Nlnetlabs
Archive Site: https://www.unbound.net/downloads/unbound-latest.tar.gz
Home Page: https://www.unbound.net/
Date: 2022-09-24
Mailing List: https://unbound.nlnetlabs.nl/mailman/listinfo/unbound-users
Responsible: christos
License: BSD-like
Location: external/bsd/unbound/dist
Notes:
Use cleantags to import
run configure and update config files in include
Package: nsd
Version: 4.6.0
Current Vers: 4.6.0
Maintainer: Nlnetlabs
Archive Site: https://www.nlnetlabs.nl/svn/nsd/
Home Page: https://www.nlnetlabs.nl/projects/nsd/
Date: 2022-09-24
Mailing List: https://open.nlnetlabs.nl/mailman/listinfo/nsd-users/
Responsible: christos
License: BSD-like
Location: external/bsd/nsd/dist
Notes:
Use cleantags to import
run configure and update config files in include
Package: libbind [libc resolver and includes]
Version: libbind-6.0-rc1
Current Vers: libbind-6.0
Maintainer: ISC
Archive Site: https://downloads.isc.org/isc/libbind/cur/
Home Page: https://www.isc.org/othersoftware/#libbind
Date: 2019-01-09
Mailing List: https://lists.isc.org/mailman/listinfo/bind-workers
Responsible: christos
License: BSD-like (2-clause)
Location: external/bsd/libbind/dist
Notes:
First libbind2netbsd script to import into src/external/bsd/libbind/dist.
Then include4netbsd script to import into src/include.
Then libc4netbsd script to update the resolver in libc.
Todo[1]: Update libresolv if needed.
Todo[2]: A few files in libc/net were imported in the ISC branch but now
they are too different or do not exist anymore:
gethnamaddr.c getnetent.c getnetnamadr.c sethostent.c
Others like getaddrinfo.c could be merged with isc, but it seems
that ours is from a more recent version of KAME?
Todo[3]: net/base64.c is imported from bind but should be moved from net
to isc/base64.c.
Todo[4]: Re-entrant functions of net/*
Todo[5]: Reconcile the doc directory.
Package: bsd-family-tree
Version: 361673
Current Vers: 361673
Maintainer: The FreeBSD Project
Archive Site: https://svnweb.freebsd.org/base/head/share/misc/bsd-family-tree
Home Page: https://svnweb.freebsd.org/base/head/share/misc/bsd-family-tree
Date: 2020-04-02
Mailing List:
Responsible:
License: BSD (2-clause) (see http://www.freebsd.org/cgi/cvsweb.cgi/src/COPYRIGHT)
Location: share/misc/bsd-family-tree
Notes:
Please send all updates upstream. Eitan Adler <lists@eitanadler.com>
is a FreeBSD committer who has been helpful with incorporating changes
in the past.
Package: byacc
Version: 20210109
Current Vers: 20210109
Maintainer: Thomas Dickey <dickey@invisible-island.net>
Archive Site: http://www.invisible-island.net/byacc/byacc.html
Home Page: http://www.invisible-island.net/byacc/byacc.html
Date: 2021-02-20
Mailing List:
Responsible: christos
License: Public Domain
Location: external/bsd/byacc/dist
Notes:
See /usr/src/external/bsd/byacc/byacc2netbsd for update instructions.
Package: bzip2
Version: 1.0.8
Current Vers: 1.0.8
Maintainer: Julian Seward <jseward@acm.org>
Archive Site: https://sourceware.org/pub/bzip2/
Home Page: https://www.sourceware.org/bzip2/
Date: 2020-06-13
Mailing List:
Responsible:
License: BSD (4-clause)
Location: external/bsd/bzip2
Notes:
See /usr/src/external/bsd/bzip2/bzip2netbsd for update instructions.
Package: Citrus XPG4DL
Version:
Current Vers:
Maintainer: Citrus
Archive Site: http://citrus.bsdclub.org/
Home Page: http://citrus.bsdclub.org/
Date: 2020-06-13
Mailing List: bsd-locale@hauN.org
Responsible: tshiozak
License: Ambiguous. Either BSD or Perl Artistic License
See http://citrus.bsdclub.org/#pol_license for more info.
Location: lib
Notes:
language C multilingualization support suite using wchar_t and other standards.
The main development playground of Citrus is in NetBSD CVS, so you don't
need to look for other CVS tree (like citrus CVS tree)
main trunc has Citrus code in the following places:
- src/lib/libc/locale, LC_CTYPE: single/multibyte support
- src/lib/libintl: GNU libc compatible gettext(3) implementation.
- src/lib/libc/citrus: multibyte LC_CTYPE handling and iconv(3) lower layer
- src/lib/libc/iconv: iconv(3)
Package: cron
Version: 4.1
Current Vers: 4.1
Maintainer: ISC
Archive Site: ftp://ftp.isc.org/isc/cron/
Home Page:
Date: 2020-06-13
Mailing List:
Responsible:
License: BSD-like
Location: external/bsd/cron/dist
Notes:
Package: cvs
Version: 1.12.13
Current Vers: 1.12.13
Maintainer: cvshome
Archive Site: http://ftp.gnu.org/non-gnu/cvs/
Home Page: http://cvs.nongnu.org/
Date: 2020-06-13
Mailing List: bug-cvs@gnu.org
Responsible: christos
License: GPLv1, LGPLv2
Location: external/gpl2/xcvs/dist
Notes:
Use external/gpl2/xcvs/dist/cvs2netbsd for preparing the source tree
for the import.
Do not forget to update external/gpl2/xcvs/include/config.h to match
external/gpl2/xcvs/dist/config.h.in.
Package: db
Version: 1.85
Current Vers: 1.86/4.7.25
Maintainer: Keith Bostic <bostic@vangogh.cs.berkeley.edu>
Archive Site: http://www.oracle.com/technology/software/products/berkeley-db/
Home Page: http://www.oracle.com/database/berkeley-db/
Date: 2019-01-09
Mailing List:
Responsible:
License: BSD or Oracle Commercial License
Location: lib/libc/db
Notes:
Note that we cannot use db 2.x for license reasons.
Three bug fixes against 1.85 sent back to bostic. Changes to
man/recno.3, hash/hsearch.c, and hash/ndbm.c (serious).
Import of DB 1.85 was done via a sh script which converted the
distribution into the netbsd format. The script can be found in
src/lib/libc/db/db2netbsd.
Package: dhcp
Version: 4.4.3-P1
Current Vers: 4.4.3-P1
Maintainer: mellon
Archive Site: ftp://ftp.isc.org/isc/dhcp/
Home Page: http://www.isc.org/software/dhcp/
Date: 2022-10-05
Mailing List: dhcp-server@isc.org
Mailing List: dhcp-client@isc.org
Mailing List: dhcp-announce@isc.org
Mailing List: dhcp-bugs@isc.org
Responsible: mellon
License: MPL
Location: external/mpl/dhcp
Notes:
Use the dhcp2netbsd script.
Package: dhcpcd
Version: 9.4.1
Current Vers: 9.4.1
Maintainer: roy
Archive Site: https://roy.marples.name/downloads/dhcpcd/
Home Page: https://roy.marples.name/projects/dhcpcd/
Home Page: https://github.com/NetworkConfiguration/dhcpcd
Date: 2021-10-22
License: BSD (2-clause)
Location: external/bsd/dhcpcd/dist
Notes:
Please submit all changes upstream.
Import using the import-src make target.
Package: drm
Version: Linux 3.15
Current Vers: ?
Maintainer: Intel, AMD, Linux kernel developers
Archive Site: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Home Page: http://dri.freedesktop.org/
Mailing List: dri-devel@lists.freedesktop.org
Responsible: riastradh
License: BSD
Location: sys/external/bsd/drm2/dist
Notes:
Graphics drivers. Talk to riastradh@ about updates. When importing
from Linux, we map
drivers/gpu/drm -> sys/external/bsd/drm2/dist/drm
include/drm -> sys/external/bsd/drm2/dist/include/drm
include/uapi/drm -> sys/external/bsd/drm2/dist/uapi/drm
GPL sources are excluded. In the future, we may import them into
external/gpl2/drm2 and build them as kernel modules. Nouveau sources
(drivers/gpu/drm/nouveau in Linux) must first be processed with the
script sys/external/bsd/drm2/nouveau/nouveau2netbsd, about which see
the source for details.
Vendor tag: LINUX
Release tag: linux-X-Y(-rcZ)-drm-bsd
(nouveau got reimported as linux-3-15-drm-bsd-reimport-nouveau)
I neglected to add RCSIDs in the last import (except for nouveau, for
which nouveau2netbsd adds them). For the next import, remember to add
them!
Package: ekermit
Version: 1.7
Current Vers: 1.7
Maintainer: Kermit Project
Archive Site: ftp://ftp.kermitproject.org/kermit/ekermit/
Home Page: http://www.kermitproject.org/ek.html
Date: 2020-06-13
Mailing List:
Responsible: apb
License: BSD (3 clause)
Location: external/bsd/ekermit
Notes:
Package: expat
Version: 2.4.6
Current Vers: 2.5.0
Maintainer: Expat Project
Archive Site: https://github.com/libexpat/libexpat/releases
Home Page: http://www.libexpat.org/
Date: 2022-09-21
Mailing List: expat-discuss@libexpat.org
Responsible: mrg
License: MIT
Location: src/external/mit/expat/dist
Notes:
Please use "expat" as the vendor tag for CVS imports.
Package: file
Version: 5.43
Current Vers: 5.43
Maintainer: Christos Zoulas <christos@zoulas.com>
Archive Site: ftp://ftp.astron.com/pub/file/
Home Page: http://www.darwinsys.com/file/
Date: 2022-09-24
Mailing List: file@astron.com
Responsible: christos, pooka
License: BSD (2-clause)
Location: external/bsd/file/dist
Notes:
use file2netbsd
Package: flex
Version: 2.6.4
Current Vers: 2.6.4
Maintainer: Will Estes <wlestes@users.sourceforge.net>
Archive Site: https://github.com/westes/flex/releases
Home Page: https://github.com/westes/flex
Date: 2021-03-01
Mailing List: http://lists.sourceforge.net/mailman/listinfo/flex-announce
Responsible:
License: BSD-like
Location: external/bsd/flex/dist
Notes:
There is a flex2netbsd script to help newer imports.
Package: gcc
Version: 10.4.0
Current Vers: 10.4.0/11.3.0/12.2.0
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/gcc/
Home Page: https://www.gnu.org/software/gcc/
Date: 2022-06-28
Mailing List: gcc-bugs@gnu.org
Responsible: mrg, christos, skrll
License: GPLv3, LGPLv3.1
Location: external/gpl3/gcc.old/dist
Location: external/gpl3/gcc/dist
Notes:
In the long term, we expect that there will often be two versions,
in the "gcc" and "gcc.old" directories. Having two versions allows
migration from one version of gcc to another to happen for one port
at a time, instead of for all ports simultaneously.
When importing a new version of external/gpl3/gcc.old:
- copy the current version of external/gpl3/gcc
- import it to a "NETBSD" vendor branch in external/gpl3/gcc.old
Before importing a new version of external/gpl3/gcc:
- delete all .cvsignore and .gitignore files
- delete java ada fortran their libraries and testsuites
- delete libffi zlib boehm-gc
- update gcc/version.c for the NetBSD GCC date
- use core/c++/objc/testsuite tarballs
- you can use the gcc2netbsd script for the above (except version)
- update tools/gcc/gcc-version.mk
- force generate and copy tools/gcc build version of these files
into gcc/dist/gcc/doc: cpp.1 cpp.info gcc.1 gcc.info gcov.1
Package: gdb
Version: 11.0.50
Current Vers: 13.1
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/gdb/
Home Page: http://www.gnu.org/software/gdb/
Date: 2023-02-19
Mailing List: bug-gdb@gnu.org
Responsible: christos
License: GPLv3, LGPLv3.1
Location: external/gpl3/gdb/dist
Notes:
When updating GDB, it is imperative to test that:
- Debugging of kernel cores ("target kvm") works correctly
- Support for our kernel's remote serial debugging protocol
("options KGDB") works correctly.
Package: binutils
Version: 2.34/2.39
Current Vers: 2.40
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/binutils/
Home Page: https://www.gnu.org/software/binutils/
Date: 2023-01-15
Mailing List: bug-gnu-utils@gnu.org
Responsible: thorpej, mrg
License: GPLv3, LGPLv3, GPLv2, LGPLv2, BSD
Location: external/gpl3/binutils/dist
Notes:
Package: autoconf
Version: 2.69
Current Vers: 2.69
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/autoconf/
Home Page: http://www.gnu.org/software/autoconf/
Date: 2020-06-13
Mailing List: bug-autoconf@gnu.org
Responsible: christos
License: GPLv3+
Location: external/gpl3/autoconf
Notes:
This is only used to re-generate the configure files in tools/compat.
It is not part of the regular build.
Package: gdtoa
Version: 2016-02-19
Current Vers: 2018-06-18
Maintainer: David M. Gay <dmg@acm.org>
Archive Site: http://www.netlib.org/fp/
Home Page: http://www.netlib.org/fp/
Date: 2021-04-10
Mailing List: none
Responsible: kleink
License: BSD-like
Location: lib/libc/gdtoa
Notes:
Test suite integrated at this time, but not built (and fails to run).
No hexadecimal floating-point string conversion for VAX FP yet.
Only double-precision addressed at this time.
Package: heimdal
Version: 7.7.0
Current Vers: 7.7.0
Maintainer: Heimdal <heimdal@h5l.org>
Archive Site: https://github.com/heimdal/heimdal/releases/
Home Page: http://www.h5l.org/
Date: 2021-03-01
Mailing List: heimdal-discuss@sics.se
Responsible: joda, lha
License: BSD
Location: crypto/external/bsd/heimdal/dist
Notes:
Package: hunt
Version: 2003-04-16
Current Vers: 2003-04-16
Maintainer: Greg Couch <gregc@cgl.ucsf.edu>
Archive Site:
Home Page: http://www.cgl.ucsf.edu/home/gregc/oss.html
Date: 2019-01-09
Responsible: mrg
License: BSD (3-clause)
Location: games/hunt
Notes:
Package: ipf
Version: 5.1.1
Current Vers: 5.1.2
Maintainer: Darren Reed
Archive Site:
Home Page:
Date: 2019-01-09
Mailing List: ipfilter@postbox.anu.edu.au
Responsible: darrenr, christos
License: BSD-based; see src/external/ipf/dist/IPFILTER.LICENCE
Location: external/bsd/ipf,sys/external/bsd/ipf
Notes:
ipf2netbsd should be used on a virgin ipfilter source tree.
Package: ipsec-tools
Version: (ipsec-tools head is NetBSD-current head)
Maintainer: IPsec-Tools project <ipsec-tools-core@lists.sourceforge.net>
Archive Site: http://ipsec-tools.sourceforge.net
Home Page: http://ipsec-tools.sourceforge.net
Date: 2019-01-09
Mailing List: ipsec-tools-devel@lists.sourceforge.net
Responsible: manu, vanhu, mgrooms
License: BSD (3-clause)
Location: crypto/dist/ipsec-tools
Notes:
ipsec-tools is maintained within NetBSD src tree in src/crypto/dist/ipsec-tools
We don't run ipsec-tools' configure as part of the NetBSD build. configure
generated files are available in the NetBSD source tree at:
src/lib/libipsec/config.h
src/lib/libipsec/package_version.h
When configure.ac is updated, run the following:
cd src/crypto/dist/ipsec-tools
./bootstrap
./configure --enable-adminport --enable-hybrid --enable-frag \
--enable-natt --enable-dpd
Then copy package_version.h to src/lib/libipsec and merge config.h with
src/lib/libipsec/config.h (it needs some manual tweaking)
NOTE: As NetBSD HEAD and ipsec-tools HEAD are just the same thing,
NetBSD-current always contains latest ipsec-tools code. On the other hand,
ipsec-tools has stable branches (e.g.: ipsec-tools-0_7-branch), which
are manually pulled up to NetBSD stable branches (e.g.: netbsd-4 is regularly
sync with ipsec-tools-0_7-branch)
Package: jemalloc
Version: 5.1.0
Current Vers: 5.2.1
Maintainer: Jason Evans
Archive Site: https://github.com/jemalloc/jemalloc
Home Page: https://jemalloc.net
Date: 2021-03-01
Mailing List:
Responsible: christos
License: BSD
Location: external/bsd/jemalloc
Notes:
Package: KAME IPv6
Version: KAME/NetBSD SNAP kit
Current Vers: KAME/NetBSD SNAP kit (shipped every week)
Maintainer: KAME Project <kame@kame.net>
Archive Site: http://www.kame.net/
Home Page: http://www.kame.net/
Date: 2019-01-09
Mailing List: snap-users@kame.net
Responsible:
License: BSD (3-clause)
Location: sys/netinet6
Notes:
IPv6 part is based on KAME/NetBSD142 SNAP as of early June 2000, with
more conservative implementation policy.
IPsec part is based on KAME/NetBSD14 SNAP as of 12 June 2000.
Please do not make too many diff-unfriendly changes (like indentation change,
KNF police). We need to take diffs across KAME snapshots on upgrades.
To identify kernel version, check net.inet6.ip6.kame_version, or KAME_VERSION
in sys/netinet6/in6.h. No script is available for upgrades.
"KAME" branch is used for kernel merge work purposes.
http://www.kame.net/dev/cvsweb.cgi/kame/COVERAGE has functionality comparison
among KAME/*BSD, *BSD-current and recent *BSD releases.
Package: kyua-atf-compat
Version: 0.1
Current Vers: 0.13
Maintainer: Julio Merino <jmmv@NetBSD.org>
Archive site: https://github.com/jmmv/kyua
Home page: https://github.com/jmmv/kyua
Date: 2020-06-13
Mailing List: kyua-discuss@googlegroups.com
Responsible: jmmv
License: BSD 3-clause
Location: external/bsd/kyua-atf-compat/dist
Notes:
The source files are in external/bsd/kyua-atf-compat/dist.
Use external/bsd/kyua-atf-compat/prepare-import.sh to regenerate the dist/
directory.
Package: kyua-cli
Version: 0.7
Current Vers: 0.9
Maintainer: Julio Merino <jmmv@NetBSD.org>
Archive site: https://github.com/jmmv/kyua
Home page: https://github.com/jmmv/kyua
Date: 2020-06-13
Mailing List: kyua-discuss@googlegroups.com
Responsible: jmmv
License: BSD 3-clause
Location: external/bsd/kyua-cli/dist
Notes:
The source files are in external/bsd/kyua-cli/dist.
Use external/bsd/kyua-cli/prepare-import.sh to regenerate the dist/ directory.
Package: kyua-testers
Version: 0.1
Current Vers: 0.3
Maintainer: Julio Merino <jmmv@NetBSD.org>
Archive site: https://github.com/jmmv/kyua
Home page: https://github.com/jmmv/kyua
Date: 2020-06-13
Mailing List: kyua-discuss@googlegroups.com
Responsible: jmmv
License: BSD 3-clause
Location: external/bsd/kyua-testers/dist
Notes:
The source files are in external/bsd/kyua-testers/dist.
Use external/bsd/kyua-testers/prepare-import.sh to regenerate the dist/
directory.
Package: less
Version: less-458
Current Vers: less-608
Maintainer: Mark Nudelman <markn@greenwoodsoftware.com>
Archive Site: http://www.greenwoodsoftware.com/less/download.html
Home Page: http://www.greenwoodsoftware.com/less/
Date: 2023-02-07
Mailing List: less-announce-request@greenwoodsoftware.com
Responsible: mrg
License: Less License (BSD 2-clause) or GPLv3 (v2 prior to less-418)
Location: external/bsd/less/dist
Notes:
Many changes to make less act as more when invoked as more. Beware.
Use the "src/external/bsd/less/less2netbsd" script to prepare source tree
for importation. Run ./configure beforehand to generate "defines.h".
Talk to mrg before importing any new version.
Package: libarchive
Version: 3.4.0
Current Vers: 3.6.1
Maintainer: kientzle@freebsd.org, joerg@NetBSD.org
Archive Site: https://github.com/libarchive/libarchive/releases
Home Page: http://www.libarchive.org
Date: 2021-03-01
Responsible: joerg
License: BSD (2-clause)
Location: external/bsd/libarchive/dist
Notes:
Distribution is stripped down to the relevant part.
Package: libdevmapper
Version: 1.02.40
Current Vers: 2.2.03.09
Maintainer: lvm-devel@redhat.com
Archive Site: ftp://sources.redhat.com/pub/lvm2/
Home Page: http://sources.redhat.com/lvm2/
Date: 2020-06-13
Responsible: haad
License: LGPLv2.1
Location: external/gpl2/lvm2/dist/libdm
Notes:
The lvm2tools and the libdevmapper are now distributed as one source
repository. See the lvm2tools Notes for more information.
Package: libevent
Version: 2.1.12-stable
Current Vers: 2.1.12-stable
Maintainer: Niels Provos <provos@citi.umich.edu>
Archive Site: http://www.monkey.org/~provos/libevent/
Home Page: http://www.monkey.org/~provos/libevent/
Date: 2021-04-06
Responsible:
License: BSD (3/4-clause)
Location: external/bsd/libevent/dist
Notes:
- Run the libevent2netbsd script
- Build the doxygen man pages. Edit the Doxyfile to GENERATE_MAN=yes.
man pages are in doxygen/man/man3. Remove the extra man pages that are
.so'ing only. Copy the rest to man.
Package: llvm
Version: 10.0.0git (01f3a59fb3e2542fce74c768718f594d0debd0da)
Current Vers.: 10.0.0
Maintainer: llvm-dev@lists.llvm.org
Home Page: https://llvm.org
Date: 2020-06-13
Responsible: joerg
License: Apache2 with runtime exceptions
Location: external/apache2/llvm/dist
Notes:
A CVS ACL is in place for the location to prevent unintentioned commits.
All changes should come via import from upstream SVN.
Package: lvm2tools
Version: 2.02.56
Current Vers: 2.03.02
Maintainer: lvm-devel@redhat.com
Archive Site: ftp://sources.redhat.com/pub/lvm2/
Home Page: http://sources.redhat.com/lvm2/
Date: 2019-01-09
Responsible: haad
License: GPLv2
Location: external/gpl2/lvm2/dist
Notes:
Use the src/external/gpl2/lvm2tools/dist/lvm2netbsd script to
prepare source tree for import. Keep eye on dist/include/configure.h
it might change over the releases. We maintain our own version of
libdevmapper ioctl protocol code, therefore we should test it before
import. Talk to haad before importing new version.
Package: libpcap
Version: 1.9.1
Current Vers: 1.9.1
Maintainer: tcpdump-workers@tcpdump.org
Archive Site: http://www.tcpdump.org/release/
Home Page: http://www.tcpdump.org/
Date: 2021-03-01
Mailing List: tcpdump-workers@tcpdump.org
Responsible: dyoung
License: BSD (3/4-clause)
Location: external/bsd/libpcap/dist
Notes:
Use the src/external/bsd/libpcap/libpcap2netbsd script to prepare source
tree. sys/net/dlt.h is a copy of the dlt constants from pcap.h
Package: tcpdump
Version: 4.9.3
Current Vers: 4.9.3
Maintainer: tcpdump-workers@lists.tcpdump.org
Archive Site: http://www.tcpdump.org/release/
Home Page: http://www.tcpdump.org/
Date: 2021-03-01
Mailing List: tcpdump-workers@lists.tcpdump.org
Responsible:
License: BSD (3-clause)
Location: external/bsd/tcpdump/dist
Notes:
Use the src/external/bsd/tcpdump/tcpdump2netbsd script to prepare source
tree.
Package: libwrap
Version: tcp_wrappers 7.6 w/ large amount of IPv6 changes
Current Vers: tcp_wrappers 7.6-ipv6.4
Maintainer: Wietse Venema <wietse@porcupine.org>
Archive Site: ftp://ftp.porcupine.org/pub/security/
Home Page: ftp://ftp.porcupine.org/pub/security/
Date: 2020-06-13
Mailing List:
Responsible: cjs
License: BSD-like
Location: lib/libwrap
Notes:
We import only libwrap (under src/lib), tcpdchk and tcpdmatch (both
under src/usr.sbin). We don't use tcpd; that functionality is built
into inetd. The provided libwrap2netbsd script handles just libwrap.
Package: Lua
Version: Lua 5.3.5
Current Vers: Lua 5.3.6/5.4.1
Maintainer: PUC Rio
Home Page: https://www.lua.org/
Date: 2020-06-30
Mailing List:
Responsible: mbalmer, lneto, salazar, alnsn
License: MIT
Location: external/mit/lua/dist
Notes:
The default module paths have been changed to not include the current
working directory '.' to avoid potential security problems.
Package: Lutok
Version: 0.3
Current Vers: 0.4
Maintainer: Julio Merino <jmmv@NetBSD.org>
Archive site: https://github.com/jmmv/lutok/releases
Home page: https://github.com/jmmv/lutok
Date: 2020-06-13
Mailing List: lutok-discuss@googlegroups.com
Responsible: jmmv
License: BSD 3-clause
Location: external/bsd/lutok/dist
Notes:
The source files are in external/bsd/lutok/dist.
Use external/bsd/lutok/prepare-import.sh to regenerate the dist/ directory.
Package: m4
Version: 20091026
Current Vers: 20190628
Maintainer: The OpenBSD Project
Archive Site: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/m4
Home Page: http://www.openbsd.org/
Date: 2020-06-13
Mailing List:
License: BSD 3-clause like (dns-sd)
Responsible: christos
Location: usr.bin/m4
Notes:
Uses libc's ohash
Package: mDNSResponder
Version: 878.30.4
Current Vers: 1096.0.2
Maintainer: Apple
Archive Site: https://www.opensource.apple.com/tarballs/mDNSResponder/
Home Page: https://developer.apple.com/bonjour/
Date: 2020-06-13
Mailing List: bonjour-dev@lists.apple.com
License: Apache2 (mdnsd), BSD 3-clause (libdns_sd),
BSD 3-clause like (dns-sd)
Responsible: tsarna
Location: external/apache2/mDNSResponder/dist
Notes:
Package: mandoc
Version: 1.14.5
Current Vers: 1.14.6
Maintainer: Kristaps Džonsons/Ingo Schwarze
Archive Site: http://mandoc.bsd.lv/snapshots/
Home Page: http://mandoc.bsd.lv/
Date: 2021-03-01
Mailing List:
Responsible: joerg
License: BSD (2-clause)
Location: external/bsd/mdocml/dist
Notes:
Package: mesa-demos
Version: 8.1.0
Current Vers: 8.4.0
Maintainer: mesa-git@?
Archive Site: ftp://ftp.freedesktop.org/pub/mesa/demos/
Home Page: http://www.mesa3d.org/
Date: 2020-06-13
Mailing List:
Responsible: riastradh, mrg
License: ISC
Location: xsrc/external/mit/mesa-demos/dist
Notes:
We use only glxinfo and glxgears. Delete all else on import.
Vendor tag: xorg
Release tag: mesa-demos-X-Y-Z
Package: mesa-drm
Version: git 85b9f737db0d2a845e4d7e2bbf9ad12ff9e2227c
Current Vers:
Maintainer: mesa-git@?
Archive Site: git://anongit.freedesktop.org/git/mesa/drm
Home Page: http://cgit.freedesktop.org/mesa/drm/
Date: 2019-01-09
Mailing List:
Responsible: mrg, bjs
License: BSD
Location: sys/external/bsd/drm/dist
Notes:
Package: MesaLib
Version: 19.1.7
Current Vers: 20.1.1
Maintainer: mesa-git@?
Archive Site: ftp://ftp.freedesktop.org/pub/mesa/
Home Page: http://www.mesa3d.org/
Date: 2020-06-13
Mailing List:
Responsible: riastradh, mrg
License: ISC
Location: xsrc/external/mit/MesaLib/dist
Notes:
Vendor tag: xorg
Release tag: MesaLib-X-Y-Z
Package: mopd
Version: 2.5.3
Current Vers: 2.5.3
Maintainer: Mats O Jansson <maja@celsiustech.se>
Archive Site: http://www.stacken.kth.se/~moj/mopd.html
Home Page: http://www.stacken.kth.se/~moj/mopd.html
Date: 2019-01-09
Mailing List:
Responsible: cjs
License: BSD (4-clause)
Location: usr.sbin/mopd
Notes:
Delete the otherOS directory before importing.
Package: nawk
Version: 2020-02-18
Current Vers: 2020-06-12
Maintainer: Brian Kernighan <bwk@princeton.edu>
Archive Site: https://github.com/onetrueawk/awk
Home Page: http://www.cs.princeton.edu/~bwk/btl.mirror/
Date: 2020-06-13
Mailing List:
Responsible: jdolecek
License: BSD-like
Location: external/historical/nawk/dist
Notes:
Build maketab from nawk sources and generate proctab.c.
Remove buildwin.bat, missing95.c, ytab.[ch], ytab?.bak, vcvars.bat makefile.win
then import to src/external/historical/nawk/dist.
Package: ndbootd
Version: 0.5
Current Vers: 0.5
Maintainer: Matt Fredette <fredette@alum.mit.edu>
Archive Site:
Home Page:
Date: 2019-01-09
Responsible: fredette
License: BSD (4-clause)
Location: usr.sbin/ndbootd
Notes:
Run ./configure, save config.h, make distclean, rm all autoconf/automake
and ndbootd-raw.c. Restore saved config.h, and force it to define
HAVE_STRICT_ALIGNMENT. Fix RCS IDs, import.
Package: ntp
Version: 4.2.8p15
Current Vers: 4.2.8p15
Maintainer: David L. Mills <mills@udel.edu>
Archive Site: http://www.ntp.org/
Home Page: http://www.ntp.org/, http://support.ntp.org/
Date: 2022-10-09
Mailing List:
Responsible: simonb, jonathan, kardel
License: BSD-like
Location: external/bsd/ntp/dist
Notes:
See /usr/src/dist/ntp/ntp2netbsd for update instructions.
Package: nvi
Version: 1.81.6, HEAD as of 2013-11-20
Current Vers: 1.81.6
Maintainer: Sven Verdoolaege <skimo@kotnet.org>, Keith Bostic
Archive Site: git://repo.or.cz/nvi.git
Home Page: https://repo.or.cz/w/nvi.git http://www.bostic.com/vi/
Date: 2020-06-13
Mailing List:
Responsible: christos
License: BSD (3/4-clause)
Location: external/bsd/nvi/dist
Notes:
We have lots of local fixes.
Package: OpenLDAP
Version: 2.5.6
Current Vers: 2.5.6
Maintainer: OpenLDAP Foundation
Archive Site: http://www.openldap.org/
Home Page: http://www.openldap.org/
Date: 2021-08-14
Mailing List:
Responsible:
License: BSD (3-clause)
Location: external/bsd/openldap/dist
Notes:
Package: OpenPAM
Version: 20190224 (Tabebuia)
Current Vers: 20190224 (Tabebuia)
Maintainer: Dag-Erling Smørgrav <des@FreeBSD.org>
Archive Site: http://www.openpam.org/
Home Page: http://www.openpam.org/
Date: 2021-03-01
Mailing List:
Responsible: christos
License: BSD (3-clause)
Location: external/bsd/openpam/dist
Notes:
Package: openresolv
Version: 3.12.0
Current Vers: 3.12.0
Maintainer: roy
Archive Site: ftp://roy.marples.name/pub/openresolv/
Home Page: http://roy.marples.name/projects/openresolv/
Date: 2020-12-27
Mailing List: openresolv-discuss@marples.name
License: BSD (2-clause)
Location: external/bsd/openresolv/dist
Notes:
Please submit all changes to the author.
Package: HPN-SSH
Version: 6.1p1 13 v14
Current Vers: 6.3p1 v14
Maintainer: www.psc.edu
Archive Site:
Home Page: http://www.psc.edu/index.php/hpn-ssh
Date: 2019-01-09
Mailing List:
Responsible: christos
License:
Location: crypto/external/bsd/openssh/dist
Notes:
Patch applied after OpenSSH import.
Package: OpenSSH
Version: 9.1
Current Vers: 9.3 / portable 9.3p1
Maintainer: OpenSSH
Archive Site: http://www.openssh.com/ftp.html
Home Page: http://www.openssh.com/portable.html
Date: 2023-03-16
Mailing List: openssh-unix-announce@mindrot.org
Responsible: thorpej, christos, elric
License: BSD. See src/crypto/external/bsd/openssh/dist/LICENSE
Location: crypto/external/bsd/openssh/dist
Notes:
imported from OpenBSD ssh -- is not from the portable OpenSSH
use openssh2netbsd before import.
local changes (should always try to bring them back to master openssh tree,
markus is very cooperative about it):
- default for PermitRootLogin is set to "no"
- IgnoreRootRhosts added
- look at login.conf to check valid user/access list
- krb5 support re-added
- hack in cipher.c #ifdef ACCS because we are missing EVP_acss
when someone imports openssl, we can remove this.
- added moduli from portable openssh
- added USE_PAM patches and auth_pam.[ch] from portable openssh
(see if there is any difference between the current version of opensshX.Yp1
and the new opensshZ.Wp1) and apply them.
- added LDAP from portable openssh.
- conditionalize login_cap
- conditionalize bsd_auth
- restore krb5, krb4, afs, skey
- bring in hpn patches, disable mt aes cipher, keep speedups and cipher none
- fix ctype macro arguments
- umac is broken, disable it
- better ~homedir handling
- netbsd style tunnels
- urandom, xhome, chrootdir, rescuedir NetBSD handling
- utmp/utmpx handling
- handle tty posix_vdisable properly
- handle setuid and unsetuid the posix way instead of setresuid()
- add all missing functions
- always bump major when importing to avoid api problems.
- make compile with gcc-4.5; const fixes, fileno() checks, shadow fixes.
- adjust the DEFAULT_PKCS11_WHITELIST for ssh-agent
- blocklistd additions
Package: OpenSSL
Version: 1.0.2o/1.1.1t
Current Vers: 1.0.2zd/1.1.1t/3.0.7
Maintainer: The OpenSSL Project
Archive Site: ftp://ftp.openssl.org/source/
Home Page: http://www.openssl.org/
Date: 2023-02-07
Mailing List: openssl-announce@openssl.org
Responsible: christos, mjf, tls, riastradh, spz
License: OpenSSL and SSLeay license (both BSD-like)
Location: crypto/external/bsd/openssl/dist
Notes:
- Run openssl2netbsd to get rid of the RCSID identifiers
- run make in /usr/src/crypto/external/bsd/openssl/lib/libcrypto/man
to regen man pages.
- run make in /usr/src/crypto/external/bsd/openssl/lib/libcrypto/arch/*
to regen assembly files
Package: pcc
Version: 1.1.0.DEVEL 20160208
Current Vers: 1.1.0 20141210
Maintainer: Anders Magnusson <ragge@NetBSD.org>
Archive Site: ftp://pcc.ludd.ltu.se/pub/pcc/
Home Page: http://pcc.ludd.ltu.se/
Date: 2019-01-09
Mailing List: pcc-list@ludd.ltu.se
Responsible: plunky
License: BSD
Location: external/bsd/pcc/dist
Notes:
This is a development snapshot. See the src/external/bsd/pcc/prepare-import.sh
file for details about how to get the latest version from the upstream server
and import it.
Package: pdisk
Version: 0.8a2
Current Vers: 0.8a2
Maintainer: Eryk Vershen <eryk@cfcl.com>
Archive Site: http://cantaforda.com/cfcl/eryk/linux/pdisk/index.html
Home Page: http://cantaforda.com/cfcl/eryk/linux/pdisk/index.html
Date: 2019-01-09
Mailing List:
Responsible: dbj
License: BSD-like
Location: external/bsd/pdisk
Notes:
This is the disk partition utility used by Apple's mkLinux and OS X
It is imported into external/bsd/pdisk.
Package: pdksh
Version: 5.2.14p2
Current Vers: 5.2.14p2
Maintainer: Michael Rendell <michael@cs.mun.ca>
Archive Site:
Home Page:
Date: 2019-01-09
Mailing List:
Responsible: jdolecek
License: Public domain
Location: bin/ksh
Notes:
pdksh-5.2.14-patches.1 and pdksh-5.2.14-patches.2 have been applied.
Package: PF (openbsd packet filter)
Version: OpenBSD 4.2
Current Vers: OpenBSD 6.3-current
Maintainer: The OpenBSD Project
Archive Site: ftp://ftp.openbsd.org/
Home Page: http://www.openbsd.org/faq/pf/
Date: 2019-01-09
Mailing List: pf@benzedrine.cx or appropriate OpenBSD mailing list
Responsible: peter, yamt
License: BSD (2-clause)
Location: dist/pf,sys/dist/pf
Notes:
kernel code is imported into src/sys/dist/pf and src/sys/net has reachover
definition (files.pf). userland code is imported into src/dist/pf, and
reachover Makefiles are in src/usr.sbin/pf.
Package: pkg_install
Version: 20210410
Current Vers: 20211115
Maintainer: The pkgsrc developers
Home Page: http://www.pkgsrc.org/
Date: 2022-05-10
Mailing List: tech-pkg@NetBSD.org
Responsible: joerg
License: BSD
Location: external/bsd/pkg_install/dist
Notes:
The authoritative version is in pkgsrc/pkgtools/pkg_install.
Package: ping
Version: 980911
Current Vers: 980911
Maintainer: Mike Muuss
Archive Site:
Date: 2021-02-28
Mailing List:
Responsible: christos
License: BSD (3-clause)
Location: sbin/ping
Notes:
We use err() and friends. We have changes for snprintf, extra
formatting in man pages, disallowing flood pinging, alignment fixes,
and more. Vern's ping is gone. We are too different from everyone else
now to do a new import.
Package: Postfix
Version: 3.7.3
Current Vers: 3.7.3
Maintainer: Wietse Venema <wietse@porcupine.org>
Archive Site:
Home Page: http://www.postfix.org/
Date: 2022-10-08
Mailing List: postfix-users@postfix.org
Responsible: christos
License: IBM Public License. See also src/external/ibm-public/postfix/dist.
Location: external/ibm-public/postfix/dist
Notes:
Package: ppp
Version: 2.4.9
Current Vers: 2.4.9
Maintainer: Paul Mackerras <paulus@samba.org>
Archive Site:
Home Page:
Date: 2021-01-09
GIT root: https://github.com/paulusmack/ppp.git
Mailing List:
Responsible: christos, cube
License: BSD (3-clause)
Location: external/bsd/ppp/dist
Notes:
BSD support was removed from 2.4.0; I added it back and removed
some GPL pieces. Multilink support is missing. Repeated pings to
Paulus have not yielded results. I've retrofitted pppdump to use
net/zlib, and <net/ppp-comp.h> and I now maintain sys-bsd.c. This
is clearly a pain. I have not tested the modules code, neither our
makefiles make it easy to construct a module, but I left one there
as an example.
TDB code as found in 2.4.x, x>1 is under the GPL. Therefore, we're
using the version found in 2.4.1.
Package: root.cache
Version: 2019093001 (September 30, 2019)
Current Vers: 2019093001 (September 30, 2019)
Maintainer: InterNIC
Archive Site: ftp://ftp.internic.net/domain/named.root
Home Page: ftp://ftp.internic.net/domain/named.root
Date: 2019-10-09
Mailing List:
Responsible: thorpej
License: Public domain
Location: etc/namedb
Notes:
The root server cache is also included with BIND. However, the
InterNIC version is usually more up to date.
Package: routed
Version: 2.32
Current Vers: 2.32
Maintainer: Vernon Schryver <vjs@rhyolite.com>
Archive Site:
Home Page:
Date: 2021-02-28
Mailing List:
Responsible: christos
License: BSD (4-clause)
Location: sbin/routed
Notes:
We use the md5 code from libc
We don't allow RIP_TRACEON and RIP_TRACEOFF
We use arc4random
We use strlcpy/snprintf
Package: send-pr (part of GNATS)
Version: 3.2
Current Vers: 4.2
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/gnats/
Home Page: http://www.gnu.org/software/gnats/
Mailing List: bug-gnats@gnu.org
License: GPLv2+ (4.1), GPLv3+ (4.2 and later)
Responsible:
Location: external/gpl2/send-pr
Notes:
We have 3.2 with patches to become 3.95 which was never distributed. This
is the last "standalone" send-pr version. Newer versions require "query-pr"
to be installed and many more changes. It is not worth the hassle.
Package: SoftFloat
Version: 2a
Current Vers: 3e
Maintainer: John Hauser <jhauser@jhauser.us>
Archive Site: http://www.jhauser.us/arithmetic/SoftFloat.html
Home Page: http://www.jhauser.us/arithmetic/SoftFloat.html
Mailing List:
Responsible: bjh21
License: Public domain
Location: lib/libc/softfloat
Notes:
Heavily modified for use as a soft float library for GCC. The actual
arithmetic code is unchanged, though, and should behave exactly like the
original.
Package: sqlite
Version: 3.26.0
Current Vers: 3.39.3
Maintainer: Richard Hipp <drh@sqlite.org>
Home Page: http://www.sqlite.org
Date: 2022-09-05
Responsible: joerg
License: Public domain
Location: external/public-domain/sqlite/dist
Notes:
Run cleantags before importing because sqlite3.c has an RCSID
Package: TestFloat
Version: 2a
Current Vers: 3e
Maintainer: John Hauser <jhauser@jhauser.us>
Archive Site: http://www.jhauser.us/arithmetic/TestFloat.html
Home Page: http://www.jhauser.us/arithmetic/TestFloat.html
Date: 2020-06-13
Mailing List:
Responsible: ross
License: BSD (4-clause)
Location: regress/lib/libc/ieeefp/testfloat
Notes:
Package: malloc
Version: 1995-01-15
Current Vers: 1995-01-15
Maintainer: FSF
Archive Site: ftp://prep.ai.mit.edu/old-gnu/malloc.tar.gz
Home Page:
Mailing List:
Responsible: christos
License: GPLv2+
Location: external/gpl2/libmalloc
Notes:
The original version of gnumalloc was added (not imported) from
prep.ai.mit.edu in src/gnu/lib/libmalloc in 1993. This is the newest
version from 1995. It is written by Mike Haertel, and was distributed
both standalone and as part of glibc. At some point glibc switched
to use Doug Lea's ptmalloc which is now tightly bound with glibc
and cannot be separated. The Doug Lea version of malloc is also
distributed in a standalone form by Wolfram Gloger in
http://www.malloc.de/en/. We can consider switching to ptmalloc
at some point since it will provide an alternative MT malloc, but
perhaps this implementation should be kept anyway for historical
purposes.
Package: tmux
Version: 3.2a
Current Vers: 3.3a
Maintainer: Nicholas Marriott <nicholas.marriott@gmail.com>
Archive site: https://github.com/tmux/tmux
Home page: http://tmux.github.io
Date: 2022-06-09
Mailing List: tmux-users@googlegroups.com
Responsible: christos
License: BSD
Location: external/bsd/tmux/dist
Notes:
See src/external/bsd/tmux/README for instructions on how to import a
new tmux release.
Package: top
Version: 3.8beta1
Current Vers: 3.8beta1
Maintainer: William LeFebvre <wnl@groupsys.com>
Archive Site: http://www.unixtop.org/dist/top-3.8beta1.tar.gz
Home Page: http://www.unixtop.org/
Mailing List: top-spinners@ocee.groupsys.com
Responsible: simonb, christos
License: BSD (2-clause)
Location: external/bsd/top/dist
Notes:
Package: traceroute
Version: 1.4a12
Current Vers: 1.4a12
Maintainer: traceroute@ee.lbl.gov
Archive Site: ftp://ftp.ee.lbl.gov/
Home Page: http://ftp.ee.lbl.gov/
Mailing List:
Responsible:
License: BSD (4-clause)
Location: usr.sbin/traceroute
Notes:
Added changes from a5 -> a12 manually.
Package: tradcpp
Version: 0.5.3
Current Vers: 0.5.3
Maintainer: David A. Holland <dholland@NetBSD.org>
Archive Site: https://ftp.NetBSD.org/pub/NetBSD/misc/dholland/
Home Page: https://www.NetBSD.org/~dholland/tradcpp/
Mailing List: tech-toolchain
Responsible: dholland
License: BSD (2-clause)
Location: external/bsd/tradcpp
Notes:
Package: tz
Version: tzcode2022g / tzdata2023agtz
Current Vers: tzcode2023a / tzdata2023a
Maintainer: Paul Eggert <eggert@cs.ucla.edu>
Archive Site: ftp://ftp.iana.org/tz/releases/
Archive Site: ftp://munnari.oz.au/pub/oldtz/
Old Archive Site: ftp://elsie.nci.nih.gov/pub/
Home Page: http://www.iana.org/time-zones
Date: 2022-12-11
Mailing List: tz@iana.org
Responsible: kleink, christos, kre
License: Public domain
Location: lib/libc/time/zoneinfo, external/public-domain/tz/share
Notes:
Don't use src/lib/libc/time/tzcode2netbsd to prepare the source tree for import.
Diffs are now applied by hand, since we have too many diffs (re-entrant tzcode,
register removal) to apply. The diffs have been submitted upstream but there
is too much inertia to apply them. Check for .gitignore files.
For the data files, do use external/public-domain/tz/tzdata2netbsd (usually,
for now, late 2021, do it manually).
Package: wpa_supplicant/hostapd
Version: 2.9
Current Vers: 2.9
Maintainer: Jouni Malinen <jkmaline@cc.hut.fi>
Archive Site: http://w1.fi/releases/
Home Page: http://w1.fi/wpa_supplicant/
Date: 2021-02-28
Mailing List:
Responsible: scw, dyoung, christos
License: BSD or GPLv2
Location: external/bsd/wpa/dist
Notes:
See /usr/src/external/bsd/wpa/NetBSD-upgrade for update instructions.
Package: zlib
Version: 1.2.13
Current Vers: 1.2.13
Maintainer: Jean-loup Gailly and Mark Adler <zlib@gzip.org>
Archive Site: http://www.zlib.net/
Home Page: http://www.zlib.net/
Date: 2022-10-15
Mailing List:
Responsible: gwr, christos
License: BSD (3-clause)
Location: common/dist/zlib
Notes:
Imported to src/common/dist/zlib and shared by the kernel and userland.
Remember to run cleantags
Package: services, protocols
Version: 2021-04-07 (services), 2021-02-26 (protocols)
Current Vers: 2021-04-07 (services), 2021-02-26 (protocols)
Maintainer: IANA
Archive Site: http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.txt (services)
Archive Site: http://www.iana.org/assignments/protocol-numbers/protocol-numbers.txt (protocols)
Home Page: http://www.iana.org/
Date: 2021-04-08
Mailing List:
Responsible: christos
License: None
Location: etc
Notes:
1. Build package net/iana-etc
2. Add NetBSD rcsid to the generated protocols and services in the package
work area.
3. Append the local services from the current services file.
4. Run:
services_mkdb -u services > /usr/src/etc/services
cp protocols /usr/src/etc/protocols
5. Fix protocols
- fix manet alias to MANET; giving an alias with the same name is a no/op
- protocol 84 is defined for as ttp and iptm, merge the two entries since
libc getprotoent() does not read the whole file and merge in the "files"
implementation.
- add alias carp to vrrp
- put back 240 (pfsync), splitting the unassigned entries
Package: pigz
Version: 2.3.1
Current Vers: 2.4
Maintainer: Mark Adler <madler@alumni.caltech.edu>
Archive Site: http://zlib.net/pigz/
Home Page: http://zlib.net/pigz/
Mailing List: http://mail.zlib.net/mailman/listinfo/pigz-announce_zlib.net
Responsible: mrg, tls
License: zlib
Location: external/zlib/pigz/dist
Notes:
Package: xz
Version: 5.2.4
Current Vers: 5.4.1
Maintainer: Lasse Collin <lasse.collin@tukanni.org>
Archive Site: http://tukaani.org/xz/
Home Page: http://tukaani.org/xz/
Date: 2023-01-12
Responsible: joerg
License: public-domain
Location: external/public-domain/xz/dist
Notes:
1. See prepare-import script for stripping down the distribution.
2. Use run-configure and double check that the stripped down configure works
for tools.
3. Carefully check for non-autoconf GPL components leaked into the dist area.
Package: mpc
Version: 1.3.1
Current Vers: 1.3.1
Maintainer:
Archive Site: http://www.multiprecision.org/mpc/download/
Home Page: http://www.multiprecision.org/mpc/
Mailing List: http://www.multiprecision.org/index.php?prog=mpc&page=development
Responsible: mrg
License: LGPL3
Location: external/lgpl3/mpc/dist
Notes:
Package: mpfr
Version: 4.2.0
Current Vers: 4.2.0
Maintainer:
Archive Site: http://www.mpfr.org/mpfr-current/
Home Page: http://www.mpfr.org/
Mailing List: http://websympa.loria.fr/wwsympa/arc/mpfr-announce
Responsible: mrg
License: LGPL3
Location: external/lgpl3/mpfr/dist
Notes:
Package: GNU MP
Version: 6.2.1
Current Vers: 6.2.1
Maintainer: https://gmplib.org/mailman/listinfo/gmp-devel
Archive Site: https://gmplib.org/
Home Page: https://gmplib.org/
Mailing List: https://gmplib.org/mailman/listinfo/gmp-announce
Responsible: mrg
License: LGPL3
Location: external/lgpl3/gmp/dist
Notes: See the README.
Package: osnet
Version: osnet-20100224
Current Vers: ?
Maintainer: ?
Archive Site: ?
Home Page: ?
Mailing List: ?
Responsible: ?
License: CDDL
Location: external/cddl/osnet
Notes:
Package: sljit
Version: 0.93 (svn revision 333)
Current Vers: 0.93
Maintainer: Zoltán Herczeg <hzmester@freemail.hu
Archive Site: http://sourceforge.net/projects/sljit/
Home Page: http://sljit.sourceforge.net/
Mailing List: none
Responsible: alnsn
License: BSD (2-clause)
Location: sys/external/bsd/sljit/dist
Notes:
Need to feed back local changes
Package: tre
Version: 0.8.0, git source as of 20171117
Current Vers: 0.8.0
Maintainer: http://laurikari.net/tre
Archive Site: https://github.com/laurikari/tre
Home Page: http://laurikari.net/tre
Mailing List:
Responsible: agc, christos
License: BSD (2-clause)
Location: external/bsd/tre/dist
Notes:
Need to feed back local changes
Package: TrouSerS
Version: 0.3.14
Current Vers: 0.3.14
Maintainer: http://trousers.sourceforge.net
Archive Site: http://trousers.sourceforge.net
Home Page: http://trousers.sourceforge.net
Mailing List: http://trousers.sourceforge.net
Responsible: christos
License: CPL
Location: crypto/external/cpl/trousers/dist
Notes:
Need to feed back local changes
Package: tpm-tools
Version: 1.3.9.1
Current Vers: 1.3.9.1
Maintainer: http://trousers.sourceforge.net
Archive Site: http://trousers.sourceforge.net
Home Page: http://trousers.sourceforge.net
Mailing List: http://trousers.sourceforge.net
Responsible: christos
License: CPL
Location: crypto/external/cpl/tpm-tools/dist
Notes:
Need to feed back local changes
Package: elftoolchain (libelf/libdwarf)
Version: FreeBSD-2016-02-19-r295822
Current Vers: 0.7.1
Maintainer: Joseph Koshi <jkoshi@freebsd.org>
Archive Site: none
Home Page: http://elftoolchain.sourceforge.net
Mailing List: none
Responsible: christos
License: BSD-like (2-clause)
Location: sys/external/bsd/elftoolchain/dist
Notes:
Run prepare-import.sh; next time use svn id.
Package: timeout
Version: FreeBSD-2014-07-16 r268763
Current Vers: FreeBSD-2016-05-01 r331720
Maintainer: Baptiste Daroussin <bapt@FreeBSD.org>
Archive Site: none
Home Page: https://svnweb.freebsd.org/base/head/usr.bin/timeout/
Mailing List: none
Responsible: christos
License: BSD-like (2-clause)
Location: usr.bin/timeout
Package: libproc
Version: FreeBSD-2015-09-24
Current Vers: FreeBSD-2018-07-27 r336782
Maintainer: Rui Paulo <rpaulo@FreeBSD.org>
Archive Site: none
Home Page: https://svnweb.freebsd.org/base/head/lib/libproc/
Mailing List: none
Responsible: christos
License: BSD-like (2-clause)
Location: external/bsd/libproc/dist
Package: librtld_db
Version: FreeBSD-2015-09-24
Current Vers: FreeBSD-2017-11-26 r326219
Maintainer: Rui Paulo <rpaulo@FreeBSD.org>
Archive Site: none
Home Page: https://svnweb.freebsd.org/base/head/lib/librtld_db/
Mailing List: none
Responsible: christos
License: BSD-like (2-clause)
Location: external/bsd/librtld_db/dist
Package: netcat
Version: OpenBSD-2017-02-06
Current Vers: OpenBSD-2020-02-12
Maintainer: OpenBSD
Archive Site: http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/nc/
Home Page: none
Date: 2020-06-13
Mailing List: none
Responsible: christos
License: BSD-like (3-clause)
Location: usr.bin/nc
Package: gnu-efi
Version: 3.0.14
Current Vers: 3.0.14
Maintainer: https://sourceforge.net/projects/gnu-efi/
Archive Site: https://sourceforge.net/projects/gnu-efi/
Home Page: https://sourceforge.net/projects/gnu-efi/
Mailing List: https://sourceforge.net/projects/gnu-efi/
Responsible:
License: BSD-like (3-clause)
Location: sys/external/bsd/gnu-efi
Package: dc
Version: 20170410
Current Vers: 20190906
Maintainer: The OpenBSD Project
Archive Site: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/dc
Home Page: http://www.openbsd.org/
Date: 2020-06-13
Mailing List:
License: BSD
Responsible: christos
Location: usr.bin/dc
Notes:
Uses OpenSSL's bignum
Package: dtc, libfdt
Version: 1.5.1
Current Vers: 1.5.1
Maintainer: David Gibson <david@gibson.dropbear.id.au>, Jon Loeliger <jdl@jdl.com>
Archive Site: https://git.kernel.org/pub/scm/utils/dtc/dtc.git
Home Page: https://git.kernel.org/pub/scm/utils/dtc/dtc.git
Mailing List: mailto:devicetree-compiler@vger.kernel.org
Responsible: skrll
License: GPLv2 (dtc), BSD (libfdt)
Location: external/gpl2/dtc, sys/external/bsd/libfdt
Notes:
external/gpl2/dtc/dtc2netbsd should be used to create directories to import
Package: dts
Version: 5.15
Current Vers: 5.15
Maintainer: https://www.kernel.org/
Archive Site: https://cdn.kernel.org/pub/linux/kernel/v5.x/
Home Page: https://www.kernel.org/
Mailing List: mailto:devicetree@vger.kernel.org
Responsible: jmcneill
License: GPLv2 and dual GPLv2/X11 license
Location: sys/external/gpl2/dts
Package: iscsi
Version: 4.12.4
Current Vers: 4.12.4
Maintainer: Intel Corporation
Archive Site:
Home Page:
Mailing List:
Responsible:
License: BSD-like (4-clause)
Location: external/bsd/iscsi
Notes:
Package: rpi-firmware
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Broadcom, Raspberry Pi (Trading) Ltd
Responsible:
Location: external/broadcom/rpi-firmware
Notes:
Package: rtwn
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Realtek Semiconductor Corporation
Responsible:
Location: external/realtek/rtwn
Notes:
Package: urtwn
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Realtek Semiconductor Corporation
Responsible:
Location: external/realtek/urtwn/
Notes:
Package: repulse
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: ALiENDESiGN GbR
Responsible:
Location: sys/arch/amiga/dev/repulse_firmware.h
Notes:
Package: cxgb
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Chelsio Inc.
Responsible:
Location: sys/dev/pci/cxgb/cxgb_firmware_exports.h
Notes:
Package: athn
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Atheros Communicatios, Inc.
Responsible:
Location: external/atheros/athn
Notes:
Package: otus
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Atheros Communicatios, Inc.
Responsible:
Location: external/atheros/otus
Notes:
Package: intel-fw-eula
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Intel Corporation
Responsible:
Location: external/intel-fw-eula
Notes:
Package: intel-fw-public
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Intel Corporation
Responsible:
Location: external/intel-fw-public
Notes:
Package: aic7xxx
Version:
Current Vers:
Maintainer: Justin T. Gibbs
Archive Site:
Home Page:
Mailing List:
License: Adaptec Inc or LGPL2
Responsible:
Location: sys/dev/microcode/aic7xxx
Notes:
Package: atmel
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Atmel Corporation
Responsible:
Location: sys/dev/microcode/atmel
Notes:
Package: bge
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Broadcom Corporation
Responsible:
Location: sys/dev/microcode/bge
Notes:
Package: bnx
Version:
Current Vers:
Maintainer: David Christensen <davidch@broadcom.com>
Archive Site:
Home Page:
Mailing List:
License: Broadcom Corporation
Responsible:
Location: sys/dev/microcode/bnx
Notes:
Package: cylades-z
Version:
Current Vers:
Maintainer: Cyclades Corp
Archive Site:
Home Page:
Mailing List:
License: unknown
Responsible:
Location: sys/dev/microcode/cyclades-z
Notes:
Package: i8255x
Version: 3.28
Current Vers:
Maintainer: Patrick J Luhmann (PJL)
Archive Site:
Home Page:
Mailing List:
License: Intel Corporation
Responsible:
Location: sys/dev/microcode/i8255x
Notes:
Package: isp
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: QLogic, Inc.
Responsible:
Location: sys/dev/microcode/isp
Notes:
Package: radeon
Version:
Current Vers:
Maintainer:
Archive Site:
Home Page:
Mailing List:
License: Advanced Micro Devices, Inc.
Responsible:
Location: sys/dev/microcode/radeon
Notes:
Package: ral
Version:
Current Vers:
Maintainer:
Archive Site: http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
Home Page:
Mailing List:
License: Ralink Technology Corp
Responsible:
Location: external/realtek/ral
Notes:
Package: rum
Version:
Current Vers:
Maintainer: Paul Lin <paul_lin@ralinktech.com.tw>
Archive Site:
Home Page:
Mailing List:
License: Ralink Technology Corp
Responsible:
Location: external/realtek/rum
Notes:
Package: run
Version:
Current Vers:
Maintainer: Paul Lin <paul_lin@ralinktech.com.tw>
Archive Site:
Home Page:
Mailing List:
License: Ralink Technology Corp
Responsible:
Location: sys/dev/microcode/run
Notes:
Package: siop
Version:
Current Vers:
Maintainer: Manuel Bouyer, Shuichiro URATA, Michael L. Hitch
Archive Site:
Home Page:
Mailing List:
License: BSD-like (2-clause, 3-clause)
Responsible:
Location: sys/dev/microcode/siop
Notes:
Package: tigon
Version: 12.4.11
Current Vers:
Maintainer: wpaul@brak.osd.bsdi.com
Archive Site: https://people.freebsd.org/~wpaul/Alteon/
Home Page: http://www.alteon.com/support/openkits (extinct)
Mailing List:
License: Alteon WebSystems, Inc.
Responsible:
Location: sys/dev/microcode/tigon
Notes:
See https://lists.debian.org/debian-legal/2011/10/msg00001.html
Package: typhoon
Version:
Current Vers:
Maintainer: 3Com Corporation
Archive Site:
Home Page:
Mailing List:
License: BSD-like (3-clause)
Responsible:
Location: sys/dev/microcode/typhoon
Notes:
Package: wi
Version:
Current Vers:
Maintainer: Symbol Technologies Inc.
Archive Site:
Home Page: http://www.symbol.com
Mailing List:
License: BSD-like (3-clause)
Responsible:
Location: sys/dev/microcode/wi
Notes:
Package: yds
Version:
Current Vers:
Maintainer: Yamaha Corporation
Archive Site:
Home Page:
Mailing List:
License: unknown
Responsible:
Location: sys/dev/microcode/yds
Notes:
Package: zyd
Version:
Current Vers:
Maintainer: ZyDAS Technology Corporation
Archive Site:
Home Page:
Mailing List:
License: BSD-like (3-clause)
Responsible:
Location: sys/dev/microcode/zyd
Notes:
Package: libnv
Version: 20180906
Current Vers: $(date)
Maintainer: christos
Archive Site:
Home Page:
Mailing List:
License: BSD-like (2-clause)
Responsible:
Location: sys/external/bsd/libnv/dist
Notes:
To be used only for npf (library and headers are private)
Copied from FreeBSD:
/usr/src/sys/sys/{d,c,}nv.h
/usr/src/lib/libnv/
/usr/src/contrib/lib/libnv/
/usr/src/share/man/man9/{d,c,}nv.9
Package: gettext
Version: 0.16.1 (Last GPLv2+ version)
Current Vers: 0.21
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/gettext/
Home Page: http://www.gnu.org/software/gettext/
Mailing List: bug-gnu-utils@gnu.org
Responsible: christos
License: GPLv2+ (0.16.1), GPLv3+ (0.17 and later)
Location: external/gpl2/gettext
Notes:
GNU gettext is used for userland tools like msgfmt(1) only. For libintl,
we use BSD-licensed implementation from Citrus project (see entry for
"Citrus XPG4DL"). We hope to replace userland tools with BSD-licensed one.
Package: grep
Version: 2.5.1a (last GPLv2+ version)
Current Vers: 3.7
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/grep/
Home Page: http://www.gnu.org/software/grep/
Mailing List: bug-gnu-utils@gnu.org
Responsible: simonb
License: GPLv2+ (2.5.1a), GPLv3+ (2.5.3 and later)
Location: external/gpl2/grep
Notes:
Use external/gpl2/grep/grep2netbsd for preparing the source tree
for the import.
On 2 Jan 2004, a non-GNU grep (FreeGrep, https://github.com/howardjp/freegrep;
see also http://www.monkey.org/openbsd/archive/tech/0306/msg00129.html)
was imported into src/usr.bin/grep;
on 16 Feb 2011, the BSD grep implementation from FreeBSD was imported
in src/usr.bin/grep, replacing FreeGrep
(http://mail-index.NetBSD.org/source-changes/2011/02/16/msg018643.html).
Package: groff
Version: 1.19.2 (last GPLv2+ version)
Current Vers: 1.22.4
Maintainer: Werner Lemberg/FSF
Archive Site: ftp://ftp.gnu.org/gnu/groff/
Home Page: http://www.gnu.org/software/groff/
Mailing List: bug-groff@gnu.org
Responsible:
License: GPLv2+ (1.19.2), GPLv3+ (1.20 and later)
Location: external/gpl2/groff
Notes:
Use groff2netbsd from external/gpl2/groff/groff2netbsd to prepare the
distribution for import.
Update MDATE in src/external/gpl2/groff/Makefile.inc.
Package: gmake
Version: 3.81 (Last GPlv2+ version)
Current Vers: 4.4
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/make/
Home Page: http://www.gnu.org/software/make/
Date: 2022-12-08
Mailing List: bug-make@gnu.org
Responsible:
License: GPLv2+ (3.81), GPLv3+ (3.82 and later)
Location: external/gpl2/gmake
Notes:
Package: diffutils
Version: 2.8.1 (Last GPLv2+ version)
Current Vers: 3.6
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/diffutils/
Home Page: http://www.gnu.org/software/diffutils/
Mailing List: bug-diffutils@gnu.org
Responsible:
License: GPLv2+ (2.8.1), GPLv3+ (2.9 and later)
Location: external/gpl2/diffutils
Notes:
Use external/gpl2/diffutils/diffutils2netbsd for preparing the source tree
for the import.
Package: rcs
Version: 5.7 (Last GPLv2+ version)
Current Vers: 5.9.4
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/rcs/
Mailing List: bug-gnu-utils@gnu.org
Home Page: http://www.gnu.org/software/rcs/
Responsible: agc
License: GPLv2+ (5.7), GPLv3+ (5.8 and later)
Location: external/gpl2/rcs
Notes:
Old versions are available from Purdue (ftp.cs.purdue.edu:/pub/RCS).
Package: texinfo
Version: 4.8a (Last GPLv2+ version)
Current Vers: 7.0
Maintainer: FSF
Archive Site: ftp://ftp.gnu.org/gnu/texinfo/
Home Page: http://www.gnu.org/software/texinfo/
Mailing List: bug-texinfo@gnu.org
Responsible:
License: GPLv2+ (4.8a), GPLv3+ (4.9 and later)
Location: external/gpl2/texinfo
Notes:
Use src/external/gpl2/texinfo/texinfo2netbsd for preparing the source tree
for the import.
Package: indent
Version: FreeBSD-2018-11-04 r340138
Current Vers: FreeBSD-2020-05-21 r361337
Maintainer: The FreeBSD Project
Archive Site: none
Home Page: https://svnweb.freebsd.org/base/head/usr.bin/indent/
Date: 2020-06-13
Mailing List: none
Responsible:
License: BSD-like (4-clause)
Location: usr.bin/indent
Notes:
Tests are stored in tests/usr.bin/indent.
Package: ena
Version: 0.8.1
Current Vers: 2.1.1
Maintainer: Amazon.com
Archive Site: https://github.com/amzn/amzn-drivers/tree/master/kernel/fbsd/ena
Home Page: https://github.com/amzn/amzn-drivers/
Date: 2020-06-13
Mailing List: none
Responsible:
License: BSD-like (2 and 3-clause)
Location: sys/external/bsd/ena-com
Notes:
Package: terminfo
Version: 20190609
Current Vers: 20190609
Maintainer: Thomas Dickey (ncurses)
Archive Site: ftp://ftp.invisible-island.net/ncurses/current
Home Page: https://invisible-island.net/ncurses/
Date: 2019-11-27
Mailing List: bug-ncurses@gnu.org
Responsible:
License: none
Location: share/terminfo
Notes:
Use the import script in /usr/src/share/terminfo
Package: libcbor
Version: 0.7.0
Current Vers: 0.5.0-119-g3b41770 (3b41770ab0ca408d242041dddb3b75811345573f)
Maintainer: Pavel Kalvoda
Archive Site: https://github.com/PJK/libcbor
Home Page:
Date: 2020-03-02
Mailing List:
Responsible: christos
License: mit
Location: external/mit/libcbor
Notes:
Package: pam-u2f
Version: 1.2.0
Current Vers: 1.2.0
Maintainer: Yubico
Archive Site: https://github.com/Yubico/pam-u2f
Home Page: https://developers.yubico.com/pam-u2f/
Date: 2021-09-24
Mailing List:
Responsible: christos
License: bsd
Location: external/bsd/pam-u2f
Notes:
Package: libfido2
Version: 1.8.0
Current Vers: 1.8.0
Maintainer: Yubico
Archive Site: https://github.com/Yubico/libfido2
Home Page: https://developers.yubico.com/libfido2/
Date: 2021-09-24
Mailing List:
Responsible: christos
License: bsd
Location: external/bsd/libfido2
Notes:
Package: libsodium
Version: 1.0.16
Current Vers: 1.0.18
Maintainer: Frank Denis
Archive Site: https://github.com/jedisct1/libsodium
Home Page: https://libsodium.org/
Date: 2020-08-20
Mailing List: sodium-subscribe@pureftpd.org
Responsible: riastradh
License: bsd
Location: sys/external/bsd/libsodium
Notes:
Package: Sensirion VOC index algorithm
Version: git commit hash 4f69c0d8e2f7192aeaf0d268211b1f54af50146b
Current Vers: git commit hash 4f69c0d8e2f7192aeaf0d268211b1f54af50146b
Maintainer: Brad Spencer
Archive Site: https://github.com/Sensirion/embedded-sgp
Home Page: https://github.com/Sensirion
Date: 2021-09-30
Mailing List:
Responsible: brad
License: BSD (3-clause)
Location: sys/dev/i2c/sensirion_voc_algorithm.c sys/dev/i2c/sensirion_voc_algorithm.h
Notes:
Package: Terminus Font
Version: 4.49.1
Current Vers: 4.49.1
Maintainer: Dimitar Toshkov Zhekov
Archive Site: http://terminus-font.sourceforge.net/
Home Page: http://terminus-font.sourceforge.net/
Date: 2020-12-28
Mailing List:
Responsible:
License: OFL-1.1-RFN
Location: share/wscons/fonts
Notes:
Suitably encoded BDF files are prepared from the Unicode encoded
masters using upstream build scripts. BDF files are converted to the
WSF files with xsrc/local/programs/bdfload. File names for the
re-encoded subsets follow the convention used by the upstream.
Package: Spleen
Version: 1.9.1
Current Vers: 1.9.1
Maintainer: Frederic Cambus
Archive Site: https://github.com/fcambus/spleen
Home Page: https://github.com/fcambus/spleen
Date: 2021-06-13
Mailing List:
Responsible: fcambus
License: BSD (2-clause)
Location: share/wscons/fonts
Notes:
|