summaryrefslogtreecommitdiff
path: root/doc/CHANGES-2021
blob: dc8d424af0650c526c5cffc82efe914a6e821358 (plain)
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
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
$NetBSD: CHANGES-2021,v 1.1856 2021/03/28 18:35:40 leot Exp $

Changes to the packages collection and infrastructure in 2021:

	Updated devel/R-git2r to 0.27.1 [mef 2021-01-01]
	Updated devel/R-rlang to 0.4.9 [mef 2021-01-01]
	Updated devel/R-cli to 2.2.0 [mef 2021-01-01]
	Updated devel/R-testthat to 3.0.1 [mef 2021-01-01]
	Updated net/mikutter to 4.1.3 [tsutsui 2021-01-01]
	Added lang/R-cpp11 version 0.2.4 [mef 2021-01-01]
	Updated devel/R-pkgbuild to 1.2.0 [mef 2021-01-01]
	Added devel/R-gert version 1.0.2 [mef 2021-01-01]
	Added devel/R-rappdirs version 0.3.1 [mef 2021-01-01]
	Updated devel/boost-libs to 1.75.0 [ryoon 2021-01-01]
	Updated devel/boost-build to 1.75.0 [ryoon 2021-01-01]
	Updated devel/boost-docs to 1.75.0 [ryoon 2021-01-01]
	Updated devel/boost-headers to 1.75.0 [ryoon 2021-01-01]
	Updated devel/boost-jam to 1.75.0 [ryoon 2021-01-01]
	Updated devel/boost-mpi to 1.75.0 [ryoon 2021-01-01]
	Updated devel/py-boost to 1.75.0 [ryoon 2021-01-01]
	Updated meta-pkgs/boost to 1.75.0 [ryoon 2021-01-01]
	Updated fonts/harfbuzz to 2.7.4 [ryoon 2021-01-01]
	Updated fonts/harfbuzz-icu to 2.7.4 [ryoon 2021-01-01]
	Updated textproc/icu to 68.2 [ryoon 2021-01-01]
	Updated mail/mutt to 2.0.4 [tron 2021-01-01]
	Updated audio/pulseaudio to 14.0 [ryoon 2021-01-01]
	Updated devel/R-usethis to 2.0.0 [mef 2021-01-01]
	Added devel/R-pkgcache version 1.1.1 [mef 2021-01-01]
	Added devel/R-lpSolve version 5.6.15 [mef 2021-01-01]
	Updated net/dbip-asn-lite to 2021.01 [fcambus 2021-01-01]
	Updated net/dbip-city-lite to 2021.01 [fcambus 2021-01-01]
	Updated net/dbip-country-lite to 2021.01 [fcambus 2021-01-01]
	Added devel/R-pak version 0.1.2.1 [mef 2021-01-01]
	Updated net/drill to 1.7.1 [he 2021-01-01]
	Updated emulators/vice to 3.5 [rhialto 2021-01-01]
	Updated devel/cbindgen to 0.16.0 [ryoon 2021-01-01]
	Updated www/firefox to 84.0.1 [ryoon 2021-01-01]
	Updated www/firefox-l10n to 84.0.1 [ryoon 2021-01-01]
	Updated mail/thunderbird to 78.6.0 [ryoon 2021-01-01]
	Updated mail/thunderbird-l10n to 78.6.0 [ryoon 2021-01-01]
	Updated x11/x3270 to 4.0ga13 [rhialto 2021-01-01]
	Updated misc/libreoffice to 7.0.4.2 [ryoon 2021-01-01]
	Updated x11/xterm to 363 [pin 2021-01-01]
	Updated sysutils/broot to 1.1.10 [pin 2021-01-01]
	Added textproc/nanogrep version 1.2.1 [pin 2021-01-01]
	Added textproc/bk version 0.5.1 [pin 2021-01-01]
	Added time/heliocron version 0.5.0 [pin 2021-01-01]
	Added security/opendoas version 6.8 [pin 2021-01-01]
	Added devel/tokei version 12.1.1 [pin 2021-01-01]
	Added sysutils/navi version 2.13.1 [pin 2021-01-01]
	Updated mail/qmail-qfilter to 2.1nb6 [schmonz 2021-01-01]
	Updated emulators/mame to 0.227 [wiz 2021-01-01]
	Updated sysutils/consolekit to 1.2.2 [nia 2021-01-01]
	Updated x11/gtk2 to 2.24.33 [nia 2021-01-01]
	Added net/nicotine-plus version 2.2.2 [nia 2021-01-01]
	Removed net/nicotine successor net/nicotine-plus [nia 2021-01-01]
	Added graphics/stitchy version 0.1.3 [pin 2021-01-01]
	Updated textproc/libhighlight to 3.60 [schmonz 2021-01-01]
	Updated textproc/highlight to 3.60 [schmonz 2021-01-01]
	Updated textproc/p5-highlight to 3.60 [schmonz 2021-01-01]
	Updated lang/rust to 1.48.0 [he 2021-01-01]
	Updated devel/libdatrie to 0.2.12nb2 [scole 2021-01-01]
	Updated fonts/jomolhari-ttf to 0.3 [uwe 2021-01-01]
	Updated fonts/babelstone-tibetan-ttf to 10.5 [uwe 2021-01-02]
	Updated devel/p5-Date-Manip to 6.83 [wen 2021-01-02]
	Updated devel/p5-Devel-PatchPerl to 2.06 [wen 2021-01-02]
	Updated devel/p5-File-Listing to 6.14 [wen 2021-01-02]
	Added multimedia/assimp version 5.0.1 [pin 2021-01-02]
	Updated devel/p5-File-MimeInfo to 0.30 [wen 2021-01-02]
	Updated lang/python38 to 3.8.7 [adam 2021-01-02]
	Updated lang/py38-html-docs to 3.8.7 [adam 2021-01-02]
	Updated geography/py-obspy to 1.2.2 [mef 2021-01-02]
	Updated math/R-Rcmdr to 2.7.1 [mef 2021-01-02]
	Added devel/R-filelock version 1.0.2 [mef 2021-01-02]
	Updated lang/rust-bin to 1.48.0 [nia 2021-01-02]
	Updated lang/camlp5 to 7.13 [nia 2021-01-02]
	Updated audio/spotify-qt to 3.3 [pin 2021-01-02]
	Updated news/inn to 2.6.3 [spz 2021-01-02]
	Updated mail/notmuch to 0.31.3 [ryoon 2021-01-02]
	Updated www/ap-mono to 3.13 [nia 2021-01-02]
	Updated www/mono-xsp to 4.7.1 [nia 2021-01-02]
	Updated wm/herbstluftwm to 0.9.1 [nia 2021-01-02]
	Updated devel/SDL2 to 2.0.14 [nia 2021-01-02]
	Updated devel/lmdbg to 1.3.0 [cheusov 2021-01-02]
	Added chat/element-web version 1.7.16 [js 2021-01-02]
	Updated security/dnssec-tools to 2.2.3 [nia 2021-01-02]
	Updated devel/autoconf to 2.70 [js 2021-01-02]
	Updated devel/cscope to 15.9 [wiz 2021-01-03]
	Updated comms/asterisk15 to 15.4.1nb24 [gdt 2021-01-03]
	Updated geography/geos to 3.9.0 [gdt 2021-01-03]
	Updated comms/asterisk13 to 13.38.1 [jnemeth 2021-01-03]
	Updated www/php-propro2 to 2.1.0 [taca 2021-01-03]
	Updated security/php-oauth to 2.0.7 [taca 2021-01-03]
	Updated devel/php-gearman to 2.0.6 [taca 2021-01-03]
	Updated www/php-http3 to 3.2.3 [taca 2021-01-03]
	Updated archivers/php-pecl-zip to 1.19.2 [taca 2021-01-03]
	Updated devel/php-xdebug to 3.0.1 [taca 2021-01-03]
	Updated print/php-pdflib to 4.1.4 [taca 2021-01-03]
	Updated security/php-pecl-mcrypt to 1.0.4 [taca 2021-01-03]
	Updated security/php-ssdeep to 1.1.0 [taca 2021-01-03]
	Updated security/php-ssh2 to 1.2 [taca 2021-01-03]
	Updated devel/mob to 1.1.0 [schmonz 2021-01-03]
	Updated www/php-apcu to 5.1.19 [taca 2021-01-03]
	Updated www/php-uploadprogress to 1.1.3 [taca 2021-01-03]
	Updated mail/php-mailparse to 3.1.1 [taca 2021-01-03]
	Updated databases/php-mongodb to 1.9.0 [taca 2021-01-03]
	Updated time/ruby-tzinfo1 to 1.2.9 [taca 2021-01-03]
	Updated time/ruby-tzinfo to 2.0.4 [taca 2021-01-03]
	Updated time/ruby-tzinfo-data to 1.2020.6 [taca 2021-01-03]
	Updated www/php-ja-wordpress to 5.6 [taca 2021-01-03]
	Updated comms/asterisk13 to 13.38.1nb1 [jnemeth 2021-01-03]
	Updated comms/asterisk14 to 14.7.8nb7 [jnemeth 2021-01-03]
	Updated www/libmicrohttpd to 0.9.72 [wiz 2021-01-03]
	Updated time/py-pytz to 2020.5 [adam 2021-01-03]
	Updated databases/py-tortoise-orm to 0.16.19 [adam 2021-01-03]
	Updated math/R-RcppEigen to 0.3.3.9.1 [mef 2021-01-03]
	Updated textproc/py-xmlschema to 1.4.1 [adam 2021-01-03]
	Updated www/py-uvicorn to 0.13.3 [adam 2021-01-03]
	Updated converters/bdf2psf to 1.200 [fcambus 2021-01-03]
	Updated security/py-gssapi to 1.6.12 [adam 2021-01-03]
	Updated security/py-asyncssh to 2.5.0 [adam 2021-01-03]
	Updated math/R-SparseM to 1.78 [mef 2021-01-03]
	Updated devel/py-typed-ast to 1.4.2 [adam 2021-01-03]
	Added www/py-respx version 0.16.3 [adam 2021-01-03]
	Updated math/R-XML to 3.99.0.5 [mef 2021-01-03]
	Updated math/R-akima to 0.6.2.1 [mef 2021-01-03]
	Updated math/R-backports to 1.2.1 [mef 2021-01-03]
	Updated math/R-chron to 2.3.56 [mef 2021-01-03]
	Updated math/R-classInt to 0.4.3 [mef 2021-01-03]
	Updated archivers/zstd to 1.4.8 [adam 2021-01-03]
	Updated archivers/py-zstandard to 0.15.1 [adam 2021-01-03]
	Updated audio/mpg123 to 1.26.4 [adam 2021-01-03]
	Updated games/wesnoth to 1.14.15 [adam 2021-01-03]
	Removed meta-pkgs/php72-extensions [taca 2021-01-03]
	Removed lang/php72 [taca 2021-01-03]
	Updated net/wireshark to 3.4.2 [adam 2021-01-03]
	Updated misc/stellarium to 0.20.4 [adam 2021-01-03]
	Updated graphics/luminance-hdr to 2.6.0 [adam 2021-01-03]
	Updated audio/timidity to 2.15.0 [adam 2021-01-03]
	Updated security/tor-browser to 10.0.7 [wiz 2021-01-03]
	Updated security/tor-browser-noscript to 11.1.7 [wiz 2021-01-03]
	Updated databases/py-apsw to 3.34.0 [adam 2021-01-03]
	Updated devel/py-ZopeInterface to 5.2.0 [adam 2021-01-03]
	Updated comms/py-colorama to 0.4.4 [adam 2021-01-03]
	Updated net/py-IP to 1.01 [adam 2021-01-03]
	Updated www/py-sanic to 20.12.0 [adam 2021-01-03]
	Updated devel/py-google-api-core to 1.24.1 [adam 2021-01-03]
	Updated databases/prometheus to 2.23.0nb1 [adam 2021-01-04]
	Updated databases/prometheus to 2.23.0nb2 [adam 2021-01-04]
	Updated graphics/ImageMagick to 7.0.10.54 [wiz 2021-01-04]
	Updated textproc/enchant2 to 2.2.15 [wiz 2021-01-04]
	Updated math/fftw to 3.3.9nb3 [wiz 2021-01-04]
	Updated math/fftwf to 3.3.9 [wiz 2021-01-04]
	Updated shells/bash to 5.1.4 [wiz 2021-01-04]
	Updated databases/gdbm to 1.19 [wiz 2021-01-04]
	Updated databases/gdbm_compat to 1.19 [wiz 2021-01-04]
	Updated finance/gnucash to 4.4 [wiz 2021-01-04]
	Updated finance/gnucash-docs to 4.4 [wiz 2021-01-04]
	Updated graphics/libheif to 1.10.0 [wiz 2021-01-04]
	Updated audio/libshout to 2.4.5 [wiz 2021-01-04]
	Updated geography/osm-gps-map to 1.1.0 [ryoon 2021-01-04]
	Updated lang/mono6 to 6.12.0.107 [wiz 2021-01-04]
	Updated security/p11-kit to 0.23.22 [wiz 2021-01-04]
	Updated textproc/pugixml to 1.11.4 [wiz 2021-01-04]
	Updated sysutils/py-borgbackup to 1.1.15 [wiz 2021-01-04]
	Updated converters/py-chardet to 4.0.0 [wiz 2021-01-04]
	Updated devel/py-hypothesis to 5.46.0 [wiz 2021-01-04]
	Updated devel/py-packaging to 20.8 [wiz 2021-01-04]
	Updated devel/readline to 8.1 [wiz 2021-01-04]
	Updated devel/spdlog to 1.8.2 [wiz 2021-01-04]
	Updated audio/strawberry to 0.8.5 [wiz 2021-01-04]
	Updated textproc/ugrep to 3.1.1 [wiz 2021-01-04]
	Updated converters/utf8proc to 2.6.1 [wiz 2021-01-04]
	Updated x11/xscreensaver to 5.45 [wiz 2021-01-04]
	Updated x11/xscreensaver-demo to 5.45 [wiz 2021-01-04]
	Updated net/wget to 1.21 [wiz 2021-01-04]
	Updated graphics/ilmbase to 2.5.4 [wiz 2021-01-04]
	Updated graphics/openexr to 2.5.4 [wiz 2021-01-04]
	Updated print/cups to 2.3.3op1 [prlw1 2021-01-04]
	Updated print/cups-filters to 1.28.6 [prlw1 2021-01-04]
	Added wm/mcwm version 20130209.2 [nia 2021-01-04]
	Updated mail/dovecot2 to 2.3.13 [taca 2021-01-04]
	Updated mail/dovecot2-gssapi to 2.3.13 [taca 2021-01-04]
	Updated mail/dovecot2-ldap to 2.3.13 [taca 2021-01-04]
	Updated mail/dovecot2-mysql to 2.3.13 [taca 2021-01-04]
	Updated mail/dovecot2-pgsql to 2.3.13 [taca 2021-01-04]
	Updated mail/dovecot2-sqlite to 2.3.13 [taca 2021-01-04]
	Updated mail/dovecot2-pigeonhole to 0.5.13 [taca 2021-01-04]
	Updated news/tin to 2.4.5 [micha 2021-01-04]
	Updated converters/utf8proc to 2.6.1nb1 [micha 2021-01-04]
	Updated editors/py-jedi to 0.18.0 [adam 2021-01-04]
	Updated devel/py-msgpack to 1.0.2 [adam 2021-01-04]
	Updated games/doomlegacy to 1.48.8 [micha 2021-01-04]
	Updated print/poppler to 21.01.0 [wiz 2021-01-04]
	Updated graphics/tiff to 4.2.0 [wiz 2021-01-04]
	Updated multimedia/assimp to 5.0.1nb1 [gutteridge 2021-01-05]
	Updated lang/npm to 6.14.10 [adam 2021-01-05]
	Updated lang/nodejs to 14.15.4 [adam 2021-01-05]
	Updated lang/nodejs12 to 12.20.1 [adam 2021-01-05]
	Updated lang/nodejs10 to 10.23.1 [adam 2021-01-05]
	Updated textproc/bk to 0.5.2 [pin 2021-01-05]
	Updated security/vault to 1.6.1 [he 2021-01-05]
	Added sysutils/lsd version 0.19.0 [pin 2021-01-05]
	Updated devel/libebml to 1.4.1 [adam 2021-01-05]
	Updated multimedia/mkvtoolnix to 52.0.0 [adam 2021-01-05]
	Updated net/unison-snapshot to 2.51.3.70nb4 [gdt 2021-01-05]
	Updated devel/netcdf to 4.6.1nb11 [wiz 2021-01-05]
	Updated emulators/nono to 0.1.5 [ryoon 2021-01-05]
	Updated graphics/kvantum to 0.18.0 [pin 2021-01-05]
	Added audio/pt2-clone version 1.28 [js 2021-01-06]
	Updated audio/py-music21 to 6.5.0 [gutteridge 2021-01-06]
	Updated editors/xfce4-mousepad to 0.5.1 [gutteridge 2021-01-06]
	Updated www/firefox to 84.0.1nb1 [triaxx 2021-01-06]
	Updated www/py-sanic to 20.12.1 [adam 2021-01-06]
	Updated textproc/py-elementpath to 2.1.0 [adam 2021-01-06]
	Updated www/py-django3 to 3.1.5 [adam 2021-01-06]
	Updated devel/py-gitpython to 3.1.12 [adam 2021-01-06]
	Updated net/knot to 3.0.3 [ryoon 2021-01-06]
	Updated graphics/jasper to 2.0.24 [adam 2021-01-06]
	Updated graphics/openjpeg to 2.4.0 [adam 2021-01-06]
	Updated net/sacc to 1.03 [leot 2021-01-06]
	Updated misc/less to 563 [leot 2021-01-06]
	Updated misc/moreutils to 0.65 [leot 2021-01-06]
	Updated net/libtorrent-rasterbar to 1.2.12 [adam 2021-01-06]
	Updated net/qbittorrent to 4.3.2 [adam 2021-01-06]
	Updated news/sfeed_curses to 0.9.7 [leot 2021-01-06]
	Updated security/sqlmap to 1.5 [leot 2021-01-06]
	Updated net/socat to 1.7.4.0 [leot 2021-01-06]
	Updated graphics/MesaLib to 20.0.6nb1 [triaxx 2021-01-06]
	Updated sysutils/ytree to 2.03 [fcambus 2021-01-06]
	Updated geography/libmaxminddb to 1.5.0 [fcambus 2021-01-06]
	Added news/neix version 0.1.3 [pin 2021-01-06]
	Updated www/py-flask-cors to 3.0.10 [kleink 2021-01-06]
	Updated wm/fvwm3 to 1.0.2 [nia 2021-01-06]
	Updated editors/featherpad to 0.17.1 [pin 2021-01-06]
	Updated devel/meson to 0.56.1 [adam 2021-01-07]
	Updated x11/gtk3 to 3.24.24 [adam 2021-01-07]
	Updated games/dMagnetic to 0.29 [maya 2021-01-07]
	Updated lang/php73 to 7.3.26 [taca 2021-01-07]
	Updated lang/php74 to 7.4.14 [taca 2021-01-07]
	Updated databases/libpqxx to 7.3.0 [prlw1 2021-01-07]
	Updated net/amazon-ecs-cli to 1.21.0 [leot 2021-01-07]
	Updated misc/rhash to 1.4.1 [adam 2021-01-07]
	Updated www/py-pylint-django to 2.4.0 [adam 2021-01-07]
	Updated security/gsasl to 1.10.0 [wiz 2021-01-07]
	Updated sysutils/broot to 1.1.11 [pin 2021-01-08]
	Updated sysutils/beats to 6.8.13 [he 2021-01-08]
	Updated www/firefox to 84.0.2 [ryoon 2021-01-08]
	Updated www/firefox-l10n to 84.0.2 [ryoon 2021-01-08]
	Updated www/py-pylint-django to 2.4.1 [adam 2021-01-08]
	Updated net/py-botocore to 1.19.51 [adam 2021-01-08]
	Updated net/py-boto3 to 1.16.51 [adam 2021-01-08]
	Updated net/py-awscli to 1.18.211 [adam 2021-01-08]
	Added net/avahi-ui version 0.8 [nia 2021-01-08]
	Updated textproc/ruby-nokogiri to 1.11.1 [tsutsui 2021-01-08]
	Added devel/nancy version 1.0.5 [maya 2021-01-08]
	Updated www/firefox78 to 78.6.1 [ryoon 2021-01-08]
	Updated www/firefox78-l10n to 78.6.1 [ryoon 2021-01-08]
	Updated print/qpdf to 10.1.0 [ryoon 2021-01-08]
	Updated security/p11-kit to 0.23.22nb1 [triaxx 2021-01-08]
	Updated emulators/ucon64 to 2.2.1nb2 [wiz 2021-01-08]
	Updated graphics/graphite2 to 1.3.14 [gdt 2021-01-09]
	Updated net/mikutter to 4.1.4 [tsutsui 2021-01-09]
	Updated devel/MoarVM to 2020.12 [mef 2021-01-09]
	Updated lang/rakudo to 2020.12 [mef 2021-01-09]
	Updated lang/nqp to 2020.12 [mef 2021-01-09]
	Updated security/py-kerberos to 1.3.1 [adam 2021-01-09]
	Updated devel/py-test-flake8 to 1.0.7 [adam 2021-01-09]
	Updated math/py-numpy to 1.19.5 [adam 2021-01-09]
	Updated time/py-icalendar to 4.0.7 [adam 2021-01-09]
	Updated net/youtube-dl to 20210108 [leot 2021-01-09]
	Updated misc/tmate to 2.4.0 [rxg 2021-01-09]
	Updated emulators/PC6001VX to 3.6.1 [tsutsui 2021-01-09]
	Updated net/gallery-dl to 1.16.2 [leot 2021-01-09]
	Updated pkgtools/pkg_rolling-replace to 0.24.9 [rhialto 2021-01-09]
	Updated geography/gpsd to 3.22 [gdt 2021-01-09]
	Updated devel/tclap to 1.2.3 [adam 2021-01-09]
	Updated graphics/hugin to 2020.0.0 [adam 2021-01-09]
	Added net/yaydl version 0.3.0 [pin 2021-01-09]
	Updated sysutils/xfce4-xkb-plugin to 0.8.2 [gutteridge 2021-01-10]
	Updated devel/mk-configure to 0.36.0 [cheusov 2021-01-10]
	Updated time/p5-DateTime-TimeZone to 2.46 [gutteridge 2021-01-10]
	Updated comms/ruby-termios to 1.1.0 [taca 2021-01-10]
	Updated converters/ruby-Ascii85 to 1.1.0 [taca 2021-01-10]
	Updated converters/ruby-unf_ext to 0.0.7.7 [taca 2021-01-10]
	Updated databases/ruby-activeldap to 6.1.0 [taca 2021-01-10]
	Updated databases/ruby-arel-helpers to 2.12.0 [taca 2021-01-10]
	Updated databases/ruby-awesome_nested_set to 3.3.1 [taca 2021-01-10]
	Updated databases/ruby-moneta to 1.4.1 [taca 2021-01-10]
	Updated databases/ruby-sequel to 5.40.0 [taca 2021-01-10]
	Updated devel/ruby-backports to 3.20.1 [taca 2021-01-10]
	Updated devel/ruby-celluloid to 0.18.0 [taca 2021-01-10]
	Updated devel/ruby-curses to 1.4.0 [taca 2021-01-10]
	Updated devel/ruby-docile to 1.3.4 [taca 2021-01-10]
	Updated devel/ruby-facade to 1.2.1 [taca 2021-01-10]
	Updated devel/ruby-ffi to 1.14.2 [taca 2021-01-10]
	Added devel/ruby-generator version 0.0.1 [taca 2021-01-10]
	Updated devel/ruby-i18n to 1.8.7 [taca 2021-01-10]
	Updated devel/ruby-minitest to 5.14.3 [taca 2021-01-10]
	Updated devel/ruby-mixlib-shellout to 3.2.2 [taca 2021-01-10]
	Updated devel/ruby-mocha to 1.12.0 [taca 2021-01-10]
	Updated devel/ruby-necromancer to 0.7.0 [taca 2021-01-10]
	Updated devel/ruby-octokit to 4.20.0 [taca 2021-01-10]
	Updated devel/ruby-parseconfig to 1.1.0 [taca 2021-01-10]
	Updated devel/ruby-pkg-config to 1.4.4 [taca 2021-01-10]
	Updated devel/ruby-racc to 1.5.2 [taca 2021-01-10]
	Updated devel/ruby-rbtree to 0.4.4 [taca 2021-01-10]
	Added devel/ruby-scanf version 1.0.0 [taca 2021-01-10]
	Added devel/ruby-semverse version 3.0.0 [taca 2021-01-10]
	Updated devel/ruby-stream to 0.5.3 [taca 2021-01-10]
	Updated devel/ruby-rgl to 0.5.7 [taca 2021-01-10]
	Updated x11/xfce4-terminal to 0.8.10 [gutteridge 2021-01-10]
	Updated graphics/py-matplotlib to 3.3.3 [adam 2021-01-10]
	Updated net/py-lexicon to 3.5.3 [adam 2021-01-10]
	Updated devel/py-test-assume to 2.4.2 [adam 2021-01-10]
	Updated devel/py-test-rerunfailures to 9.1.1 [adam 2021-01-10]
	Updated print/ruby-pdf-reader to 2.4.1 [taca 2021-01-11]
	Updated databases/myodbc to 5.3.14 [jnemeth 2021-01-11]
	Updated devel/py-xdis to 5.0.7 [adam 2021-01-11]
	Updated devel/meson to 0.56.2 [adam 2021-01-11]
	Updated www/py-pylint-django to 2.4.2 [adam 2021-01-11]
	Updated security/py-rsa to 4.7 [adam 2021-01-11]
	Updated print/ruby-pdf-reader to 2.4.1nb1 [taca 2021-01-11]
	Updated devel/pango to 1.48.0 [prlw1 2021-01-11]
	Updated devel/git to 2.30.0 [adam 2021-01-11]
	Updated net/py-pypiserver to 1.4.2 [adam 2021-01-11]
	Updated news/libcanlock to 3.2.2 [micha 2021-01-11]
	Updated news/canlock-hp to 3.2.2 [micha 2021-01-11]
	Updated devel/ruby-rspec-support to 3.10.1 [taca 2021-01-11]
	Updated devel/ruby-rspec-core to 3.10.1 [taca 2021-01-11]
	Updated devel/ruby-rspec-expectations to 3.10.1 [taca 2021-01-11]
	Updated devel/ruby-rspec-mocks to 3.10.1 [taca 2021-01-11]
	Updated devel/ruby-rspec to 3.10.0 [taca 2021-01-11]
	Updated devel/ruby-rspec-rails to 4.0.2 [taca 2021-01-11]
	Updated devel/ruby-simplecov-html to 0.12.3 [taca 2021-01-11]
	Updated devel/ruby-simplecov to 0.21.2 [taca 2021-01-11]
	Updated devel/ruby-test-unit to 3.3.9 [taca 2021-01-11]
	Updated devel/ruby-tins to 1.26.0 [taca 2021-01-11]
	Updated devel/ruby-tty-box to 0.7.0 [taca 2021-01-11]
	Updated devel/ruby-tty-color to 0.6.0 [taca 2021-01-11]
	Updated devel/ruby-tty-reader to 0.9.0 [taca 2021-01-11]
	Updated devel/ruby-tty-prompt to 0.23.0 [taca 2021-01-11]
	Added devel/ruby-tty-table version 0.12.0 [taca 2021-01-11]
	Updated devel/ruby-zeitwerk to 2.4.2 [taca 2021-01-11]
	Updated fonts/ruby-ttfunk to 1.7.0 [taca 2021-01-11]
	Updated games/ruby-squib to 0.16.0 [taca 2021-01-11]
	Updated devel/ruby-classy_hash to 1.0.0 [taca 2021-01-11]
	Updated graphics/ruby-mini-magick to 4.11.0 [taca 2021-01-11]
	Updated mail/ruby-mime-types-data to 3.2020.1104 [taca 2021-01-11]
	Updated graphics/py-graphviz to 0.16 [adam 2021-01-11]
	Updated graphics/py-objgraph to 3.5.0 [adam 2021-01-11]
	Updated misc/ruby-bundler to 2.2.4 [taca 2021-01-11]
	Updated devel/py-atpublic to 2.1.2 [adam 2021-01-11]
	Updated devel/py-mixbox to 1.0.5 [adam 2021-01-11]
	Updated misc/ruby-progressbar to 1.11.0 [taca 2021-01-11]
	Updated net/ruby-dnsruby to 1.61.5 [taca 2021-01-11]
	Updated net/ruby-net-ldap to 0.17.0 [taca 2021-01-11]
	Updated net/ruby-recog to 2.3.18 [taca 2021-01-11]
	Updated net/ruby-ruby_smb to 2.0.7 [taca 2021-01-11]
	Updated devel/py-approvaltests to 0.3.0 [schmonz 2021-01-11]
	Updated games/woof to 3.1.0 [micha 2021-01-11]
	Updated devel/skalibs to 2.10.0.0 [schmonz 2021-01-11]
	Updated lang/execline to 2.7.0.0 [schmonz 2021-01-11]
	Updated sysutils/s6 to 2.10.0.0 [schmonz 2021-01-11]
	Updated misc/s6-portable-utils to 2.2.3.1 [schmonz 2021-01-11]
	Updated net/s6-dns to 2.3.4.0 [schmonz 2021-01-11]
	Updated net/s6-networking to 2.4.0.0 [schmonz 2021-01-11]
	Updated devel/gobject-introspection to 1.66.1nb1 [jperkin 2021-01-11]
	Updated sysutils/fdtools to 2020.05.04nb1 [schmonz 2021-01-11]
	Updated textproc/align to 1.1.1 [sjmulder 2021-01-11]
	Updated audio/fluidsynth to 2.1.6 [wiz 2021-01-11]
	Updated graphics/ImageMagick to 7.0.10.57 [wiz 2021-01-11]
	Updated archivers/zziplib to 0.13.72 [wiz 2021-01-11]
	Updated devel/gopls to 0.6.2 [wiz 2021-01-11]
	Updated security/mozilla-rootcerts to 1.0.20201204 [wiz 2021-01-11]
	Updated security/mozilla-rootcerts-openssl to 2.6 [wiz 2021-01-11]
	Updated inputmethod/scim to 1.4.17 [mef 2021-01-11]
	Updated editors/micro to 2.0.8 [sjmulder 2021-01-11]
	Updated textproc/libxls to 1.6.2 [sjmulder 2021-01-12]
	Added textproc/ruby-simplecov_json_formatter version 0.1.2 [taca 2021-01-12]
	Updated editors/featherpad to 0.17.2 [pin 2021-01-12]
	Updated games/gnome-sudoku to 3.38.0 [prlw1 2021-01-12]
	Updated security/libgpg-error to 1.41 [adam 2021-01-12]
	Updated security/gnupg2 to 2.2.27 [adam 2021-01-12]
	Updated multimedia/handbrake to 1.3.3 [ryoon 2021-01-12]
	Updated net/wget to 1.21.1 [ryoon 2021-01-12]
	Updated archivers/gtar-base to 1.33 [ryoon 2021-01-12]
	Updated archivers/gtar-info to 1.33 [ryoon 2021-01-12]
	Updated archivers/gtar to 1.33 [ryoon 2021-01-12]
	Updated textproc/po4a to 0.62 [ryoon 2021-01-12]
	Updated print/cups-filters to 1.28.7 [prlw1 2021-01-12]
	Updated multimedia/obs-studio to 26.1.2 [ryoon 2021-01-12]
	Updated net/gallery-dl to 1.16.3 [leot 2021-01-12]
	Updated sysutils/cpuid to 3.3nb1 [wiz 2021-01-13]
	Removed www/cliqz [nia 2021-01-13]
	Removed net/freeradius2 successor net/freeradius [nia 2021-01-13]
	Updated net/s6-networking to 2.4.0.0nb1 [schmonz 2021-01-13]
	Updated devel/tokei to 12.1.2 [pin 2021-01-13]
	Updated games/hitori to 3.38.0 [prlw1 2021-01-13]
	Added math/kalk version 0.3.12 [pin 2021-01-13]
	Updated databases/redis to 6.0.10 [adam 2021-01-13]
	Updated textproc/py-jsbeautifier to 1.13.4 [adam 2021-01-13]
	Updated archivers/lzip to 1.22 [wiz 2021-01-13]
	Updated devel/py-hypothesis to 6.0.1 [wiz 2021-01-13]
	Updated sysutils/psftools to 1.1.0 [fcambus 2021-01-13]
	Updated devel/hoe to 3.22.3 [taca 2021-01-13]
	Updated devel/ruby-parser to 3.15.1 [taca 2021-01-13]
	Updated devel/ruby-semantic_puppet to 1.0.3 [taca 2021-01-13]
	Updated devel/ruby-sexp-processor to 4.15.2 [taca 2021-01-13]
	Updated devel/ruby-racc to 1.5.2nb1 [taca 2021-01-13]
	Updated devel/ruby-shoulda-matchers to 4.5.0 [taca 2021-01-13]
	Updated devel/ruby-tins to 1.28.0 [taca 2021-01-13]
	Updated misc/ruby-bundler to 2.2.5 [taca 2021-01-13]
	Updated net/ruby-train-core to 3.4.7 [taca 2021-01-13]
	Updated net/ruby-train-winrm to 0.2.11 [taca 2021-01-13]
	Updated net/ruby-winrm to 2.3.5 [taca 2021-01-13]
	Updated print/ruby-pdf-core to 0.9.0 [taca 2021-01-13]
	Updated print/ruby-prawn to 2.4.0 [taca 2021-01-13]
	Updated net/ruby-xdr to 3.0.2 [taca 2021-01-13]
	Updated devel/ruby-thor to 1.0.1nb1 [taca 2021-01-13]
	Added sysutils/direnv version 2.27.0 [jperkin 2021-01-13]
	Updated chat/matrix-synapse to 1.25.0 [js 2021-01-13]
	Updated editors/xournalpp to 1.0.20 [mef 2021-01-13]
	Updated net/grpc to 1.34.1 [adam 2021-01-14]
	Updated net/py-grpcio to 1.34.1 [adam 2021-01-14]
	Updated net/py-grpcio-testing to 1.34.1 [adam 2021-01-14]
	Updated net/py-grpcio-tools to 1.34.1 [adam 2021-01-14]
	Updated audio/ncspot to 0.3.0 [pin 2021-01-14]
	Updated sysutils/onefetch to 2.9.0 [pin 2021-01-14]
	Updated net/py-botocore to 1.19.54 [adam 2021-01-14]
	Updated net/py-s3transfer to 0.3.4 [adam 2021-01-14]
	Updated net/py-boto3 to 1.16.54 [adam 2021-01-14]
	Updated net/py-awscli to 1.18.214 [adam 2021-01-14]
	Removed games/quake successor games/tyrquake [nia 2021-01-14]
	Updated devel/ruby-docile to 1.3.5 [taca 2021-01-14]
	Updated security/ruby-bcrypt_pbkdf to 1.1.0 [taca 2021-01-14]
	Updated security/ruby-chef-vault to 4.1.0 [taca 2021-01-14]
	Updated security/ruby-gssapi to 1.3.1 [taca 2021-01-14]
	Updated sysutils/capistrano to 3.15.0 [taca 2021-01-14]
	Updated security/py-acme to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-apache to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-digitalocean to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-dnsimple to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-dnsmadeeasy to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-gehirn to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-google to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-linode to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-luadns to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-nsone to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-ovh to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-rfc2136 to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-route53 to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-dns-sakuracloud to 1.11.0 [adam 2021-01-14]
	Updated security/py-certbot-nginx to 1.11.0 [adam 2021-01-14]
	Updated sysutils/ruby-listen to 3.4.0 [taca 2021-01-14]
	Updated sysutils/ruby-specinfra to 2.82.23 [taca 2021-01-14]
	Updated textproc/ruby-asciidoctor to 2.0.12 [taca 2021-01-14]
	Updated textproc/ruby-csv to 3.1.9 [taca 2021-01-14]
	Updated textproc/ruby-erubi to 1.10.0 [taca 2021-01-14]
	Updated textproc/ruby-haml to 5.2.1 [taca 2021-01-14]
	Updated textproc/ruby-libxml to 3.2.1 [taca 2021-01-14]
	Updated textproc/ruby-plist to 3.6.0 [taca 2021-01-14]
	Updated textproc/ruby-redcarpet to 3.5.1 [taca 2021-01-14]
	Updated textproc/ruby-review to 5.0.0 [taca 2021-01-14]
	Updated textproc/ruby-yard to 0.9.26 [taca 2021-01-14]
	Added www/so version 0.4.3 [pin 2021-01-14]
	Updated mail/qmail to 1.03nb50 [schmonz 2021-01-14]
	Updated mail/qmail-run to 20210114 [schmonz 2021-01-14]
	Updated www/libmicrohttpd to 0.9.72nb1 [wiz 2021-01-14]
	Updated www/libmicrohttpd to 0.9.72nb2 [wiz 2021-01-14]
	Removed x11/Xfixes successor x11/libXfixes [wiz 2021-01-14]
	Removed x11/fixesproto4 successor x11/xorgproto [wiz 2021-01-14]
	Updated textproc/xapian to 1.4.18 [schmonz 2021-01-14]
	Updated textproc/csharp-xapian to 1.4.18 [schmonz 2021-01-14]
	Updated textproc/lua-xapian to 1.4.18 [schmonz 2021-01-14]
	Updated textproc/php-xapian to 1.4.18 [schmonz 2021-01-14]
	Updated textproc/py-xapian to 1.4.18 [schmonz 2021-01-14]
	Updated textproc/p5-Xapian to 1.4.18 [schmonz 2021-01-14]
	Updated textproc/ruby-xapian to 1.4.18 [schmonz 2021-01-14]
	Updated textproc/tcl-xapian to 1.4.18 [schmonz 2021-01-14]
	Updated textproc/xapian-omega to 1.4.18 [schmonz 2021-01-14]
	Added net/icinga2 version 2.12.3 [wiz 2021-01-15]
	Updated archivers/zziplib to 0.13.72nb1 [schmonz 2021-01-15]
	Updated sysutils/broot to 1.2.0 [pin 2021-01-15]
	Updated textproc/nanogrep to 2.1.0 [pin 2021-01-15]
	Updated net/py-zeroconf to 0.28.8 [adam 2021-01-15]
	Updated devel/py-zope.testing to 4.9 [adam 2021-01-15]
	Updated pkgtools/pkg_rolling-replace to 0.24.10 [tnn 2021-01-15]
	Updated lang/elixir to 1.11.3 [adam 2021-01-15]
	Updated net/rabbitmq to 3.8.9 [adam 2021-01-15]
	Updated devel/py-mako to 1.1.4 [adam 2021-01-15]
	Updated multimedia/py-m3u8 to 0.8.0 [adam 2021-01-15]
	Updated databases/py-pypika to 0.47.3 [adam 2021-01-15]
	Updated www/py-h11 to 0.12.0 [adam 2021-01-15]
	Updated lang/erlang to 23.2.2 [nia 2021-01-15]
	Added mail/bincimap version 1.2.13 [schmonz 2021-01-15]
	Added net/erlang-idna version 6.1.1 [triaxx 2021-01-15]
	Updated misc/erlang-p1_utils to 1.0.21 [triaxx 2021-01-15]
	Updated converters/erlang-iconv to 1.0.12 [triaxx 2021-01-15]
	Updated devel/erlang-cache_tab to 1.0.26 [triaxx 2021-01-15]
	Updated devel/erlang-ezlib to 1.0.9 [triaxx 2021-01-15]
	Updated security/erlang-epam to 1.0.10 [triaxx 2021-01-15]
	Updated security/erlang-fast_tls to 1.1.10 [triaxx 2021-01-15]
	Updated security/erlang-jose to 1.11.1 [triaxx 2021-01-15]
	Updated security/erlang-p1_oauth2 to 0.6.8 [triaxx 2021-01-15]
	Updated textproc/erlang-fast_xml to 1.1.45 [triaxx 2021-01-15]
	Updated textproc/erlang-fast_yaml to 1.0.29 [triaxx 2021-01-15]
	Updated textproc/erlang-jiffy to 1.0.8 [triaxx 2021-01-15]
	Updated textproc/erlang-stringprep to 1.0.24 [triaxx 2021-01-15]
	Updated graphics/erlang-eimp to 1.0.18 [triaxx 2021-01-16]
	Updated devel/rebar3 to 3.14.3 [triaxx 2021-01-16]
	Updated graphics/dia to 0.97.3nb21 [gutteridge 2021-01-16]
	Updated sysutils/py-psutil to 5.8.0 [adam 2021-01-16]
	Updated security/py-authlib to 0.15.3 [adam 2021-01-16]
	Updated lang/npm to 6.14.11 [adam 2021-01-16]
	Updated archivers/py-lz4 to 3.1.2 [adam 2021-01-16]
	Updated devel/bugzilla to 5.0.6 [maya 2021-01-16]
	Updated net/haproxy to 2.3.4 [adam 2021-01-16]
	Updated textproc/py-elementpath to 2.1.1 [adam 2021-01-16]
	Updated www/py-hyperlink to 21.0.0 [adam 2021-01-16]
	Updated devel/py-prompt_toolkit2 to 3.0.10 [adam 2021-01-16]
	Updated security/mit-krb5 to 1.18.3 [jperkin 2021-01-16]
	Updated www/py-django-import-export to 2.5.0 [adam 2021-01-16]
	Updated www/py-django-classy-tags to 2.0.0 [adam 2021-01-16]
	Updated www/py-django-treebeard to 4.4 [adam 2021-01-16]
	Updated www/py-django-sekizai to 2.0.0 [adam 2021-01-16]
	Updated www/py-djangocms-admin-style to 2.0.2 [adam 2021-01-16]
	Updated www/py-django-cms to 3.8.0 [adam 2021-01-16]
	Updated www/py-djangocms-attributes-field to 2.0.0 [adam 2021-01-16]
	Updated www/py-django-polymorphic to 3.0.0 [adam 2021-01-16]
	Updated www/py-django-filer to 2.0.2 [adam 2021-01-16]
	Updated www/py-djangocms-column to 1.11.0 [adam 2021-01-16]
	Updated www/py-djangocms-file to 3.0.0 [adam 2021-01-16]
	Updated www/py-djangocms-audio to 2.0.0 [adam 2021-01-16]
	Updated www/py-djangocms-googlemap to 2.0.0 [adam 2021-01-16]
	Updated www/py-djangocms-icon to 2.0.0 [adam 2021-01-16]
	Updated www/py-djangocms-link to 3.0.0 [adam 2021-01-16]
	Updated www/py-djangocms-picture to 3.0.0 [adam 2021-01-16]
	Updated www/py-djangocms-style to 3.0.0 [adam 2021-01-16]
	Updated www/py-djangocms-text-ckeditor to 4.0.0 [adam 2021-01-16]
	Updated www/py-djangocms-video to 3.0.0 [adam 2021-01-16]
	Updated www/py-django-contrib-comments to 2.0.0 [adam 2021-01-16]
	Updated misc/py-tqdm to 4.56.0 [adam 2021-01-16]
	Updated devel/cmake to 3.19.3 [adam 2021-01-16]
	Updated emulators/x16-emulator to 35nb4 [nia 2021-01-16]
	Updated www/ruby-capybara to 3.34.0 [taca 2021-01-16]
	Updated net/erlang-xmpp to 1.5.1 [triaxx 2021-01-16]
	Updated www/ruby-em-websocket to 0.5.2 [taca 2021-01-16]
	Updated www/ruby-faraday to 1.3.0 [taca 2021-01-16]
	Updated www/ruby-http-parser to 1.2.3 [taca 2021-01-16]
	Updated www/ruby-net-http-persistent to 4.0.1 [taca 2021-01-16]
	Updated net/erlang-stun to 1.0.40 [triaxx 2021-01-16]
	Updated net/erlang-esip to 1.0.39 [triaxx 2021-01-16]
	Updated www/ruby-puma to 5.1.1 [taca 2021-01-16]
	Updated www/ruby-pygments.rb to 2.0.0 [taca 2021-01-16]
	Updated www/ruby-rack-contrib to 2.3.0 [taca 2021-01-16]
	Updated www/ruby-unicorn to 5.8.0 [taca 2021-01-16]
	Updated www/ruby-websocket to 1.2.9 [taca 2021-01-16]
	Updated www/thin to 1.8.0 [taca 2021-01-16]
	Updated graphics/osg to 3.6.5 [nia 2021-01-16]
	Updated devel/py-dulwich to 0.20.15 [maya 2021-01-16]
	Updated devel/py-hg-git to 0.9.0 [maya 2021-01-16]
	Added converters/erlang-base64url version 1.0.1 [triaxx 2021-01-16]
	Added devel/erlang-mqtree version 1.0.11 [triaxx 2021-01-16]
	Updated emulators/gxemul to 0.6.2nb2 [nick 2021-01-16]
	Added textproc/erlang-yconf version 1.0.9 [triaxx 2021-01-16]
	Added print/py-octoprint-firmwarecheck version 2020.09.23 [khorben 2021-01-16]
	Updated audio/fasttracker2 to 1.43 [fox 2021-01-16]
	Updated chat/ircd-hybrid to 8.2.37 [fox 2021-01-16]
	Added security/erlang-p1_acme version 1.0.10 [triaxx 2021-01-16]
	Added security/erlang-pkix version 1.0.7 [triaxx 2021-01-16]
	Updated chat/ejabberd to 20.12 [triaxx 2021-01-16]
	Updated devel/py-hg-git to 0.9.0nb1 [maya 2021-01-16]
	Updated net/Radicale to 1.1.4nb3 [maya 2021-01-16]
	Added print/py-octoprint-filecheck version 2020.08.07 [khorben 2021-01-16]
	Updated audio/portaudio to version portaudio-190600.20161030nb7 [reinoud 2021-01-16]
	Updated devel/py-joblib to 1.0.0 [adam 2021-01-16]
	Updated devel/py-pyelftools to 0.27 [adam 2021-01-16]
	Updated chat/ejabberd to 20.12nb1 [triaxx 2021-01-16]
	Added devel/py-google-i18n-address to 2.4.0 [riastradh 2021-01-16]
	Added devel/py-dict2xml to 1.7.0 [riastradh 2021-01-16]
	Added textproc/py-xml2rfc to 3.5.0 [riastradh 2021-01-16]
	Added textproc/ruby-kramdown-rfc2629 to 1.3.24 [riastradh 2021-01-16]
	Updated sysutils/onefetch to 2.9.1 [pin 2021-01-16]
	Updated sysutils/hal to 0.5.14nb26 [wiz 2021-01-17]
	Updated comms/asterisk15 to 15.7.4 [jnemeth 2021-01-17]
	Updated mail/pear-Mail_Mime to 1.10.10 [taca 2021-01-17]
	Updated devel/php-gearman to 2.1.0 [taca 2021-01-17]
	Added sysutils/dust version 0.5.4 [pin 2021-01-17]
	Updated lang/sbcl to 2.1.0 [rjs 2021-01-17]
	Updated games/doomlegacy to 1.48.8nb1 [micha 2021-01-18]
	Updated databases/py-sqlalchemy to 1.3.22 [adam 2021-01-18]
	Updated devel/py-faker to 5.6.1 [adam 2021-01-18]
	Added devel/robin-map version 0.6.3 [nia 2021-01-18]
	Updated security/sudo to 1.9.5p1 [taca 2021-01-18]
	Updated devel/ruby-gettext to 3.3.7 [taca 2021-01-18]
	Updated textproc/ruby-terminal-table to 2.0.0 [taca 2021-01-18]
	Updated www/ruby-jekyll to 4.2.0 [taca 2021-01-18]
	Updated www/ruby-jekyll-feed to 0.15.1 [taca 2021-01-18]
	Updated www/ruby-jekyll-seo-tag to 2.7.1 [taca 2021-01-18]
	Updated chat/ircd-hybrid to 8.2.38 [fox 2021-01-18]
	Updated sysutils/ruby-chef-utils to 16.9.20 [taca 2021-01-18]
	Updated sysutils/ruby-chef-config to 16.9.20 [taca 2021-01-18]
	Updated misc/ruby-ohai to 16.8.1 [taca 2021-01-18]
	Added sysutils/ruby-chef-telemetry version 1.0.14 [taca 2021-01-18]
	Added sysutils/ruby-inspec-core version 4.24.32 [taca 2021-01-18]
	Updated sysutils/ruby-chef to 16.9.20 [taca 2021-01-18]
	Updated sysutils/ruby-chef-zero to 15.0.4 [taca 2021-01-18]
	Added security/ruby-sslshake version 1.3.1 [taca 2021-01-18]
	Updated security/ruby-sshkit to 1.21.1 [taca 2021-01-18]
	Updated security/ruby-net-sftp to 3.0.0 [taca 2021-01-18]
	Updated sysutils/ruby-facter to 4.0.49 [taca 2021-01-18]
	Updated sysutils/ruby-listen to 3.4.1 [taca 2021-01-18]
	Updated sysutils/puppet to 7.1.0 [taca 2021-01-18]
	Added www/ruby-webrick version 1.7.0 [taca 2021-01-18]
	Updated misc/ruby-license-acceptance to 2.1.13 [taca 2021-01-18]
	Updated www/ruby-loofah to 2.9.0 [taca 2021-01-18]
	Updated devel/py-setuptools to 51.3.3 [adam 2021-01-18]
	Updated devel/py-setuptools_scm to 5.0.1 [adam 2021-01-18]
	Updated net/youtube-dl to 20210116 [leot 2021-01-18]
	Updated security/amass to 3.11.1 [leot 2021-01-18]
	Updated lang/pear to 1.10.12nb3 [taca 2021-01-19]
	Updated wm/xfce4-wm to 4.14.6 [gutteridge 2021-01-19]
	Updated sysutils/navi to 2.14.0 [pin 2021-01-19]
	Added net/icingaweb2 version 2.8.2 [wiz 2021-01-19]
	Updated finance/bitcoin to 0.21.0 [adam 2021-01-19]
	Updated audio/wavpack to 5.4.0 [adam 2021-01-19]
	Updated archivers/py-lz4 to 3.1.3 [adam 2021-01-19]
	Updated devel/py-google-api-core to 1.25.0 [adam 2021-01-19]
	Updated games/openmw to 0.46.0 [nia 2021-01-19]
	Updated editors/kiro-editor to 0.4.1 [pin 2021-01-19]
	Updated www/php-nextcloud to 20.0.5 [ryoon 2021-01-19]
	Updated databases/erlang-sqlite3 to 1.1.9 [nia 2021-01-19]
	Updated graphics/openimageio to 2.2.10.1 [nia 2021-01-19]
	Updated net/librsync to 2.3.1 [adam 2021-01-19]
	Updated devel/py-ply to 3.11 [adam 2021-01-19]
	Updated textproc/link-grammar to 5.8.1 [gutteridge 2021-01-20]
	Updated net/py-impacket to 0.9.22 [adam 2021-01-20]
	Updated textproc/py-Levenshtein to 0.12.1 [adam 2021-01-20]
	Updated www/py-djangorestframework to 3.12.2 [adam 2021-01-20]
	Updated converters/py-emoji to 0.6.0 [adam 2021-01-20]
	Added devel/libdivsufsort version 2.0.1 [nia 2021-01-20]
	Updated net/qbittorrent to 4.3.3 [adam 2021-01-20]
	Updated devel/gperftools to 2.8.1 [adam 2021-01-20]
	Added biology/fastqc version 0.11.9 [bacon 2021-01-20]
	Updated misc/rlwrap to 0.44 [leot 2021-01-20]
	Updated databases/sqlite3 to 3.34.1 [adam 2021-01-20]
	Updated databases/sqlite3-docs to 3.34.1 [adam 2021-01-20]
	Updated databases/sqlite3-tcl to 3.34.1 [adam 2021-01-20]
	Updated devel/lemon to 1.0.3.34.1 [adam 2021-01-20]
	Updated lang/tcl to 8.6.11 [adam 2021-01-20]
	Updated x11/tk to 8.6.11 [adam 2021-01-20]
	Added net/py-stone version 3.2.1 [adam 2021-01-20]
	Updated net/py-dropbox to 11.0.0 [adam 2021-01-20]
	Updated sysutils/xfce4-xarchiver to 0.5.4.16 [gutteridge 2021-01-21]
	Updated textproc/py-pybtex to 0.24.0 [adam 2021-01-21]
	Updated devel/py-test-cov to 2.11.1 [adam 2021-01-21]
	Updated mail/postfix to 3.5.9 [triaxx 2021-01-21]
	Updated mail/rspamd to 2.7 [triaxx 2021-01-21]
	Updated devel/abseil to 20200923.3 [adam 2021-01-21]
	Updated net/grpc to 1.35.0 [adam 2021-01-21]
	Updated net/py-grpcio to 1.35.0 [adam 2021-01-21]
	Updated net/py-grpcio-testing to 1.35.0 [adam 2021-01-21]
	Updated net/py-grpcio-tools to 1.35.0 [adam 2021-01-21]
	Added biology/bowtie2 version 2.4.2 [bacon 2021-01-21]
	Updated net/bandcamp-dl to 0.0.10 [nia 2021-01-21]
	Updated devel/py-xopen to 1.1.0 [adam 2021-01-21]
	Updated devel/py-faker to 5.6.5 [adam 2021-01-21]
	Updated graphics/libimagequant to 2.13.1 [adam 2021-01-21]
	Updated graphics/pngquant to 2.13.1 [adam 2021-01-21]
	Updated devel/py-memory-profiler to 0.58.0 [adam 2021-01-21]
	Updated devel/py-test-xprocess to 0.17.0 [adam 2021-01-21]
	Updated devel/java-jna to 5.2.0nb2 [gutteridge 2021-01-22]
	Updated pkgtools/mksandbox to 1.10 [jperkin 2021-01-22]
	Updated devel/skalibs to 2.10.0.1 [schmonz 2021-01-22]
	Updated net/s6-dns to 2.3.5.0 [schmonz 2021-01-22]
	Updated net/s6-networking to 2.4.0.0nb2 [schmonz 2021-01-22]
	Updated misc/s6-portable-utils to 2.2.3.1nb1 [schmonz 2021-01-22]
	Updated lang/execline to 2.7.0.0nb1 [schmonz 2021-01-22]
	Updated sysutils/s6 to 2.10.0.0nb1 [schmonz 2021-01-22]
	Updated sysutils/fdtools to 2020.05.04nb2 [schmonz 2021-01-22]
	Updated lang/janet to 1.14.1 [nia 2021-01-22]
	Updated graphics/feh to 3.6.2 [nia 2021-01-22]
	Updated net/dnscrypt-proxy2 to 2.0.45 [nia 2021-01-22]
	Added biology/bedtools version 2.29.2 [bacon 2021-01-22]
	Updated devel/py-xdg to 0.27 [triaxx 2021-01-22]
	Updated chat/loudmouth to 1.5.3nb3 [wiz 2021-01-23]
	Removed devel/svk [wiz 2021-01-23]
	Updated mail/mutt to 2.0.5 [tron 2021-01-23]
	Added security/pleaser version 0.3.19 [pin 2021-01-23]
	Updated lang/go114 to 1.14.14 [bsiegert 2021-01-23]
	Updated lang/go115 to 1.15.7 [bsiegert 2021-01-23]
	Updated www/kore to 4.1.0 [fcambus 2021-01-23]
	Updated net/gh to 1.5.0 [bsiegert 2021-01-23]
	Updated geography/qgis to 3.10.14 [gdt 2021-01-23]
	Updated net/gallery-dl to 1.16.4 [leot 2021-01-23]
	Updated net/rclone to 1.53.4 [leot 2021-01-23]
	Updated math/qhull to 2020.2 [gdt 2021-01-23]
	Removed devel/p5-VCP-Dest-svk [wiz 2021-01-23]
	Removed devel/p5-VCP [wiz 2021-01-23]
	Updated x11/py-terminator to 2.1.0 [kamil 2021-01-24]
	Updated net/youtube-dl to 20210124.1 [leot 2021-01-24]
	Updated audio/libsndfile to 1.0.31 [nia 2021-01-24]
	Updated geography/gama to 2.13 [gdt 2021-01-24]
	Updated graphics/imlib2 to 1.7.1 [nia 2021-01-24]
	Updated graphics/GraphicsMagick to 1.3.36 [nia 2021-01-24]
	Updated devel/xorg-util-macros to 1.19.3 [wiz 2021-01-24]
	Updated textproc/ispell to 3.4.02 [nia 2021-01-24]
	Updated x11/libXt to 1.2.1 [wiz 2021-01-24]
	Updated audio/libsndfile to 1.0.31 [nia 2021-01-24]
	Updated textproc/serd to 0.30.10 [nia 2021-01-24]
	Updated audio/lilv to 0.24.12 [nia 2021-01-24]
	Updated converters/sratom to 0.6.8 [nia 2021-01-24]
	Updated audio/suil to 0.10.10 [nia 2021-01-24]
	Updated textproc/sord to 0.16.8 [nia 2021-01-24]
	Updated www/lua-curl to 0.3.12 [nia 2021-01-24]
	Updated sysutils/mc to 4.8.26 [nia 2021-01-24]
	Updated chat/mcabber to 1.1.2 [nia 2021-01-24]
	Updated net/miniupnpc to 2.2.1 [nia 2021-01-24]
	Updated editors/nano to 5.5 [nia 2021-01-24]
	Added multimedia/libtheoraplay version 0.0.20190909 [maya 2021-01-24]
	Added graphics/vulkan-headers version 1.1.126.0 [maya 2021-01-24]
	Added graphics/mojoshader version 0.0.20210110 [maya 2021-01-24]
	Added graphics/fna3d version 21.01 [maya 2021-01-24]
	Updated security/ccid to 1.4.34 [gdt 2021-01-24]
	Added games/fna version 21.01 [maya 2021-01-24]
	Added devel/libstubborn version 0.1 [maya 2021-01-24]
	Added games/fnaify version 3.0 [maya 2021-01-24]
	Updated databases/py-aiosqlite to 0.16.1 [adam 2021-01-24]
	Updated databases/py-tortoise-orm to 0.16.20 [adam 2021-01-24]
	Updated filesystems/py-fs to 2.4.12 [adam 2021-01-24]
	Updated fonts/py-fonttools to 4.18.2 [adam 2021-01-24]
	Updated security/pleaser to 0.3.20 [pin 2021-01-24]
	Updated audio/ncmpcpp to 0.9.1 [nia 2021-01-24]
	Updated audio/musescore to 3.6 [gutteridge 2021-01-25]
	Updated devel/acr to 1.9.4 [fcambus 2021-01-25]
	Updated devel/cloc to 1.88 [fcambus 2021-01-25]
	Updated devel/cvsgraph to 1.7.1 [fcambus 2021-01-25]
	Updated devel/cvsutils to 0.2.6 [fcambus 2021-01-25]
	Updated lang/perl5 to 5.32.1 [wiz 2021-01-25]
	Updated databases/p5-gdbm to 5.32.1 [wiz 2021-01-25]
	Updated graphics/ImageMagick to 7.0.10.58 [wiz 2021-01-25]
	Updated devel/gopls to 0.6.4 [wiz 2021-01-25]
	Updated converters/help2man to 1.47.17 [wiz 2021-01-25]
	Updated textproc/lowdown to 0.7.9 [fcambus 2021-01-25]
	Updated security/keepassxc to 2.6.3 [wiz 2021-01-25]
	Updated security/libgcrypt to 1.9.0 [wiz 2021-01-25]
	Updated devel/libsigsegv to 2.13 [wiz 2021-01-25]
	Updated audio/musicpd to 0.22.4 [wiz 2021-01-25]
	Updated devel/py-hypothesis to 6.0.3 [wiz 2021-01-25]
	Updated sysutils/py-setproctitle to 1.2.2 [wiz 2021-01-25]
	Updated lang/yabasic to 2.89.0 [fcambus 2021-01-25]
	Updated textproc/ugrep to 3.1.4 [wiz 2021-01-25]
	Updated lang/vala to 0.50.3 [wiz 2021-01-25]
	Updated devel/patchelf to 0.12 [fcambus 2021-01-25]
	Updated devel/py-codespell to 2.0.0 [fcambus 2021-01-25]
	Updated www/otter-browser to 1.0.02 [nia 2021-01-25]
	Updated chat/unrealircd to 5.0.8 [nia 2021-01-25]
	Updated net/tnftpd to 20200704 [nia 2021-01-25]
	Updated databases/openldap to 2.4.57 [adam 2021-01-25]
	Updated textproc/py-ujson to 4.0.2 [adam 2021-01-25]
	Updated textproc/py-elementpath to 2.1.2 [adam 2021-01-25]
	Updated time/ruby-tzinfo-data to 1.2021.1 [taca 2021-01-25]
	Updated lang/execline to 2.7.0.1 [schmonz 2021-01-25]
	Updated sysutils/s6 to 2.10.0.1 [schmonz 2021-01-25]
	Added sysutils/sfm version 0.1.2 [pin 2021-01-25]
	Updated chat/loudmouth to 1.5.4 [wiz 2021-01-25]
	Updated devel/kdiff3 to 1.8.5 [gutteridge 2021-01-26]
	Updated devel/py-test to 6.2.2 [adam 2021-01-26]
	Updated www/py-django-cors-headers to 3.7.0 [adam 2021-01-26]
	Updated devel/py-google-api-core to 1.25.1 [adam 2021-01-26]
	Updated finance/py-braintree to 4.6.0 [adam 2021-01-26]
	Added devel/libnet version 1.2 [jperkin 2021-01-26]
	Updated net/arping to 2.21nb1 [jperkin 2021-01-26]
	Updated databases/py-alembic to 1.5.2 [adam 2021-01-26]
	Updated net/rabbitmq to 3.8.11 [adam 2021-01-26]
	Added sysutils/lsfp version 0.4.2 [pin 2021-01-26]
	Updated devel/tig to 2.5.1 [fcambus 2021-01-26]
	Updated devel/radare2 to 5.1.0 [kamil 2021-01-26]
	Updated misc/py-ansi to 0.2.0 [adam 2021-01-26]
	Updated textproc/py-xmlschema to 1.4.2 [adam 2021-01-26]
	Updated audio/ruby-taglib to 1.1.0 [taca 2021-01-26]
	Updated devel/ruby-concurrent-ruby to 1.1.8 [taca 2021-01-26]
	Updated devel/ruby-pathname2 to 1.8.4 [taca 2021-01-26]
	Updated www/ruby-capybara to 3.35.0 [taca 2021-01-26]
	Updated www/firefox to 85.0 [ryoon 2021-01-26]
	Updated www/firefox-l10n to 85.0 [ryoon 2021-01-26]
	Updated lang/openjdk11 to 1.11.0.9.11nb1 [ryoon 2021-01-26]
	Updated devel/ruby-regexp_parser to 2.0.3 [taca 2021-01-26]
	Updated devel/ruby-power_assert to 2.0.0 [taca 2021-01-26]
	Updated devel/ruby-ruby2_keywords to 0.0.4 [taca 2021-01-26]
	Updated devel/ruby-shoulda-matchers to 4.5.1 [taca 2021-01-26]
	Updated devel/ruby-thor to 1.1.0 [taca 2021-01-26]
	Updated math/ruby-spreadsheet to 1.2.7 [taca 2021-01-26]
	Updated misc/ruby-bundler to 2.2.6 [taca 2021-01-26]
	Updated security/sudo to 1.9.5p2 [jperkin 2021-01-26]
	Updated emulators/mame to 0.228 [wiz 2021-01-26]
	Updated games/dopewars to 1.6.1 [fcambus 2021-01-26]
	Updated www/firefox78-l10n to 78.7.0 [nia 2021-01-27]
	Updated www/firefox78 to 78.7.0 [nia 2021-01-27]
	Updated devel/talloc to 2.3.2 [adam 2021-01-27]
	Updated net/samba4 to 4.13.4 [adam 2021-01-27]
	Updated www/goaccess to 1.4 [schmonz 2021-01-27]
	Updated www/py-urllib3 to 1.26.3 [adam 2021-01-27]
	Updated www/py-bleach to 3.2.3 [adam 2021-01-27]
	Added editors/dit version 0.6 [nia 2021-01-27]
	Updated editors/dit to 0.7 [nia 2021-01-27]
	Added devel/lua-safer version 0.2 [nia 2021-01-27]
	Updated games/warmux to 11.04.1 [triaxx 2021-01-27]
	Updated net/terraform to 0.12.30 [leot 2021-01-27]
	Updated mail/fetchmail to 6.4.15 [triaxx 2021-01-27]
	Updated mail/fetchmailconf to 6.4.15nb1 [triaxx 2021-01-27]
	Updated devel/binutils to 2.36 [fcambus 2021-01-27]
	Added lang/erlang21 version 21.3.6 [jperkin 2021-01-27]
	Added devel/rebar21 version 2.6.4 [jperkin 2021-01-27]
	Updated databases/couchdb to 2.3.1nb10 [jperkin 2021-01-27]
	Updated devel/nss to 3.61 [ryoon 2021-01-27]
	Updated textproc/json2tsv to 0.6 [leot 2021-01-27]
	Updated news/sfeed to 0.9.21 [leot 2021-01-27]
	Updated emulators/mame to 0.228nb1 [wiz 2021-01-27]
	Updated news/sfeed_curses to 0.9.8 [leot 2021-01-27]
	Updated chat/ejabberd to 20.12nb2 [triaxx 2021-01-27]
	Updated audio/musescore to 3.6.1 [gutteridge 2021-01-27]
	Added net/terraform-provider-vultr version 2.1.2 [tpaul 2021-01-27]
	Updated devel/php-composer to 2.0.9 [tpaul 2021-01-28]
	Updated sysutils/sfm to 0.1.3 [pin 2021-01-28]
	Updated sysutils/broot to 1.2.1 [pin 2021-01-28]
	Updated audio/rhythmbox to 3.4.4 [triaxx 2021-01-28]
	Updated lang/py-mypy to 0.800 [adam 2021-01-28]
	Updated print/py-reportlab to 3.5.60 [adam 2021-01-28]
	Updated www/php-nextcloud to 20.0.6 [ryoon 2021-01-28]
	Updated cross/mingw-w64-x86_64-binutils to 2.36 [ryoon 2021-01-28]
	Updated cross/mingw-w64-i686-binutils to 2.36 [ryoon 2021-01-28]
	Updated mail/ezmlm-idx to 7.2.2nb14 [schmonz 2021-01-28]
	Updated mail/thunderbird to 78.7.0 [ryoon 2021-01-28]
	Updated mail/thunderbird-l10n to 78.7.0 [ryoon 2021-01-28]
	Updated textproc/nanogrep to 2.2.0 [pin 2021-01-28]
	Updated net/mosquitto to 2.0.5 [triaxx 2021-01-28]
	Added devel/py-tubes version 0.2.0 [maya 2021-01-28]
	Added www/py-klein version 20.6.0 [maya 2021-01-28]
	Added devel/py-buildbot-badges version 2.6.0 [maya 2021-01-28]
	Added wm/sdorfehs version 1.1 [pin 2021-01-28]
	Updated textproc/ispell-en_GB to 3.4.02 [gutteridge 2021-01-28]
	Updated security/pleaser to 0.3.21 [pin 2021-01-29]
	Updated security/opendoas to 6.8nb1 [jperkin 2021-01-29]
	Added benchmarks/hyperfine version 1.11.0 [pin 2021-01-29]
	Updated multimedia/vlc to 3.0.12 [nia 2021-01-29]
	Added graphics/oxipng version 4.0.3 [pin 2021-01-29]
	Updated www/p5-HTTP-Entity-Parser to 0.25 [wen 2021-01-29]
	Updated www/p5-Plack to 1.0048 [wen 2021-01-29]
	Updated security/libgcrypt to 1.9.1 [wiz 2021-01-29]
	Updated net/mosquitto to 2.0.6 [gdt 2021-01-29]
	Updated lang/go116 to 1.16rc1 [bsiegert 2021-01-29]
	Updated devel/py-buildbot to 2.6.0nb1 [maya 2021-01-29]
	Updated net/bind916 to 9.16.11 [otis 2021-01-29]
	Updated net/bind911 to 9.11.27 [otis 2021-01-29]
	Updated devel/libdatrie to 0.2.13 [scole 2021-01-29]
	Added devel/got version 0.48 [ryoon 2021-01-29]
	Updated net/terraform-provider-aws to 3.26.0 [leot 2021-01-29]
	Updated textproc/nanogrep to 2.2.1 [pin 2021-01-29]
	Updated databases/postgresql-postgis2 to 3.1.1 [gdt 2021-01-30]
	Updated graphics/cal3d to 0.11.0 [mef 2021-01-30]
	Updated www/w3m to 0.5.3.0.20210102 [mef 2021-01-30]
	Added fonts/ja-dotgothic16-ttf version 20201216 [ryoon 2021-01-30]
	Added fonts/ja-klee-ttf version 20201216 [ryoon 2021-01-30]
	Added fonts/ja-rampart-ttf version 20201216 [ryoon 2021-01-30]
	Added fonts/ja-reggae-ttf version 20201216 [ryoon 2021-01-30]
	Added fonts/ja-rocknroll-ttf version 20201216 [ryoon 2021-01-30]
	Added fonts/ja-stick-ttf version 20201216 [ryoon 2021-01-30]
	Added fonts/ja-train-ttf version 20201216 [ryoon 2021-01-30]
	Updated sysutils/zabbix50-server to 5.0.8 [otis 2021-01-30]
	Updated sysutils/zabbix50-agent to 5.0.8 [otis 2021-01-30]
	Updated sysutils/zabbix50-frontend to 5.0.8 [otis 2021-01-30]
	Updated sysutils/zabbix50-java to 5.0.8 [otis 2021-01-30]
	Updated sysutils/zabbix50-proxy to 5.0.8 [otis 2021-01-30]
	Updated sysutils/lsfp to 0.4.3 [pin 2021-01-30]
	Updated math/kalk to 0.3.13 [pin 2021-01-30]
	Updated editors/kiro-editor to 0.4.2 [pin 2021-01-30]
	Updated sysutils/auto-admin to 0.6.12 [bacon 2021-01-30]
	Updated finance/electrum to 4.0.9 [js 2021-01-30]
	Updated sysutils/py-Glances to 3.1.6.1 [fox 2021-01-31]
	Updated devel/cmake to 3.19.4 [adam 2021-01-31]
	Updated multimedia/mkvtoolnix to 53.0.0 [adam 2021-01-31]
	Updated devel/abseil to 20200923.3nb1 [he 2021-01-31]
	Updated security/gpgme to 1.15.1 [adam 2021-01-31]
	Updated net/wireshark to 3.4.3 [adam 2021-01-31]
	Updated games/dMagnetic to 0.30 [wiz 2021-01-31]
	Updated net/yaydl to 0.3.1 [pin 2021-01-31]
	Updated fonts/recursive-ttf to 1.072 [rhialto 2021-01-31]
	Added textproc/sd version 0.7.6 [pin 2021-01-31]
	Updated chat/matrix-synapse to 1.26.0 [js 2021-01-31]
	Added sysutils/restic version 0.11.0 [bsiegert 2021-01-31]
	Updated net/dbip-asn-lite to 2021.02 [fcambus 2021-02-01]
	Updated net/dbip-city-lite to 2021.02 [fcambus 2021-02-01]
	Updated net/dbip-country-lite to 2021.02 [fcambus 2021-02-01]
	Updated www/htmldoc to 1.9.11 [fcambus 2021-02-01]
	Updated www/htmldoc-x11 to 1.9.11 [fcambus 2021-02-01]
	Updated textproc/py-jinja2 to 2.11.3 [adam 2021-02-01]
	Updated textproc/py-natsort to 7.1.1 [adam 2021-02-01]
	Updated databases/mongodb to 4.2.12 [adam 2021-02-01]
	Updated devel/py-pygit2 to 1.5.0 [adam 2021-02-01]
	Updated sysutils/bareos to 20.0.0 [kardel 2021-02-01]
	Updated sysutils/bareos-clientonly to 20.0.0 [kardel 2021-02-01]
	Updated lang/yabasic to 2.89.1 [fcambus 2021-02-01]
	Updated lang/jimtcl to 0.80 [fcambus 2021-02-01]
	Updated archivers/lziprecover to 1.22 [fcambus 2021-02-01]
	Updated security/vault to 1.6.2 [he 2021-02-01]
	Updated textproc/sub2srt to 0.5.5 [fcambus 2021-02-01]
	Updated www/emacs-w3m-snapshot to 1.4.632.20210106.2144 [mef 2021-02-01]
	Updated devel/byacc to 20210109 [fcambus 2021-02-01]
	Updated lang/adoptopenjdk11-bin to 11.0.10.9 [ryoon 2021-02-01]
	Updated lang/openjdk11 to 1.11.0.10.9 [ryoon 2021-02-01]
	Updated devel/mob to 1.2.0 [schmonz 2021-02-01]
	Updated devel/py-approvaltests to 0.3.1 [schmonz 2021-02-01]
	Added sysutils/krusader to 2.7.2 [markd 2021-02-02]
	Updated devel/php-xdebug to 3.0.2 [taca 2021-02-02]
	Updated www/drupal7 to 7.78 [taca 2021-02-02]
	Updated www/drupal8 to 8.9.13 [taca 2021-02-02]
	Updated databases/ruby-sequel to 5.41.0 [taca 2021-02-02]
	Updated archivers/arqiver to 0.7.0 [pin 2021-02-02]
	Updated sysutils/sfm to 0.2.0 [pin 2021-02-02]
	Updated textproc/py-Levenshtein to 0.12.2 [gutteridge 2021-02-03]
	Updated www/lighttpd to 1.4.59 [schmonz 2021-02-03]
	Updated devel/ocaml-optint to 0.0.4nb1 [jaapb 2021-02-03]
	Updated textproc/aspell-en to 2020.12.07.0 [nia 2021-02-03]
	Updated audio/cmus to 2.9.1 [nia 2021-02-03]
	Updated fonts/terminus-font to 4.49.1 [nia 2021-02-03]
	Updated graphics/feh to 3.6.3 [nia 2021-02-03]
	Added textproc/inih version 52 [nia 2021-02-03]
	Updated graphics/imv to 4.2.0 [nia 2021-02-03]
	Updated www/nghttp2 to 1.43.0 [adam 2021-02-03]
	Updated www/curl to 7.75.0 [adam 2021-02-03]
	Updated audio/ncspot to 0.4.0 [pin 2021-02-03]
	Updated devel/ruby-i18n to 1.8.8 [taca 2021-02-03]
	Updated devel/ruby-msgpack to 1.4.2 [taca 2021-02-03]
	Added devel/ruby-red-colors version 0.1.1 [taca 2021-02-03]
	Updated devel/ruby-rspec-support to 3.10.2 [taca 2021-02-03]
	Updated devel/ruby-rspec-mocks to 3.10.2 [taca 2021-02-03]
	Updated devel/ruby-test-unit to 3.4.0 [taca 2021-02-03]
	Updated mail/ruby-roadie-rails to 2.2.0 [taca 2021-02-03]
	Updated misc/ruby-bundler to 2.2.8 [taca 2021-02-03]
	Updated net/ruby-train-core to 3.4.9 [taca 2021-02-03]
	Updated net/ruby-train-winrm to 0.2.12 [taca 2021-02-03]
	Added net/ruby-winrm-elevated version 1.2.3 [taca 2021-02-03]
	Updated net/ruby-winrm to 2.3.6 [taca 2021-02-03]
	Updated print/ruby-pdf-reader to 2.4.2 [taca 2021-02-03]
	Updated security/ruby-metasploit-concern to 3.0.1 [taca 2021-02-03]
	Updated security/ruby-metasploit-model to 3.1.3 [taca 2021-02-03]
	Updated security/ruby-metasploit-payloads to 2.0.28 [taca 2021-02-03]
	Updated security/ruby-metasploit_payloads-mettle to 1.0.6 [taca 2021-02-03]
	Updated security/ruby-rubyntlm to 0.6.3 [taca 2021-02-03]
	Updated security/ruby-oauth to 0.5.5 [taca 2021-02-03]
	Updated security/ruby-sshkit to 1.21.2 [taca 2021-02-03]
	Updated sysutils/puppet to 7.3.0 [taca 2021-02-03]
	Updated sysutils/ruby-chef-utils to 16.9.32 [taca 2021-02-03]
	Updated sysutils/ruby-chef-config to 16.9.32 [taca 2021-02-03]
	Updated sysutils/ruby-chef to 16.9.32 [taca 2021-02-03]
	Updated misc/ruby-ohai to 16.10.6 [taca 2021-02-03]
	Updated sysutils/ruby-inspec-core to 4.26.4 [taca 2021-02-03]
	Updated textproc/ruby-kramdown-rfc2629 to 1.3.25 [taca 2021-02-03]
	Updated www/ruby-capybara to 3.35.3 [taca 2021-02-03]
	Updated www/ruby-css-parser to 1.8.0 [taca 2021-02-03]
	Updated www/ruby-mechanize to 2.7.7 [taca 2021-02-03]
	Updated www/ruby-puma to 5.2.0 [taca 2021-02-03]
	Updated x11/ruby-tk to 0.3.0 [taca 2021-02-03]
	Added games/pinball version 0.3.20201218 [nia 2021-02-03]
	Updated databases/py-mongo to 3.11.3 [adam 2021-02-03]
	Updated devel/py-lru-dict to 1.1.7 [adam 2021-02-03]
	Updated net/tor to 0.4.4.7 [wiz 2021-02-03]
	Updated devel/autoconf to 2.71 [wiz 2021-02-03]
	Updated devel/bison to 3.7.5 [wiz 2021-02-03]
	Updated audio/fluidsynth to 2.1.7 [wiz 2021-02-03]
	Updated audio/libmysofa to 1.2 [wiz 2021-02-03]
	Updated graphics/ImageMagick to 7.0.10.61 [wiz 2021-02-03]
	Updated devel/py-packaging to 20.9 [wiz 2021-02-03]
	Updated security/tor-browser-https-everywhere to 2021.1.27 [wiz 2021-02-03]
	Updated sysutils/xenkernel413 to 4.13.2nb5 [bouyer 2021-02-03]
	Updated sysutils/xentools413 to 4.13.2nb3 [bouyer 2021-02-03]
	Added sysutils/findcrcs version 0.3 [wiz 2021-02-04]
	Updated textproc/lowdown to 0.8.0 [fcambus 2021-02-04]
	Updated net/s6-networking to 2.4.0.0nb3 [schmonz 2021-02-04]
	Updated textproc/asciidoc to 9.0.5 [wiz 2021-02-04]
	Updated devel/py-hypothesis to 6.1.1 [wiz 2021-02-04]
	Updated devel/waf to 2.0.22 [wiz 2021-02-04]
	Updated textproc/ugrep to 3.1.7 [wiz 2021-02-04]
	Updated sysutils/xenkernel411 to 4.11.4nb6 [bouyer 2021-02-04]
	Updated sysutils/xentools411 to 4.11.4nb3 [bouyer 2021-02-04]
	Updated security/tor-browser to 10.0.10 [wiz 2021-02-04]
	Updated ham/xlog to 2.0.20 [gdt 2021-02-04]
	Updated www/privoxy to 3.0.29 [wiz 2021-02-04]
	Updated net/mosquitto to 2.0.7 [gdt 2021-02-04]
	Updated devel/p5-FindBin-libs to 2.20.2 [schmonz 2021-02-04]
	Updated databases/mysql57-client to 5.7.33 [adam 2021-02-04]
	Updated databases/mysql57-server to 5.7.33 [adam 2021-02-04]
	Updated devel/py-mercurial to 5.7 [wiz 2021-02-04]
	Updated databases/py-tortoise-orm to 0.16.21 [adam 2021-02-05]
	Updated www/py-django2 to 2.2.18 [adam 2021-02-05]
	Updated www/py-django3 to 3.1.6 [adam 2021-02-05]
	Updated www/py-django-reversion to 3.0.9 [adam 2021-02-05]
	Updated mail/feed2exec to 0.17.1 [schmonz 2021-02-05]
	Updated databases/mysql56-client to 5.6.51 [adam 2021-02-05]
	Updated databases/mysql56-server to 5.6.51 [adam 2021-02-05]
	Updated net/openvpn to 2.5.0nb1 [wiz 2021-02-05]
	Updated chat/weechat to 3.0.1 [nia 2021-02-05]
	Updated audio/lv2 to 1.18.2 [nia 2021-02-05]
	Updated lang/janet to 1.14.2 [nia 2021-02-05]
	Added www/R-webshot version 0.5.2 [mef 2021-02-05]
	Added math/p5-Statistics-Basic version 1.6611 [schmonz 2021-02-05]
	Updated lang/php74 to 7.4.15 [taca 2021-02-05]
	Updated lang/php73 to 7.3.27 [taca 2021-02-05]
	Updated devel/ruby-pkg-config to 1.4.5 [taca 2021-02-05]
	Updated net/ruby-recog to 2.3.19 [taca 2021-02-05]
	Updated security/ruby-rex-arch to 0.1.14 [taca 2021-02-05]
	Updated security/ruby-rex-core to 0.1.15 [taca 2021-02-05]
	Updated security/ruby-rex-encoder to 0.1.5 [taca 2021-02-05]
	Updated security/ruby-rex-exploitation to 0.1.26 [taca 2021-02-05]
	Updated security/ruby-rex-java to 0.1.6 [taca 2021-02-05]
	Updated security/ruby-rex-mime to 0.1.6 [taca 2021-02-05]
	Updated security/ruby-rex-nop to 0.1.2 [taca 2021-02-05]
	Updated security/ruby-rex-ole to 0.1.7 [taca 2021-02-05]
	Updated security/ruby-rex-powershell to 0.1.89 [taca 2021-02-05]
	Updated security/ruby-rex-random_identifier to 0.1.5 [taca 2021-02-05]
	Updated security/ruby-rex-registry to 0.1.4 [taca 2021-02-05]
	Updated security/ruby-rex-rop_builder to 0.1.4 [taca 2021-02-05]
	Updated security/ruby-rex-socket to 0.1.24 [taca 2021-02-05]
	Updated security/ruby-rex-struct2 to 0.1.3 [taca 2021-02-05]
	Updated security/ruby-rex-text to 0.2.31 [taca 2021-02-05]
	Updated security/ruby-rex-zip to 0.1.4 [taca 2021-02-05]
	Updated security/ruby-rex-bin_tools to 0.1.7 [taca 2021-02-05]
	Updated sysutils/ruby-chef-utils to 16.10.8 [taca 2021-02-05]
	Updated sysutils/ruby-chef-config to 16.10.8 [taca 2021-02-05]
	Updated sysutils/ruby-chef to 16.10.8 [taca 2021-02-05]
	Updated sysutils/ruby-facter to 4.0.50 [taca 2021-02-05]
	Updated textproc/ruby-kramdown-rfc2629 to 1.3.27 [taca 2021-02-05]
	Updated www/ruby-css-parser to 1.9.0 [taca 2021-02-05]
	Updated devel/ruby-backports to 3.20.2 [taca 2021-02-05]
	Updated finance/ruby-activemerchant to 1.118.0 [taca 2021-02-05]
	Updated finance/ruby-braintree to 3.2.0 [taca 2021-02-05]
	Updated devel/ruby-cucumber-messages to 13.2.1 [taca 2021-02-05]
	Updated archivers/ruby-bz2 to 0.2.2nb2 [taca 2021-02-05]
	Updated editors/nano to 5.5nb1 [triaxx 2021-02-05]
	Updated textproc/py-xmlschema to 1.5.0 [adam 2021-02-05]
	Updated time/py-iso8601 to 0.1.14 [adam 2021-02-05]
	Updated textproc/py-Unidecode to 1.2.0 [adam 2021-02-05]
	Updated time/py-pytz to 2021.1 [adam 2021-02-05]
	Updated textproc/py-elementpath to 2.1.3 [adam 2021-02-05]
	Updated security/py-google-auth to 1.25.0 [adam 2021-02-05]
	Updated net/dnsmasq to 2.84 [adam 2021-02-05]
	Updated graphics/gd to 2.3.1 [adam 2021-02-05]
	Updated www/py-httpcore to 0.12.3 [adam 2021-02-05]
	Updated devel/py-factory_boy to 3.2.0 [adam 2021-02-05]
	Updated devel/py-smmap to 4.0.0 [adam 2021-02-05]
	Updated graphics/py-pygraphviz to 1.7 [adam 2021-02-05]
	Updated net/py-pika to 1.2.0 [adam 2021-02-05]
	Updated textproc/py-jsbeautifier to 1.13.5 [adam 2021-02-05]
	Updated www/firefox78 to 78.7.1 [ryoon 2021-02-06]
	Updated www/firefox78-l10n to 78.7.1 [ryoon 2021-02-06]
	Updated www/firefox to 85.0.1 [ryoon 2021-02-06]
	Updated www/firefox-l10n to 85.0.1 [ryoon 2021-02-06]
	Updated devel/cbindgen to 0.17.0 [ryoon 2021-02-06]
	Updated graphics/libheif to 1.11.0 [ryoon 2021-02-06]
	Updated math/libixion to 0.16.1 [ryoon 2021-02-06]
	Updated math/py-libixion to 0.16.1 [ryoon 2021-02-06]
	Updated converters/orcus to 0.16.1 [ryoon 2021-02-06]
	Updated www/neon to 0.31.2 [ryoon 2021-02-06]
	Added graphics/box2d version 2.4.1 [ryoon 2021-02-06]
	Updated misc/libreoffice to 7.1.0.3 [ryoon 2021-02-06]
	Updated devel/py-hg-evolve to 10.2.0.1 [wiz 2021-02-06]
	Updated sysutils/broot to 1.2.2 [pin 2021-02-06]
	Updated devel/py-tortoisehg to 5.6.1 [wiz 2021-02-06]
	Updated sysutils/broot to 1.2.3 [pin 2021-02-06]
	Removed security/pinentry-qt4 [wiz 2021-02-06]
	Added security/pinentry-qt5 version 1.1.1 [wiz 2021-02-06]
	Updated security/pinentry to 1.1.1 [wiz 2021-02-06]
	Added sysutils/refi version 3.0.0 [pin 2021-02-06]
	Added print/tex-verse version 2.4b [leot 2021-02-06]
	Added print/tex-verse-doc version 2.4b [leot 2021-02-06]
	Added graphics/R-manipulateWidget version 0.10.1 [mef 2021-02-06]
	Updated games/py-ranking to 0.3.2 [kleink 2021-02-06]
	Updated games/love07 to 0.7.2nb3 [maya 2021-02-06]
	Updated games/love08 to 0.8.0nb4 [maya 2021-02-06]
	Updated games/love09 to 0.9.2nb5 [maya 2021-02-06]
	Updated games/love010 to 0.10.2nb5 [maya 2021-02-06]
	Updated games/love11 to 11.3nb3 [maya 2021-02-06]
	Updated devel/R-Rcpp to 1.0.6 [mef 2021-02-06]
	Updated audio/pulseaudio to 14.2 [wiz 2021-02-06]
	Updated www/py-MechanicalSoup to 1.0.0 [leot 2021-02-06]
	Added security/R-getPass version 0.2.2 [mef 2021-02-06]
	Updated devel/R-git2r to 0.28.0 [mef 2021-02-07]
	Updated news/neix to 0.1.3nb1 [gutteridge 2021-02-07]
	Updated audio/pulseaudio to 14.2nb1 [ryoon 2021-02-07]
	Updated misc/py-stdnum to 1.16 [adam 2021-02-07]
	Updated finance/py-stripe to 2.55.2 [adam 2021-02-07]
	Updated devel/fossil to 2.14 [js 2021-02-07]
	Updated graphics/py-matplotlib to 3.3.4 [adam 2021-02-07]
	Updated sysutils/py-structlog to 20.2.0 [adam 2021-02-07]
	Updated www/grafana to 7.4.0 [triaxx 2021-02-07]
	Updated devel/py-toolz to 0.11.1 [adam 2021-02-07]
	Updated devel/py-cytoolz to 0.11.0 [adam 2021-02-07]
	Updated audio/spotify-qt to 3.4 [pin 2021-02-07]
	Updated finance/py-eth-hash to 0.3.1 [adam 2021-02-07]
	Updated finance/py-eth-utils to 1.10.0 [adam 2021-02-07]
	Added textproc/py-parsimonious version 0.8.1 [adam 2021-02-07]
	Added finance/py-eth-abi version 2.1.1 [adam 2021-02-07]
	Updated devel/p5-Test-BDD-Cucumber to 0.76 [schmonz 2021-02-07]
	Updated net/terraform-provider-aws to 3.27.0 [leot 2021-02-07]
	Updated biology/bedtools to 2.30.0 [bacon 2021-02-08]
	Added biology/py-dnaio version 0.5.0 [bacon 2021-02-08]
	Added biology/py-cutadapt version 3.2 [bacon 2021-02-08]
	Updated security/py-cryptography to 3.3.2 [adam 2021-02-08]
	Updated security/py-cryptography_vectors to 3.3.2 [adam 2021-02-08]
	Updated databases/py-peewee to 3.14.1 [adam 2021-02-08]
	Updated devel/py-more-itertools to 8.7.0 [adam 2021-02-08]
	Updated lang/erlang to 23.2.4 [triaxx 2021-02-08]
	Updated devel/py-rlp to 2.0.1 [adam 2021-02-08]
	Added devel/py-bitarray version 1.6.3 [adam 2021-02-08]
	Added finance/py-eth-keys version 0.3.3 [adam 2021-02-08]
	Added finance/py-eth-keyfile version 0.5.1 [adam 2021-02-08]
	Removed mail/fetchyahoo [triaxx 2021-02-08]
	Updated chat/ejabberd to 21.01 [triaxx 2021-02-08]
	Updated editors/le to 1.16.8 [fcambus 2021-02-08]
	Added devel/py-hexbytes version 0.2.1 [adam 2021-02-08]
	Added finance/py-eth-rlp version 0.2.1 [adam 2021-02-08]
	Added finance/py-eth-account version 0.5.4 [adam 2021-02-08]
	Updated math/py-asteval to 0.9.21 [adam 2021-02-08]
	Updated security/keepassxc to 2.6.4 [ryoon 2021-02-08]
	Updated editors/zim to 0.73.5 [triaxx 2021-02-08]
	Added security/R-argon2 version 0.2.0 [mef 2021-02-08]
	Updated devel/R-withr to 2.4.1 [mef 2021-02-08]
	Updated devel/R-xfun to 0.20 [mef 2021-02-08]
	Updated www/seamonkey to 2.53.6 [ryoon 2021-02-08]
	Updated www/seamonkey-l10n to 2.53.6 [ryoon 2021-02-08]
	Updated sysutils/py-cpuinfo to 7.0.0 [adam 2021-02-08]
	Updated textproc/py-pandocfilters to 1.4.3 [adam 2021-02-08]
	Updated net/powerdns to 4.4.1 [otis 2021-02-08]
	Updated time/py-goocalendar to 0.7.1 [adam 2021-02-08]
	Updated devel/py-autopep8 to 1.5.5 [adam 2021-02-08]
	Updated net/statzone to 1.0.5 [fcambus 2021-02-08]
	Updated x11/xterm to 365 [pin 2021-02-08]
	Updated mail/roundcube to 1.4.11 [taca 2021-02-09]
	Updated mail/roundcube-plugin-enigma to 1.4.11 [taca 2021-02-09]
	Updated mail/roundcube-plugin-password to 1.4.11 [taca 2021-02-09]
	Updated mail/roundcube-plugin-zipdownload to 1.4.11 [taca 2021-02-09]
	Updated devel/git to 2.30.1 [adam 2021-02-09]
	Updated devel/py-ipykernel to 5.4.3 [adam 2021-02-09]
	Updated security/py-josepy to 1.6.0 [adam 2021-02-09]
	Updated time/py-aniso8601 to 8.1.1 [adam 2021-02-09]
	Updated net/py-digitalocean to 1.16.0 [adam 2021-02-09]
	Updated devel/py-ZopeSchema to 6.0.1 [adam 2021-02-09]
	Updated net/unbound to 1.13.1 [he 2021-02-09]
	Updated www/py-httplib2 to 0.19.0 [adam 2021-02-09]
	Updated net/py-dropbox to 11.1.0 [adam 2021-02-09]
	Updated devel/py-google-api-core to 1.26.0 [adam 2021-02-09]
	Updated devel/py-execnet to 1.8.0 [adam 2021-02-09]
	Updated security/py-acme to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-apache to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-digitalocean to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-dnsimple to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-dnsmadeeasy to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-gehirn to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-google to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-linode to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-luadns to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-nsone to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-ovh to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-rfc2136 to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-route53 to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-dns-sakuracloud to 1.12.0 [adam 2021-02-09]
	Updated security/py-certbot-nginx to 1.12.0 [adam 2021-02-09]
	Updated net/haproxy to 2.3.5 [adam 2021-02-09]
	Updated textproc/py-snowballstemmer to 2.1.0 [adam 2021-02-09]
	Updated www/hugo to 0.80.0 [ryoon 2021-02-09]
	Updated mail/thunderbird to 78.7.1 [ryoon 2021-02-09]
	Updated mail/thunderbird-l10n to 78.7.1 [ryoon 2021-02-09]
	Added lang/ghc810 version 8.10.4 [ryoon 2021-02-09]
	Added lang/ghc90 version 9.0.1 [ryoon 2021-02-09]
	Updated textproc/lowdown to 0.8.1 [fcambus 2021-02-09]
	Updated audio/vorbis-tools to 1.4.2 [nia 2021-02-09]
	Updated print/xpdf4 to 4.03 [nia 2021-02-09]
	Updated games/stone-soup to 0.26.1 [nia 2021-02-09]
	Updated games/stone-soup-sdl to 0.26.1 [nia 2021-02-09]
	Added print/tex-tabulary version 0.10 [dholland 2021-02-09]
	Updated lang/coq to 8.12.2 [dholland 2021-02-09]
	Updated games/sauerbraten to 2020_12_27 [nia 2021-02-09]
	Updated devel/py-uvloop to 0.15.0 [adam 2021-02-10]
	Updated textproc/py-elementpath to 2.1.4 [adam 2021-02-10]
	Updated devel/py-joblib to 1.0.1 [adam 2021-02-10]
	Updated databases/py-asyncpg to 0.22.0 [adam 2021-02-10]
	Updated devel/cdk to 5.0.20210109 [nia 2021-02-10]
	Updated time/ical to 3.0.4 [nia 2021-02-10]
	Updated graphics/jasper to 2.0.25 [nia 2021-02-10]
	Updated audio/libebur128 to 1.2.5 [nia 2021-02-10]
	Updated security/lua-sec to 1.0 [nia 2021-02-10]
	Updated emulators/keystone to 0.9.2 [adam 2021-02-10]
	Updated emulators/py-keystone to 0.9.2 [adam 2021-02-10]
	Updated audio/ncmpcpp to 0.9.2 [nia 2021-02-10]
	Added converters/py-base58 version 2.1.0 [adam 2021-02-10]
	Updated www/py-swiftclient to 3.11.0 [adam 2021-02-10]
	Updated audio/ncmpc to 0.44 [nia 2021-02-10]
	Updated graphics/scrot to 1.5 [nia 2021-02-10]
	Updated emulators/stella to 6.5.1 [nia 2021-02-10]
	Updated emulators/libretro-stella to 6.5.1 [nia 2021-02-10]
	Updated games/xbomb to 2.2b [nia 2021-02-10]
	Updated www/firefox to 85.0.2 [ryoon 2021-02-10]
	Updated www/firefox-l10n to 85.0.2 [ryoon 2021-02-10]
	Added net/nagios-plugin-snmp_environment version 0.7nb1 [wiz 2021-02-10]
	Added net/nagios-plugin-printer version 0.0.363nb1 [wiz 2021-02-10]
	Updated devel/p5-Test-BDD-Cucumber to 0.77 [schmonz 2021-02-10]
	Updated databases/p5-DBD-CSV to 0.58 [wen 2021-02-11]
	Updated databases/p5-SQL-Abstract to 2.000001 [wen 2021-02-11]
	Updated databases/p5-SQL-Statement to 1.414 [wen 2021-02-11]
	Updated devel/p5-Algorithm-C3 to 0.11 [wen 2021-02-11]
	Updated devel/p5-Algorithm-CheckDigits to 1.3.5 [wen 2021-02-11]
	Updated devel/p5-Class-C3 to 0.35 [wen 2021-02-11]
	Updated devel/p5-Class-Singleton to 1.6 [wen 2021-02-11]
	Updated www/p5-WWW-Mechanize to 2.03 [wen 2021-02-11]
	Updated comms/asterisk16 to 16.16.0 [ryoon 2021-02-11]
	Updated audio/py-music21 to 6.7.0 [gutteridge 2021-02-11]
	Updated textproc/py-markdown-math to 0.8 [gutteridge 2021-02-11]
	Updated textproc/py-markups to 3.1.0 [gutteridge 2021-02-11]
	Updated editors/retext to 7.2.0 [gutteridge 2021-02-11]
	Updated audio/musescore to 3.6.2 [gutteridge 2021-02-11]
	Updated x11/xterm to 366 [wiz 2021-02-11]
	Updated devel/binutils to 2.36.1 [fcambus 2021-02-11]
	Updated sysutils/ups-nut to 2.7.4nb3 [wiz 2021-02-11]
	Updated sysutils/duplicity to 0.8.18 [adam 2021-02-11]
	Updated devel/py-gitpython to 3.1.13 [adam 2021-02-11]
	Added geography/echomap version 0.6.0 [pin 2021-02-11]
	Added www/ddgr version 1.9 [pin 2021-02-11]
	Updated net/adns to 1.6.0 [nia 2021-02-11]
	Updated devel/py-prompt_toolkit2 to 3.0.15 [adam 2021-02-11]
	Updated devel/py-ipython to 7.20.0 [adam 2021-02-11]
	Updated x11/alacritty to 0.7.1 [pin 2021-02-11]
	Updated www/webkit-gtk to 2.30.5 [leot 2021-02-11]
	Updated geography/geos to 3.9.1 [gdt 2021-02-11]
	Added databases/mysqld_exporter version 0.12.1 [jperkin 2021-02-11]
	Updated devel/ruby-activesupport52 to 5.2.4.5 [taca 2021-02-11]
	Updated devel/ruby-activemodel52 to 5.2.4.5 [taca 2021-02-11]
	Updated devel/ruby-activejob52 to 5.2.4.5 [taca 2021-02-11]
	Updated www/ruby-actionview52 to 5.2.4.5 [taca 2021-02-11]
	Updated www/ruby-actionpack52 to 5.2.4.5 [taca 2021-02-11]
	Updated www/ruby-actioncable52 to 5.2.4.5 [taca 2021-02-11]
	Updated databases/ruby-activerecord52 to 5.2.4.5 [taca 2021-02-11]
	Updated devel/ruby-activestorage52 to 5.2.4.5 [taca 2021-02-11]
	Updated mail/ruby-actionmailer52 to 5.2.4.5 [taca 2021-02-11]
	Updated devel/ruby-railties52 to 5.2.4.5 [taca 2021-02-11]
	Updated www/ruby-rails52 to 5.2.4.5 [taca 2021-02-11]
	Updated devel/ruby-activesupport60 to 6.0.3.5 [taca 2021-02-11]
	Updated devel/ruby-activemodel60 to 6.0.3.5 [taca 2021-02-11]
	Updated devel/ruby-activejob60 to 6.0.3.5 [taca 2021-02-11]
	Updated www/ruby-actionview60 to 6.0.3.5 [taca 2021-02-11]
	Updated www/ruby-actionpack60 to 6.0.3.5 [taca 2021-02-11]
	Updated databases/ruby-activerecord60 to 6.0.3.5 [taca 2021-02-11]
	Updated mail/ruby-actionmailer60 to 6.0.3.5 [taca 2021-02-11]
	Updated mail/ruby-actionmailbox60 to 6.0.3.5 [taca 2021-02-11]
	Updated www/ruby-actioncable60 to 6.0.3.5 [taca 2021-02-11]
	Updated devel/ruby-railties60 to 6.0.3.5 [taca 2021-02-11]
	Updated devel/ruby-activestorage60 to 6.0.3.5 [taca 2021-02-11]
	Updated textproc/ruby-actiontext60 to 6.0.3.5 [taca 2021-02-11]
	Updated www/ruby-rails60 to 6.0.3.5 [taca 2021-02-11]
	Added net/libmicrodns version 0.2.0 [ryoon 2021-02-11]
	Updated multimedia/vlc to 3.0.12nb2 [ryoon 2021-02-11]
	Updated fonts/comic-neue to 2.51 [nia 2021-02-11]
	Updated graphics/gexiv2 to 0.12.1 [nia 2021-02-11]
	Updated misc/goffice0.10 to 0.10.48 [nia 2021-02-11]
	Updated math/gnumeric112 to 1.12.48 [nia 2021-02-11]
	Added net/kdsoap version 1.9.1 [markd 2021-02-11]
	Added devel/kio-extras version 20.04.1 [markd 2021-02-11]
	Updated net/youtube-dl to 20210210 [leot 2021-02-11]
	Updated sysutils/baloo-widgets to 20.04.1 [markd 2021-02-11]
	Added sysutils/dolphin version 20.04.1 [markd 2021-02-11]
	Updated devel/dolphin-plugins to 20.04.1 [markd 2021-02-11]
	Updated net/rclone to 1.54.0 [leot 2021-02-11]
	Added print/tex-tabulary-doc version 0.10 [markd 2021-02-11]
	Updated print/tex-cjk-gs-integrate to 20201206.0 [markd 2021-02-12]
	Updated print/tex-cjk-gs-integrate-doc to 20201206.0 [markd 2021-02-12]
	Added print/tex-fixjfm version 0.8 [markd 2021-02-12]
	Added print/tex-fixjfm-doc version 0.8 [markd 2021-02-12]
	Added print/tex-jfmutil version 1.3.1 [markd 2021-02-12]
	Added print/tex-jfmutil-doc version 1.3.1 [markd 2021-02-12]
	Added print/tex-pxtatescale version 0.4 [markd 2021-02-12]
	Added print/tex-pxtatescale-doc version 0.4 [markd 2021-02-12]
	Updated meta-pkgs/texlive-collection-langcjk to 2020 [markd 2021-02-12]
	Added graphics/tex-qrcode version 1.51 [markd 2021-02-12]
	Added graphics/tex-qrcode-doc version 1.51 [markd 2021-02-12]
	Added math/tex-lualatex-math version 1.9 [markd 2021-02-12]
	Added math/tex-lualatex-math-doc version 1.9 [markd 2021-02-12]
	Added fonts/tex-stix2-otf version 2.11 [markd 2021-02-12]
	Added fonts/tex-stix2-otf-doc version 2.11 [markd 2021-02-12]
	Added math/funst version 0.1.1 [pin 2021-02-12]
	Updated archivers/unrar to 6.0.3 [nia 2021-02-12]
	Updated archivers/libunrar to 6.0.3 [nia 2021-02-12]
	Updated archivers/zutils to 1.10 [nia 2021-02-12]
	Added textproc/lok version 0.1.2 [pin 2021-02-12]
	Added www/py-socks version 1.2.0 [adam 2021-02-12]
	Added www/py-httpx-socks version 0.3.1 [adam 2021-02-12]
	Updated www/py-aiohttp-socks to 0.5.5 [adam 2021-02-12]
	Updated databases/py-pypika to 0.47.4 [adam 2021-02-12]
	Moved www/py-socks to net/py-python-socks [adam 2021-02-12]
	Updated lang/nodejs to 14.15.5 [adam 2021-02-12]
	Added sysutils/ddiff version 0.1.0 [pin 2021-02-12]
	Updated emulators/PC6001VX to 3.7.0 [tsutsui 2021-02-12]
	Updated ham/hamlib to 4.1nb3 [gdt 2021-02-13]
	Updated converters/bdf2sfd to 1.1.6 [fcambus 2021-02-13]
	Updated converters/help2man to 1.48.1 [ryoon 2021-02-13]
	Updated time/ruby-timers to 4.3.3 [taca 2021-02-13]
	Updated archivers/ruby-ffi-libarchive to 1.0.17 [taca 2021-02-13]
	Updated archivers/ruby-mixlib-archive to 1.1.4 [taca 2021-02-13]
	Updated devel/ruby-i18n to 1.8.9 [taca 2021-02-13]
	Updated finance/ruby-activemerchant to 1.119.0 [taca 2021-02-13]
	Updated databases/postgresql-timescaledb to 2.0.1 [tnn 2021-02-13]
	Updated databases/promscale to 0.2.0 [tnn 2021-02-13]
	Updated print/tex-amscls to 2020 [markd 2021-02-13]
	Updated print/tex-amscls-doc to 2020 [markd 2021-02-13]
	Updated print/tex-amsmath to 2.17i [markd 2021-02-13]
	Updated print/tex-amsmath-doc to 2.17i [markd 2021-02-13]
	Updated print/tex-babel to 3.53 [markd 2021-02-13]
	Updated print/tex-babel-doc to 3.53 [markd 2021-02-13]
	Updated print/tex-babelbib to 1.34 [markd 2021-02-13]
	Updated print/tex-babelbib-doc to 1.34 [markd 2021-02-13]
	Updated print/tex-bookmark to 1.29 [markd 2021-02-13]
	Updated print/tex-bookmark-doc to 1.29 [markd 2021-02-13]
	Updated print/tex-carlisle to 2020 [markd 2021-02-13]
	Updated print/tex-carlisle-doc to 2020 [markd 2021-02-13]
	Updated print/tex-fancyhdr to 4.0.1 [markd 2021-02-13]
	Updated print/tex-fancyhdr-doc to 4.0.1 [markd 2021-02-13]
	Added print/tex-firstaid version 1.0i [markd 2021-02-13]
	Added print/tex-firstaid-doc version 1.0i [markd 2021-02-13]
	Updated print/tex-graphics to 1.4c [markd 2021-02-13]
	Updated print/tex-graphics-doc to 1.4c [markd 2021-02-13]
	Updated print/tex-graphics-def to 2020.56555 [markd 2021-02-13]
	Updated print/tex-graphics-def-doc to 2020.56555 [markd 2021-02-13]
	Added print/tex-hopatch version 1.4 [markd 2021-02-13]
	Added print/tex-hopatch-doc version 1.4 [markd 2021-02-13]
	Added print/tex-hypdestopt version 2.7 [markd 2021-02-13]
	Added print/tex-hypdestopt-doc version 2.7 [markd 2021-02-13]
	Updated print/tex-hyperref to 7.00j [markd 2021-02-13]
	Updated print/tex-hyperref-doc to 7.00j [markd 2021-02-13]
	Updated print/tex-kvoptions to 3.14 [markd 2021-02-13]
	Updated print/tex-kvoptions-doc to 3.14 [markd 2021-02-13]
	Updated print/tex-latex to 20201001.4 [markd 2021-02-13]
	Updated print/tex-latex-doc to 20201001.4 [markd 2021-02-13]
	Updated print/tex-ltxcmds to 1.25 [markd 2021-02-13]
	Updated print/tex-ltxcmds-doc to 1.25 [markd 2021-02-13]
	Updated print/tex-oberdiek to 2020.56291 [markd 2021-02-13]
	Updated print/tex-oberdiek-doc to 2020.56291 [markd 2021-02-13]
	Added print/tex-pagesel version 1.10 [markd 2021-02-13]
	Added print/tex-pagesel-doc version 1.10 [markd 2021-02-13]
	Updated print/tex-pslatex to 1.3 [markd 2021-02-13]
	Updated print/tex-tools to 2020.56514 [markd 2021-02-13]
	Updated print/tex-tools-doc to 2020.56514 [markd 2021-02-13]
	Updated devel/tex-l3backend to 2020.57669 [markd 2021-02-13]
	Updated devel/tex-l3backend-doc to 2020.57669 [markd 2021-02-13]
	Updated devel/tex-l3kernel to 2020.57669 [markd 2021-02-13]
	Updated devel/tex-l3kernel-doc to 2020.57669 [markd 2021-02-13]
	Updated devel/tex-l3packages to 2020.57600 [markd 2021-02-13]
	Updated devel/tex-l3packages-doc to 2020.57600 [markd 2021-02-13]
	Updated devel/tex-l3experimental to 2020.57669 [markd 2021-02-13]
	Updated meta-pkgs/texlive-collection-latex to 2020.57048 [markd 2021-02-13]
	Updated print/tex-beamer to 3.61 [markd 2021-02-13]
	Updated print/tex-beamer-doc to 3.61 [markd 2021-02-13]
	Updated print/tex-breqn to 0.98k [markd 2021-02-13]
	Updated print/tex-caption to 20201026 [markd 2021-02-13]
	Updated print/tex-caption-doc to 20201026 [markd 2021-02-13]
	Updated print/tex-cmap to 1.0j [markd 2021-02-13]
	Updated print/tex-crop to 1.10.2 [markd 2021-02-13]
	Updated print/tex-eso-pic to 3.0a [markd 2021-02-13]
	Updated print/tex-eso-pic-doc to 3.0a [markd 2021-02-13]
	Updated devel/tex-etoolbox to 2.5k [markd 2021-02-13]
	Updated devel/tex-etoolbox-doc to 2.5k [markd 2021-02-13]
	Added print/tex-everysel version 2.1 [markd 2021-02-13]
	Added print/tex-everysel-doc version 2.1 [markd 2021-02-13]
	Added print/tex-everyshi version 4.00 [markd 2021-02-13]
	Added print/tex-everyshi-doc version 4.00 [markd 2021-02-13]
	Updated print/tex-fancyvrb to 3.7 [markd 2021-02-13]
	Updated print/tex-fancyvrb-doc to 3.7 [markd 2021-02-13]
	Updated print/tex-filehook to 0.8a [markd 2021-02-13]
	Updated print/tex-filehook-doc to 0.8a [markd 2021-02-13]
	Updated print/tex-footnotehyper to 1.1d [markd 2021-02-13]
	Updated print/tex-footnotehyper-doc to 1.1d [markd 2021-02-13]
	Updated print/tex-koma-script to 3.32 [markd 2021-02-13]
	Updated devel/tex-latexbug to 1.0i [markd 2021-02-13]
	Updated devel/tex-latexbug-doc to 1.0i [markd 2021-02-13]
	Updated textproc/tex-lwarp to 0.894 [markd 2021-02-13]
	Updated textproc/tex-lwarp-doc to 0.894 [markd 2021-02-13]
	Updated print/tex-memoir to 3.7n [markd 2021-02-13]
	Updated print/tex-memoir-doc to 3.7n [markd 2021-02-13]
	Updated print/tex-microtype to 2.8 [markd 2021-02-13]
	Updated print/tex-microtype-doc to 2.8 [markd 2021-02-13]
	Updated print/tex-ms to 2020 [markd 2021-02-13]
	Updated print/tex-ms-doc to 2020 [markd 2021-02-13]
	Updated print/tex-ntgclass to 2.1e [markd 2021-02-13]
	Updated print/tex-ntgclass-doc to 2.1e [markd 2021-02-13]
	Updated print/tex-parskip to 2.0f [markd 2021-02-13]
	Updated print/tex-parskip-doc to 2.0f [markd 2021-02-13]
	Updated print/tex-pdfpages to 0.5s [markd 2021-02-13]
	Updated print/tex-pdfpages-doc to 0.5s [markd 2021-02-13]
	Updated print/tex-pdftexcmds to 0.33 [markd 2021-02-13]
	Updated print/tex-pdftexcmds-doc to 0.33 [markd 2021-02-13]
	Updated print/tex-polyglossia to 1.51 [markd 2021-02-13]
	Updated print/tex-polyglossia-doc to 1.51 [markd 2021-02-13]
	Updated print/tex-translator to 1.12c [markd 2021-02-13]
	Updated print/tex-translator-doc to 1.12c [markd 2021-02-13]
	Updated print/tex-xkeyval to 2.8 [markd 2021-02-13]
	Updated print/tex-xkeyval-doc to 2.8 [markd 2021-02-13]
	Updated meta-pkgs/texlive-collection-latexrecommended to 2020.57472 [markd 2021-02-13]
	Updated graphics/ruby-RMagick to 4.2.1 [taca 2021-02-13]
	Updated mail/ruby-mime-types-data to 3.2021.0212 [taca 2021-02-13]
	Updated misc/ruby-bundler to 2.2.9 [taca 2021-02-13]
	Updated misc/ruby-pry to 0.14.0 [taca 2021-02-13]
	Updated net/ruby-nio4r to 2.5.5 [taca 2021-02-13]
	Updated security/ruby-metasploit-payloads to 2.0.32 [taca 2021-02-13]
	Updated security/ruby-rex-core to 0.1.16 [taca 2021-02-13]
	Updated databases/libzdb to 3.2.2 [tnn 2021-02-13]
	Updated ham/chirp to 20210212 [gdt 2021-02-13]
	Updated lang/gcc10 to 10.2.0nb2 [maya 2021-02-13]
	Updated lang/gcc9 to 9.3.0nb6 [maya 2021-02-13]
	Updated lang/gcc8 to 8.4.0nb4 [maya 2021-02-13]
	Updated lang/gcc7 to 7.5.0nb4 [maya 2021-02-13]
	Updated lang/gcc6 to 6.5.0nb6 [maya 2021-02-13]
	Updated devel/tig to 2.5.2 [fcambus 2021-02-13]
	Updated sysutils/sfm to 0.3.0 [pin 2021-02-13]
	Updated databases/prometheus to 2.24.1 [adam 2021-02-13]
	Updated databases/py-ldap3 to 2.9 [adam 2021-02-13]
	Updated security/py-josepy to 1.7.0 [adam 2021-02-13]
	Updated misc/py-tqdm to 4.56.2 [adam 2021-02-13]
	Updated devel/py-fasteners to 0.16 [adam 2021-02-13]
	Updated mail/py-imapclient to 2.2.0 [adam 2021-02-13]
	Updated print/tex-dvipdfmx to 2020 [markd 2021-02-14]
	Updated print/tex-dvipdfmx-doc to 2020 [markd 2021-02-14]
	Updated print/tex-hyphenex to 20210110 [markd 2021-02-14]
	Updated fonts/tex-modes to 4.2 [markd 2021-02-14]
	Updated fonts/tex-modes-doc to 4.2 [markd 2021-02-14]
	Updated devel/tex-tlshell to 2020.57712 [markd 2021-02-14]
	Updated devel/tex-tlshell-doc to 2020.57712 [markd 2021-02-14]
	Updated print/tex-unicode-data to 1.14 [markd 2021-02-14]
	Updated print/tex-unicode-data-doc to 1.14 [markd 2021-02-14]
	Updated meta-pkgs/texlive-collection-basic to 2020.56569 [markd 2021-02-14]
	Updated fonts/tex-fontools to 2020.57171 [markd 2021-02-14]
	Updated fonts/tex-fontools-doc to 2020.57171 [markd 2021-02-14]
	Updated fonts/tex-mf2pt1 to 2.6 [markd 2021-02-14]
	Updated fonts/tex-mf2pt1-doc to 2.6 [markd 2021-02-14]
	Added fonts/tex-albatross version 0.3.0 [markd 2021-02-14]
	Added fonts/tex-albatross-doc version 0.3.0 [markd 2021-02-14]
	Updated meta-pkgs/texlive-collection-fontutils to 2020.57089 [markd 2021-02-14]
	Updated print/tex-eplain to 3.11 [markd 2021-02-14]
	Updated print/tex-eplain-doc to 3.11 [markd 2021-02-14]
	Updated print/tex-jadetex to 3.13.57186 [markd 2021-02-14]
	Updated print/tex-jadetex-doc to 3.13.57186 [markd 2021-02-14]
	Updated lang/rust to 1.49.0 [he 2021-02-14]
	Updated audio/libopenmpt to 0.5.5 [fcambus 2021-02-14]
	Added graphics/farbfeld version 4 [leot 2021-02-14]
	Updated security/authelia to 4.26.1 [tnn 2021-02-14]
	Added graphics/charls version 2.2.0 [nros 2021-02-14]
	Added www/unit version 1.22.0 [otis 2021-02-14]
	Added www/unit-perl version 1.22.0 [otis 2021-02-14]
	Added www/unit-php version 1.22.0 [otis 2021-02-14]
	Added www/unit-python version 1.22.0 [otis 2021-02-14]
	Added www/unit-ruby version 1.22.0 [otis 2021-02-14]
	Added devel/libunit version 1.22.0 [otis 2021-02-14]
	Updated security/ruby-rex-exploitation to 0.1.27 [taca 2021-02-14]
	Updated devel/ruby-mixlib-shellout to 3.2.5 [taca 2021-02-14]
	Updated textproc/ruby-kramdown-rfc2629 to 1.3.31 [taca 2021-02-14]
	Updated www/ruby-puma to 5.2.1 [taca 2021-02-14]
	Added devel/ruby-activesupport61 version 6.1.2.1 [taca 2021-02-14]
	Added devel/ruby-activemodel61 version 6.1.2.1 [taca 2021-02-14]
	Added devel/ruby-activejob61 version 6.1.2.1 [taca 2021-02-14]
	Added www/ruby-actionview61 version 6.1.2.1 [taca 2021-02-14]
	Added www/ruby-actionpack61 version 6.1.2.1 [taca 2021-02-14]
	Added databases/ruby-activerecord61 version 6.1.2.1 [taca 2021-02-14]
	Added mail/ruby-actionmailer61 version 6.1.2.1 [taca 2021-02-14]
	Added mail/ruby-actionmailbox61 version 6.1.2.1 [taca 2021-02-14]
	Added www/ruby-actioncable61 version 6.1.2.1 [taca 2021-02-14]
	Added devel/ruby-railties61 version 6.1.2.1 [taca 2021-02-14]
	Added devel/ruby-activestorage61 version 6.1.2.1 [taca 2021-02-14]
	Added textproc/ruby-actiontext61 version 6.1.2.1 [taca 2021-02-14]
	Added www/ruby-rails61 version 6.1.2.1 [taca 2021-02-14]
	Updated editors/kibi to 0.2.2 [pin 2021-02-14]
	Added lang/ruby30-base version 3.0.0 [taca 2021-02-14]
	Added databases/ruby-gdbm version 3.0.0 [taca 2021-02-14]
	Added devel/ruby-fiddle version 3.0.0 [taca 2021-02-14]
	Added devel/ruby-readline version 3.0.0 [taca 2021-02-14]
	Added lang/ruby30 version 3.0.0 [taca 2021-02-14]
	Added lang/ruby version 3.0.0nb1 [taca 2021-02-14]
	Added textproc/ruby-rexml version 3.2.4 [taca 2021-02-14]
	Updated textproc/ruby-ferret to 0.11.8.7nb1 [taca 2021-02-14]
	Updated sysutils/ruby-facter to 4.0.51 [taca 2021-02-14]
	Updated devel/libuv to 1.41.0 [adam 2021-02-14]
	Updated lang/py-py3c to 1.3 [adam 2021-02-14]
	Updated devel/subversion to 1.14.1 [adam 2021-02-14]
	Updated textproc/py-xmlschema to 1.5.1 [adam 2021-02-14]
	Updated sysutils/puppet to 7.4.0 [taca 2021-02-14]
	Updated mail/milter-manager to 2.1.5 [taca 2021-02-14]
	Updated devel/msgpack to 3.3.0 [adam 2021-02-14]
	Updated textproc/py-phonenumbers to 8.12.18 [adam 2021-02-14]
	Updated net/gallery-dl to 1.16.5 [leot 2021-02-14]
	Updated graphics/tex-mcf2graph to 4.57 [markd 2021-02-14]
	Updated graphics/tex-mcf2graph-doc to 4.57 [markd 2021-02-14]
	Updated print/tex-babel-albanian to 1.0d [markd 2021-02-14]
	Updated print/tex-babel-dutch to 3.8j [markd 2021-02-14]
	Updated print/tex-babel-french to 3.5l [markd 2021-02-14]
	Updated print/tex-babel-german to 2.12 [markd 2021-02-14]
	Updated print/tex-babel-greek to 1.10 [markd 2021-02-14]
	Updated print/tex-babel-italian to 1.4.04 [markd 2021-02-14]
	Updated print/tex-babel-russian to 1.3m [markd 2021-02-14]
	Added print/tex-babel-belarusian version 1.5 [markd 2021-02-14]
	Added print/tex-babel-japanese version 2020 [markd 2021-02-14]
	Added print/tex-babel-ukrainian version 1.4e [markd 2021-02-14]
	Updated sysutils/broot to 1.2.4 [pin 2021-02-14]
	Added net/ncgopher version 0.2.0 [pin 2021-02-14]
	Updated print/tex-biblatex to 3.16 [markd 2021-02-14]
	Updated print/tex-biblatex-doc to 3.16 [markd 2021-02-14]
	Updated print/p5-biblatex-biber to 2.16 [markd 2021-02-14]
	Updated print/tex-biblatex-apa to 9.14 [markd 2021-02-14]
	Updated print/tex-biblatex-apa-doc to 9.14 [markd 2021-02-14]
	Updated print/tex-biblatex-ieee to 1.3d [markd 2021-02-14]
	Updated print/tex-biblatex-ieee-doc to 1.3d [markd 2021-02-14]
	Updated print/tex-biblatex-nature to 1.3d [markd 2021-02-14]
	Updated print/tex-biblatex-nature-doc to 1.3d [markd 2021-02-14]
	Updated security/pleaser to 0.3.22 [pin 2021-02-14]
	Updated print/tex-chessboard to 1.9 [markd 2021-02-14]
	Updated print/tex-chessboard-doc to 1.9 [markd 2021-02-14]
	Updated print/tex-elsarticle to 3.3 [markd 2021-02-15]
	Updated print/tex-elsarticle-doc to 3.3 [markd 2021-02-15]
	Updated print/tex-hausarbeit-jura to 2.1.0 [markd 2021-02-15]
	Updated print/tex-hausarbeit-jura-doc to 2.1.0 [markd 2021-02-15]
	Updated devel/tex-lualibs to 2.73 [markd 2021-02-15]
	Updated devel/tex-lualibs-doc to 2.73 [markd 2021-02-15]
	Updated fonts/tex-luaotfload to 3.17 [markd 2021-02-15]
	Updated fonts/tex-luaotfload-doc to 3.17 [markd 2021-02-15]
	Updated print/tex-revtex to 4.2e [markd 2021-02-15]
	Updated print/tex-revtex-doc to 4.2e [markd 2021-02-15]
	Updated print/tex-revtex4 to 4.0a [markd 2021-02-15]
	Updated print/tex-revtex4-doc to 4.0a [markd 2021-02-15]
	Updated print/tex-toptesi to 6.4.06 [markd 2021-02-15]
	Updated print/tex-toptesi-doc to 6.4.06 [markd 2021-02-15]
	Updated graphics/tex-graphics-pln to 2020.56823 [markd 2021-02-15]
	Updated graphics/tex-graphics-pln-doc to 2020.56823 [markd 2021-02-15]
	Updated print/tex-tex4ht to 2020.57704 [markd 2021-02-15]
	Updated print/tex-tex4ht-doc to 2020.57704 [markd 2021-02-15]
	Updated print/tex-texinfo to 5.1.57466 [markd 2021-02-15]
	Updated print/tex-tracklang to 1.5 [markd 2021-02-15]
	Updated print/tex-tracklang-doc to 1.5 [markd 2021-02-15]
	Updated print/tex-ebproof to 2.1.1 [markd 2021-02-15]
	Updated print/tex-ebproof-doc to 2.1.1 [markd 2021-02-15]
	Updated print/tex-soul to 2.4.56495 [markd 2021-02-15]
	Updated print/tex-soul-doc to 2.4.56495 [markd 2021-02-15]
	Updated print/tex-cweb to 3.70.57710 [markd 2021-02-15]
	Updated print/tex-cweb-doc to 3.70.57710 [markd 2021-02-15]
	Updated textproc/tex-latexdiff to 1.3.1.1 [markd 2021-02-15]
	Updated textproc/tex-latexdiff-doc to 1.3.1.1 [markd 2021-02-15]
	Updated print/tex-make4ht to 0.3f [markd 2021-02-15]
	Updated print/tex-make4ht-doc to 0.3f [markd 2021-02-15]
	Updated graphics/tex-pdfcrop to 1.40 [markd 2021-02-15]
	Updated graphics/tex-pdfcrop-doc to 1.40 [markd 2021-02-15]
	Updated print/tex-tex4ebook to 0.3c [markd 2021-02-15]
	Updated print/tex-tex4ebook-doc to 0.3c [markd 2021-02-15]
	Updated print/tex-texdoc to 3.2.2 [markd 2021-02-15]
	Updated print/tex-texdoc-doc to 3.2.2 [markd 2021-02-15]
	Updated textproc/tex-xindy to 2.5.1.55330 [markd 2021-02-15]
	Updated textproc/tex-xindy-doc to 2.5.1.55330 [markd 2021-02-15]
	Updated print/tex-context-filter to 2020.55718 [markd 2021-02-15]
	Updated print/tex-context-filter-doc to 2020.55718 [markd 2021-02-15]
	Updated print/tex-context-letter to 2020.56073 [markd 2021-02-15]
	Updated print/tex-context-letter-doc to 2020.56073 [markd 2021-02-15]
	Updated print/tex-context-vim to 2020.56356 [markd 2021-02-15]
	Updated print/tex-context-vim-doc to 2020.56356 [markd 2021-02-15]
	Updated sysutils/psftools to 1.1.1 [fcambus 2021-02-15]
	Updated graphics/ansilove to 4.1.5 [fcambus 2021-02-15]
	Updated lang/nodejs10 to 10.23.3 [adam 2021-02-15]
	Updated lang/nodejs12 to 12.20.2 [adam 2021-02-15]
	Updated graphics/tex-auto-pst-pdf to 0.7 [markd 2021-02-15]
	Updated graphics/tex-auto-pst-pdf-doc to 0.7 [markd 2021-02-15]
	Updated graphics/tex-pst-3dplot to 2.06 [markd 2021-02-15]
	Updated graphics/tex-pst-3dplot-doc to 2.06 [markd 2021-02-15]
	Updated graphics/tex-pst-circ to 2.17 [markd 2021-02-15]
	Updated graphics/tex-pst-circ-doc to 2.17 [markd 2021-02-15]
	Updated graphics/tex-pst-pdf to 1.2f [markd 2021-02-15]
	Updated graphics/tex-pst-pdf-doc to 1.2f [markd 2021-02-15]
	Updated graphics/tex-pstricks to 3.01 [markd 2021-02-15]
	Updated graphics/tex-pstricks-doc to 3.01 [markd 2021-02-15]
	Updated www/logswan to 2.1.9 [fcambus 2021-02-15]
	Updated www/php-nextcloud to 20.0.7 [ryoon 2021-02-15]
	Updated www/logswan to 2.1.10 [fcambus 2021-02-15]
	Updated sysutils/cvsreport to 0.3.5nb9 [chris 2021-02-15]
	Updated inputmethod/mozc-server to 2.26.4282.100 [ryoon 2021-02-15]
	Updated inputmethod/mozc-renderer to 2.26.4282.100 [ryoon 2021-02-15]
	Updated inputmethod/mozc-tool to 2.26.4282.100 [ryoon 2021-02-15]
	Updated inputmethod/ibus-mozc to 2.26.4282.100 [ryoon 2021-02-15]
	Updated inputmethod/mozc-elisp to 2.26.4282.100 [ryoon 2021-02-15]
	Updated devel/gyp to 0.1pre20200512.caa60026e223fc501e8b337fd5086ece4028b1c6 [ryoon 2021-02-15]
	Added x11/xcb-imdkit version 1.0.2 [ryoon 2021-02-15]
	Updated math/bc-gh to 3.2.7 [gdt 2021-02-15]
	Updated databases/postgresql95 to 9.5.25 [adam 2021-02-15]
	Updated databases/postgresql96 to 9.6.21 [adam 2021-02-15]
	Updated databases/postgresql10 to 10.16 [adam 2021-02-15]
	Updated databases/postgresql11 to 11.11 [adam 2021-02-15]
	Updated databases/postgresql12 to 12.6 [adam 2021-02-15]
	Updated databases/postgresql13 to 13.2 [adam 2021-02-15]
	Updated net/tor to 0.4.5.6 [wiz 2021-02-15]
	Updated devel/cmake to 3.19.5 [adam 2021-02-15]
	Updated devel/py-uvloop to 0.15.1 [adam 2021-02-15]
	Updated misc/py-immutables to 0.15 [adam 2021-02-15]
	Updated graphics/libwebp to 1.2.0 [adam 2021-02-15]
	Updated emulators/qemu to 5.1.0nb12 [reinoud 2021-02-15]
	Updated chat/bitlbee-facebook to 1.2.2 [nia 2021-02-16]
	Updated net/get_iplayer to 3.27 [nia 2021-02-16]
	Updated graphics/glew to 2.2.0 [nia 2021-02-16]
	Updated devel/rudiments to 1.3.1 [adam 2021-02-16]
	Updated databases/sqlrelay to 1.8.0 [adam 2021-02-16]
	Removed lang/nodejs8 [adam 2021-02-16]
	Updated devel/skalibs to 2.10.0.2 [schmonz 2021-02-16]
	Updated lang/execline to 2.8.0.0 [schmonz 2021-02-16]
	Updated sysutils/s6 to 2.10.0.2 [schmonz 2021-02-16]
	Updated net/s6-networking to 2.4.1.0 [schmonz 2021-02-16]
	Added devel/wabt version 1.0.20 [fcambus 2021-02-16]
	Updated fonts/unifont to 13.0.06 [fcambus 2021-02-16]
	Updated security/py-rsa to 4.7.1 [adam 2021-02-16]
	Updated devel/py-atpublic to 2.1.3 [adam 2021-02-16]
	Updated www/py-sanic to 20.12.2 [adam 2021-02-16]
	Updated security/py-google-auth to 1.26.1 [adam 2021-02-16]
	Updated security/pcsc-lite to 1.9.1 [gdt 2021-02-16]
	Updated lang/python36 to 3.6.13 [adam 2021-02-16]
	Updated lang/python37 to 3.7.10 [adam 2021-02-16]
	Updated lang/py36-html-docs to 3.6.13 [adam 2021-02-16]
	Updated lang/py37-html-docs to 3.7.10 [adam 2021-02-16]
	Updated devel/py-cffi to 1.14.5 [adam 2021-02-16]
	Updated devel/py-configargparse to 1.3 [adam 2021-02-16]
	Updated devel/py-txaio to 20.12.1 [adam 2021-02-16]
	Updated textproc/py-dominate to 2.6.0 [adam 2021-02-16]
	Updated sysutils/intel-microcode-netbsd to 20210216 [msaitoh 2021-02-17]
	Updated lang/go116 to 1.16 [bsiegert 2021-02-17]
	Updated devel/py-dulwich to 0.20.19 [adam 2021-02-17]
	Updated net/py-dropbox to 11.2.0 [adam 2021-02-17]
	Removed security/py-ezPyCrypto [adam 2021-02-17]
	Removed databases/py-elixir [adam 2021-02-17]
	Removed www/py-cherrypy17 [adam 2021-02-17]
	Removed www/py-gdata [adam 2021-02-17]
	Added comms/tio version 1.32 [fcambus 2021-02-17]
	Added devel/binaryen version 99 [fcambus 2021-02-17]
	Updated graphics/glew to 2.2.0nb1 [wiz 2021-02-17]
	Updated mail/isync to 1.4.0 [ryoon 2021-02-17]
	Added inputmethod/fcitx5 version 5.0.4 [ryoon 2021-02-17]
	Added inputmethod/fcitx5-configtool version 5.0.2 [ryoon 2021-02-17]
	Added inputmethod/fcitx5-gtk version 5.0.3 [ryoon 2021-02-17]
	Added inputmethod/fcitx5-qt version 5.0.2 [ryoon 2021-02-17]
	Added inputmethod/fcitx5-skk version 5.0.3 [ryoon 2021-02-17]
	Added inputmethod/fcitx5-mozc version 2.26.4276.100 [ryoon 2021-02-17]
	Updated security/py-cryptodome to 3.10.1 [adam 2021-02-17]
	Updated www/py-django-extensions to 3.1.1 [adam 2021-02-17]
	Updated math/bc-gh to 3.3.0 [gdt 2021-02-17]
	Updated sysutils/s6 to 2.10.0.2nb1 [schmonz 2021-02-17]
	Updated net/djbdnscurve6 to 37 [schmonz 2021-02-17]
	Updated net/bind916 to 9.16.12 [wiz 2021-02-17]
	Updated net/bind911 to 9.11.28 [wiz 2021-02-17]
	Updated net/tor to 0.4.5.6nb1 [wiz 2021-02-17]
	Updated devel/gopls to 0.6.5 [wiz 2021-02-18]
	Updated math/djbsort to 20190516 [schmonz 2021-02-18]
	Updated graphics/ImageMagick to 7.0.11.0 [wiz 2021-02-18]
	Updated textproc/asciidoc to 9.1.0 [wiz 2021-02-18]
	Updated fonts/cascadia-ttf to 2102.03 [wiz 2021-02-18]
	Updated math/libnumbertext to 1.0.7 [wiz 2021-02-18]
	Updated textproc/libstemmer to 2.1.0 [wiz 2021-02-18]
	Updated devel/py-hypothesis to 6.2.0 [wiz 2021-02-18]
	Updated archivers/gtar to 1.34 [wiz 2021-02-18]
	Updated security/libgcrypt to 1.9.2 [adam 2021-02-18]
	Updated security/nettle to 3.7.1 [adam 2021-02-18]
	Updated sysutils/py-magic to 0.4.22 [adam 2021-02-18]
	Updated net/py-xandikos to 0.2.4 [adam 2021-02-18]
	Updated converters/py-zfec to 1.5.5 [adam 2021-02-18]
	Updated net/py-python-socks to 1.2.1 [adam 2021-02-18]
	Updated sysutils/u-boot-pico-pi-imx7d to 2018.11 [martin 2021-02-18]
	Updated net/dhcpcd to 9.4.0 [nia 2021-02-18]
	Updated graphics/drawing to 0.6.5 [nia 2021-02-18]
	Updated textproc/inih to 53 [nia 2021-02-18]
	Updated lang/janet to 1.15.2 [nia 2021-02-18]
	Updated databases/kyotocabinet to 1.2.79 [nia 2021-02-18]
	Updated audio/exaile to 4.1.0 [nia 2021-02-18]
	Updated devel/libebml to 1.4.2 [adam 2021-02-18]
	Updated multimedia/libmatroska to 1.6.3 [adam 2021-02-18]
	Removed emulators/z26 successor emulators/stella [nia 2021-02-18]
	Updated graphics/tex-chemfig to 1.56 [markd 2021-02-18]
	Updated graphics/tex-chemfig-doc to 1.56 [markd 2021-02-18]
	Updated graphics/tex-circuitikz to 1.3.0 [markd 2021-02-18]
	Updated graphics/tex-circuitikz-doc to 1.3.0 [markd 2021-02-18]
	Updated print/tex-pgf to 3.1.8b [markd 2021-02-18]
	Updated print/tex-pgf-doc to 3.1.8b [markd 2021-02-18]
	Updated print/tex-pict2e to 0.4b [markd 2021-02-18]
	Updated print/tex-pict2e-doc to 0.4b [markd 2021-02-18]
	Updated devel/py-uvloop to 0.15.2 [adam 2021-02-19]
	Updated devel/py-pkgconfig to 1.5.2 [adam 2021-02-19]
	Updated devel/protobuf to 3.15.0 [adam 2021-02-19]
	Updated devel/py-protobuf to 3.15.0 [adam 2021-02-19]
	Updated sysutils/sfm to 0.4.0 [pin 2021-02-19]
	Updated geography/libmaxminddb to 1.5.2 [fcambus 2021-02-19]
	Updated mail/notmuch to 0.31.4 [ryoon 2021-02-19]
	Updated print/tex-musixtex to 1.31 [markd 2021-02-19]
	Updated print/tex-musixtex-doc to 1.31 [markd 2021-02-19]
	Updated fonts/tex-academicons to 1.9.0 [markd 2021-02-20]
	Updated fonts/tex-academicons-doc to 1.9.0 [markd 2021-02-20]
	Updated fonts/tex-baskervaldx to 1.076 [markd 2021-02-20]
	Updated fonts/tex-baskervaldx-doc to 1.076 [markd 2021-02-20]
	Updated fonts/tex-cabin to 2020.55907 [markd 2021-02-20]
	Updated fonts/tex-cabin-doc to 2020.55907 [markd 2021-02-20]
	Updated fonts/tex-erewhon to 1.113 [markd 2021-02-20]
	Updated fonts/tex-erewhon-doc to 1.113 [markd 2021-02-20]
	Updated fonts/tex-fbb to 1.16 [markd 2021-02-20]
	Updated fonts/tex-fbb-doc to 1.16 [markd 2021-02-20]
	Updated fonts/tex-fira to 4.3.55437 [markd 2021-02-20]
	Updated fonts/tex-fira-doc to 4.3.55437 [markd 2021-02-20]
	Updated fonts/tex-librebaskerville to 2020 [markd 2021-02-20]
	Updated fonts/tex-librebaskerville-doc to 2020 [markd 2021-02-20]
	Updated fonts/tex-librecaslon to 2020.56003 [markd 2021-02-20]
	Updated fonts/tex-librecaslon-doc to 2020.56003 [markd 2021-02-20]
	Updated fonts/tex-lobster2 to 2020 [markd 2021-02-20]
	Updated fonts/tex-lobster2-doc to 2020 [markd 2021-02-20]
	Updated fonts/tex-merriweather to 2020.56365 [markd 2021-02-20]
	Updated fonts/tex-merriweather-doc to 2020.56365 [markd 2021-02-20]
	Updated fonts/tex-newpx to 1.414 [markd 2021-02-20]
	Updated fonts/tex-newpx-doc to 1.414 [markd 2021-02-20]
	Updated fonts/tex-newtx to 1.640 [markd 2021-02-20]
	Updated fonts/tex-newtx-doc to 1.640 [markd 2021-02-20]
	Updated fonts/tex-newtxsf to 1.053 [markd 2021-02-20]
	Updated fonts/tex-newtxsf-doc to 1.053 [markd 2021-02-20]
	Updated fonts/tex-oldstandard to 2.6 [markd 2021-02-20]
	Updated fonts/tex-oldstandard-doc to 2.6 [markd 2021-02-20]
	Updated fonts/tex-overlock to 2020.56079 [markd 2021-02-20]
	Updated fonts/tex-overlock-doc to 2020.56079 [markd 2021-02-20]
	Updated fonts/tex-playfair to 2020.56005 [markd 2021-02-20]
	Updated fonts/tex-playfair-doc to 2020.56005 [markd 2021-02-20]
	Updated fonts/tex-quattrocento to 2020.56020 [markd 2021-02-20]
	Updated fonts/tex-quattrocento-doc to 2020.56020 [markd 2021-02-20]
	Updated fonts/tex-xcharter to 1.213 [markd 2021-02-20]
	Updated fonts/tex-xcharter-doc to 1.213 [markd 2021-02-20]
	Updated fonts/tex-xits to 1.302 [markd 2021-02-20]
	Updated fonts/tex-xits-doc to 1.302 [markd 2021-02-20]
	Updated pkgtools/texlive2pkg to 1.9 [markd 2021-02-20]
	Updated converters/bdf2psf to 1.201 [fcambus 2021-02-20]
	Updated security/openssl to 1.1.1j [wiz 2021-02-20]
	Updated net/tor to 0.4.5.6nb2 [wiz 2021-02-20]
	Updated print/tex-2up to 1.3a [markd 2021-02-20]
	Updated print/tex-2up-doc to 1.3a [markd 2021-02-20]
	Updated print/tex-adjustbox to 1.3 [markd 2021-02-20]
	Updated print/tex-adjustbox-doc to 1.3 [markd 2021-02-20]
	Updated graphics/tex-animate to 20201007 [markd 2021-02-20]
	Updated graphics/tex-animate-doc to 20201007 [markd 2021-02-20]
	Updated print/tex-atenddvi to 1.5 [markd 2021-02-20]
	Updated print/tex-atenddvi-doc to 1.5 [markd 2021-02-20]
	Updated print/tex-beamertheme-focus to 2.8.1 [markd 2021-02-20]
	Updated print/tex-changes to 4.0.1 [markd 2021-02-20]
	Updated print/tex-changes-doc to 4.0.1 [markd 2021-02-20]
	Updated print/tex-classpack to 1.19 [markd 2021-02-20]
	Updated print/tex-classpack-doc to 1.19 [markd 2021-02-20]
	Updated print/tex-csquotes to 5.2k [markd 2021-02-20]
	Updated time/tex-datetime2-french to 1.03 [markd 2021-02-20]
	Updated time/tex-datetime2-romanian to 1.02 [markd 2021-02-20]
	Updated devel/tex-doclicense to 2.2.1 [markd 2021-02-20]
	Updated devel/tex-doclicense-doc to 2.2.1 [markd 2021-02-20]
	Updated print/tex-draftwatermark to 3.0 [markd 2021-02-20]
	Updated print/tex-draftwatermark-doc to 3.0 [markd 2021-02-20]
	Updated print/tex-enotez to 0.10c [markd 2021-02-20]
	Updated print/tex-enotez-doc to 0.10c [markd 2021-02-20]
	Updated print/tex-etoc to 1.09c [markd 2021-02-20]
	Updated print/tex-etoc-doc to 1.09c [markd 2021-02-20]
	Updated print/tex-everypage to 2.0b [markd 2021-02-20]
	Updated print/tex-everypage-doc to 2.0b [markd 2021-02-20]
	Updated print/tex-fontaxes to 1.0e [markd 2021-02-20]
	Updated print/tex-fontaxes-doc to 1.0e [markd 2021-02-20]
	Updated print/tex-latex-base-dev to 20210501pre1 [markd 2021-02-20]
	Updated print/tex-latex-base-dev-doc to 20210501pre1 [markd 2021-02-20]
	Updated print/tex-leaflet to 2.1a [markd 2021-02-20]
	Updated print/tex-leaflet-doc to 2.1a [markd 2021-02-20]
	Updated print/tex-localloc to 1.1b.56496 [markd 2021-02-20]
	Updated print/tex-localloc-doc to 1.1b.56496 [markd 2021-02-20]
	Updated print/tex-media9 to 1.14 [markd 2021-02-20]
	Updated print/tex-media9-doc to 1.14 [markd 2021-02-20]
	Updated print/tex-moderncv to 2.1.0 [markd 2021-02-20]
	Updated print/tex-moderncv-doc to 2.1.0 [markd 2021-02-20]
	Updated print/tex-multirow to 2.7 [markd 2021-02-20]
	Updated print/tex-multirow-doc to 2.7 [markd 2021-02-20]
	Updated print/tex-nomencl to 5.5 [markd 2021-02-20]
	Updated print/tex-nomencl-doc to 5.5 [markd 2021-02-20]
	Updated print/tex-ocgx2 to 0.50 [markd 2021-02-20]
	Updated print/tex-ocgx2-doc to 0.50 [markd 2021-02-20]
	Updated print/tex-polytable to 0.8.6 [markd 2021-02-20]
	Updated print/tex-polytable-doc to 0.8.6 [markd 2021-02-20]
	Updated print/tex-preview to 12.3 [markd 2021-02-20]
	Updated print/tex-preview-doc to 12.3 [markd 2021-02-20]
	Updated print/tex-snapshot to 2.14 [markd 2021-02-20]
	Updated print/tex-snapshot-doc to 2.14 [markd 2021-02-20]
	Updated print/tex-stringstrings to 1.24 [markd 2021-02-20]
	Updated print/tex-stringstrings-doc to 1.24 [markd 2021-02-20]
	Updated print/tex-sttools to 2.1 [markd 2021-02-20]
	Updated print/tex-sttools-doc to 2.1 [markd 2021-02-20]
	Updated print/tex-subfiles to 2.2 [markd 2021-02-20]
	Updated print/tex-subfiles-doc to 2.2 [markd 2021-02-20]
	Updated print/tex-tcolorbox to 4.42 [markd 2021-02-20]
	Updated print/tex-tcolorbox-doc to 4.42 [markd 2021-02-20]
	Updated print/tex-textpos to 1.10 [markd 2021-02-20]
	Updated print/tex-textpos-doc to 1.10 [markd 2021-02-20]
	Updated print/tex-thmtools to 72 [markd 2021-02-20]
	Updated print/tex-thmtools-doc to 72 [markd 2021-02-20]
	Updated print/tex-todonotes to 1.1.3 [markd 2021-02-20]
	Updated print/tex-todonotes-doc to 1.1.3 [markd 2021-02-20]
	Updated print/tex-translations to 1.10a [markd 2021-02-20]
	Updated print/tex-translations-doc to 1.10a [markd 2021-02-20]
	Updated print/tex-zref to 2.32 [markd 2021-02-20]
	Updated print/tex-zref-doc to 2.32 [markd 2021-02-20]
	Updated textproc/libpinyin to 2.6.0 [ryoon 2021-02-20]
	Updated databases/leveldb to 1.22nb1 [ryoon 2021-02-20]
	Updated converters/opencc to 1.1.1 [ryoon 2021-02-20]
	Updated lang/python38 to 3.8.8 [adam 2021-02-20]
	Updated lang/python39 to 3.9.2 [adam 2021-02-20]
	Updated lang/py38-html-docs to 3.8.8 [adam 2021-02-20]
	Updated lang/py39-html-docs to 3.9.2 [adam 2021-02-20]
	Updated devel/protobuf to 3.15.1 [adam 2021-02-20]
	Updated devel/py-protobuf to 3.15.1 [adam 2021-02-20]
	Updated devel/google-glog to 0.4.0 [ryoon 2021-02-20]
	Updated inputmethod/librime to 1.7.2 [ryoon 2021-02-20]
	Added meta-pkgs/rime-data version 0.0.1 [ryoon 2021-02-20]
	Added inputmethod/rime-prelude version 0.0.0.20210208 [ryoon 2021-02-20]
	Added inputmethod/rime-bopomofo version 0.0.0.20210201 [ryoon 2021-02-20]
	Added inputmethod/rime-cangjie version 0.0.0.20201030 [ryoon 2021-02-20]
	Added inputmethod/rime-terra-pinyin version 0.0.0.20210201 [ryoon 2021-02-20]
	Added inputmethod/rime-luna-pinyin version 0.0.0.20210131 [ryoon 2021-02-20]
	Updated inputmethod/ibus-rime to 1.5.0 [ryoon 2021-02-20]
	Removed inputmethod/brise [ryoon 2021-02-20]
	Added inputmethod/fcitx5-rime version 5.0.4 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-anthy version 5.0.2 [ryoon 2021-02-20]
	Updated inputmethod/libchewing to 0.5.1 [ryoon 2021-02-20]
	Updated inputmethod/ibus-chewing to 1.5.1 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-chewing version 5.0.3 [ryoon 2021-02-20]
	Added inputmethod/libime version 1.0.3 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-chinese-addons version 5.0.3 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-hangul version 5.0.2 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-lua version 5.0.2 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-libthai version 5.0.2 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-m17n version 5.0.3 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-sayura version 5.0.2 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-table-extra version 5.0.2 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-table-other version 5.0.3 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-unikey version 5.0.3 [ryoon 2021-02-20]
	Added inputmethod/fcitx5-zhuyin version 5.0.3 [ryoon 2021-02-20]
	Added devel/capnproto version 0.8.0 [ryoon 2021-02-20]
	Added emulators/qemu51 version 5.1.0nb13 [ryoon 2021-02-20]
	Updated emulators/qemu to 5.2.0 [ryoon 2021-02-20]
	Updated fonts/tex-baekmuk to 2.2.1 [markd 2021-02-21]
	Updated fonts/tex-baekmuk-doc to 2.2.1 [markd 2021-02-21]
	Updated fonts/tex-haranoaji to 20210130 [markd 2021-02-21]
	Updated fonts/tex-haranoaji-doc to 20210130 [markd 2021-02-21]
	Updated fonts/tex-japanese-otf to 1.7b8.56938 [markd 2021-02-21]
	Updated fonts/tex-japanese-otf-doc to 1.7b8.56938 [markd 2021-02-21]
	Updated print/tex-jsclasses to 2020.56608 [markd 2021-02-21]
	Updated print/tex-platex to 2020.57730 [markd 2021-02-21]
	Updated print/tex-platex-doc to 2020.57730 [markd 2021-02-21]
	Updated print/tex-ptex-base to 2020.56487 [markd 2021-02-21]
	Updated print/tex-ptex-base-doc to 2020.56487 [markd 2021-02-21]
	Updated fonts/tex-ptex-fontmaps to 20201227.0 [markd 2021-02-21]
	Updated fonts/tex-ptex-fontmaps-doc to 20201227.0 [markd 2021-02-21]
	Updated security/opendnssec2 to 2.1.8 [he 2021-02-21]
	Added textproc/upmendex version 0.54 [markd 2021-02-21]
	Added fonts/makejvf version 1.1a [markd 2021-02-21]
	Added fonts/tex-ascmac version 2.1 [markd 2021-02-21]
	Added fonts/tex-ascmac-doc version 2.1 [markd 2021-02-21]
	Added fonts/tex-bxjatoucs version 0.2 [markd 2021-02-21]
	Added fonts/tex-bxjatoucs-doc version 0.2 [markd 2021-02-21]
	Added fonts/tex-haranoaji-extra version 20210130 [markd 2021-02-21]
	Added fonts/tex-haranoaji-extra-doc version 20210130 [markd 2021-02-21]
	Added fonts/tex-japanese-otf-uptex version 0.26 [markd 2021-02-21]
	Added fonts/tex-japanese-otf-uptex-doc version 0.26 [markd 2021-02-21]
	Added fonts/tex-jlreq-deluxe version 0.3.2 [markd 2021-02-21]
	Added fonts/tex-jlreq-deluxe-doc version 0.3.2 [markd 2021-02-21]
	Added fonts/tex-morisawa version 2020 [markd 2021-02-21]
	Added fonts/tex-morisawa-doc version 2020 [markd 2021-02-21]
	Added fonts/tex-pxchfon version 1.7e [markd 2021-02-21]
	Added fonts/tex-pxchfon-doc version 1.7e [markd 2021-02-21]
	Added fonts/tex-pxjodel version 0.3 [markd 2021-02-21]
	Added fonts/tex-pxjodel-doc version 0.3 [markd 2021-02-21]
	Added fonts/tex-pxufont version 0.6 [markd 2021-02-21]
	Added fonts/tex-pxufont-doc version 0.6 [markd 2021-02-21]
	Added fonts/tex-uptex-fonts version 2020 [markd 2021-02-21]
	Added fonts/tex-uptex-fonts-doc version 2020 [markd 2021-02-21]
	Added time/tex-bxjaholiday version 1.1.0 [markd 2021-02-21]
	Added time/tex-bxjaholiday-doc version 1.1.0 [markd 2021-02-21]
	Added time/tex-bxwareki version 0.6 [markd 2021-02-21]
	Added time/tex-bxwareki-doc version 0.6 [markd 2021-02-21]
	Added print/tex-bxbase version 1.2 [markd 2021-02-21]
	Added print/tex-bxbase-doc version 1.2 [markd 2021-02-21]
	Added print/tex-bxcjkjatype version 0.3 [markd 2021-02-21]
	Added print/tex-bxcjkjatype-doc version 0.3 [markd 2021-02-21]
	Added print/tex-bxghost version 0.3.0 [markd 2021-02-21]
	Added print/tex-bxghost-doc version 0.3.0 [markd 2021-02-21]
	Added print/tex-bxjalipsum version 0.3a [markd 2021-02-21]
	Added print/tex-bxjalipsum-doc version 0.3a [markd 2021-02-21]
	Added print/tex-bxjaprnind version 0.3b [markd 2021-02-21]
	Added print/tex-bxjaprnind-doc version 0.3b [markd 2021-02-21]
	Added print/tex-bxjscls version 2.5 [markd 2021-02-21]
	Added print/tex-bxjscls-doc version 2.5 [markd 2021-02-21]
	Added print/tex-bxorigcapt version 0.3 [markd 2021-02-21]
	Added print/tex-bxorigcapt-doc version 0.3 [markd 2021-02-21]
	Added print/tex-convbkmk version 0.30 [markd 2021-02-21]
	Added print/tex-convbkmk-doc version 0.30 [markd 2021-02-21]
	Added print/tex-endnotesj version 3.0 [markd 2021-02-21]
	Added print/tex-endnotesj-doc version 3.0 [markd 2021-02-21]
	Added print/tex-gentombow version 2020 [markd 2021-02-21]
	Added print/tex-gentombow-doc version 2020 [markd 2021-02-21]
	Added print/tex-ifptex version 2.0 [markd 2021-02-21]
	Added print/tex-ifptex-doc version 2.0 [markd 2021-02-21]
	Added print/tex-ifxptex version 0.2 [markd 2021-02-21]
	Added print/tex-ifxptex-doc version 0.2 [markd 2021-02-21]
	Added print/tex-jlreq version 2020 [markd 2021-02-21]
	Added print/tex-jlreq-doc version 2020 [markd 2021-02-21]
	Added print/tex-luatexja version 20210214.0 [markd 2021-02-21]
	Added print/tex-luatexja-doc version 20210214.0 [markd 2021-02-21]
	Added print/tex-platex-tools version 2020 [markd 2021-02-21]
	Added print/tex-platex-tools-doc version 2020 [markd 2021-02-21]
	Added print/tex-plautopatch version 0.9n [markd 2021-02-21]
	Added print/tex-plautopatch-doc version 0.9n [markd 2021-02-21]
	Added print/tex-ptex2pdf version 20200520.0 [markd 2021-02-21]
	Added print/tex-ptex2pdf-doc version 20200520.0 [markd 2021-02-21]
	Added print/tex-pxbase version 1.1b [markd 2021-02-21]
	Added print/tex-pxbase-doc version 1.1b [markd 2021-02-21]
	Added print/tex-pxcjkcat version 1.1 [markd 2021-02-21]
	Added print/tex-pxcjkcat-doc version 1.1 [markd 2021-02-21]
	Added print/tex-pxjahyper version 0.7 [markd 2021-02-21]
	Added print/tex-pxjahyper-doc version 0.7 [markd 2021-02-21]
	Added print/tex-pxrubrica version 1.3c [markd 2021-02-21]
	Added print/tex-pxrubrica-doc version 1.3c [markd 2021-02-21]
	Added print/tex-uptex-base version 2020 [markd 2021-02-21]
	Added print/tex-uptex-base-doc version 2020 [markd 2021-02-21]
	Added print/tex-zxjafbfont version 0.2 [markd 2021-02-21]
	Added print/tex-zxjafbfont-doc version 0.2 [markd 2021-02-21]
	Added print/tex-zxjatype version 0.7 [markd 2021-02-21]
	Added print/tex-zxjatype-doc version 0.7 [markd 2021-02-21]
	Added sysutils/imx_usb_loader version 0.0.0.20210220 [martin 2021-02-21]
	Updated devel/meson to 0.57.1 [adam 2021-02-21]
	Updated devel/glib2 to 2.66.7 [adam 2021-02-21]
	Updated devel/glib2-tools to 2.66.7 [adam 2021-02-21]
	Updated devel/gdbus-codegen to 2.66.7 [adam 2021-02-21]
	Updated devel/py-cython to 0.29.22 [adam 2021-02-21]
	Updated x11/py-pyperclip to 1.8.2 [adam 2021-02-21]
	Updated textproc/lowdown to 0.8.2 [fcambus 2021-02-21]
	Updated multimedia/ffmpeg4 to 4.3.2 [adam 2021-02-21]
	Updated multimedia/ffplay4 to 4.3.2 [adam 2021-02-21]
	Updated x11/gtk3 to 3.24.25 [adam 2021-02-21]
	Updated textproc/py-yaml to 5.4.1 [adam 2021-02-21]
	Updated audio/librespot to 0.1.5 [pin 2021-02-21]
	Updated cad/kicad  to 5.1.9 [bouyer 2021-02-21]
	Updated cad/kicad-doc  to 5.1.9 [bouyer 2021-02-21]
	Updated cad/kicad-footprints  to 5.1.9 [bouyer 2021-02-21]
	Updated cad/kicad-i18n  to 5.1.9 [bouyer 2021-02-21]
	Updated cad/kicad-packages3d  to 5.1.9 [bouyer 2021-02-21]
	Updated cad/kicad-symbols  to 5.1.9 [bouyer 2021-02-21]
	Updated cad/kicad-templates to 5.1.9 [bouyer 2021-02-21]
	Updated devel/py-astroid to 2.5 [adam 2021-02-22]
	Updated devel/py-pylint to 2.7.0 [adam 2021-02-22]
	Updated audio/librespot to 0.1.6 [pin 2021-02-22]
	Updated print/tex-ptex to 3.2pl55920 [markd 2021-02-22]
	Removed print/tex-ptex-doc [markd 2021-02-22]
	Added print/tex-uptex version 2020 [markd 2021-02-22]
	Added print/tex-uptex-doc version 2020 [markd 2021-02-22]
	Added print/tex-uplatex version 2020 [markd 2021-02-22]
	Added print/tex-uplatex-doc version 2020 [markd 2021-02-22]
	Updated meta-pkgs/texlive-collection-langjapanese to 2020 [markd 2021-02-22]
	Updated textproc/py-precis-i18n to 1.0.3 [adam 2021-02-22]
	Updated databases/py-aiosqlite to 0.17.0 [adam 2021-02-22]
	Updated textproc/py-tabulate to 0.8.9 [adam 2021-02-22]
	Updated databases/py-pypika to 0.47.7 [adam 2021-02-22]
	Added archivers/lunzip version 1.12 [fcambus 2021-02-22]
	Updated sysutils/yank to 1.2.0nb1 [wiz 2021-02-22]
	Updated devel/py-jaraco.classes to 3.2.1 [adam 2021-02-23]
	Updated finance/py-stripe to 2.56.0 [adam 2021-02-23]
	Updated security/pleaser to 0.3.23 [pin 2021-02-23]
	Updated math/kalk to 0.3.14 [pin 2021-02-23]
	Updated www/firefox to 86.0 [ryoon 2021-02-23]
	Updated www/firefox-l10n to 86.0 [ryoon 2021-02-23]
	Added print/jpeg-to-pdf version 0.2.1 [pin 2021-02-23]
	Updated x11/xorgproto to 2021.2 [wiz 2021-02-24]
	Updated devel/py-tortoisehg to 5.7 [wiz 2021-02-24]
	Updated devel/protobuf to 3.15.2 [adam 2021-02-24]
	Updated devel/py-protobuf to 3.15.2 [adam 2021-02-24]
	Updated print/jpeg-to-pdf to 0.2.2 [pin 2021-02-24]
	Updated lang/nodejs10 to 10.24.0 [adam 2021-02-24]
	Updated lang/nodejs12 to 12.21.0 [adam 2021-02-24]
	Updated lang/nodejs to 14.16.0 [adam 2021-02-24]
	Updated audio/libebur128 to 1.2.6 [wiz 2021-02-24]
	Updated audio/musicpd to 0.22.6 [wiz 2021-02-24]
	Updated audio/taglib to 1.12 [wiz 2021-02-24]
	Updated databases/mongo-c-driver to 1.17.4 [adam 2021-02-24]
	Updated devel/py-pylint to 2.7.1 [adam 2021-02-24]
	Added textproc/paperoni version 0.3.0 [pin 2021-02-24]
	Updated www/firefox78 to 78.8.0 [nia 2021-02-24]
	Added biology/igv version 2.9.2 [bacon 2021-02-24]
	Updated emulators/mame to 0.229 [wiz 2021-02-24]
	Added x11/nx-libs version 3.5.99.22 [hauke 2021-02-24]
	Added x11/x2go-client version 4.1.2.2 [hauke 2021-02-24]
	Updated net/openvpn to 2.5.1 [adam 2021-02-24]
	Updated security/py-rsa to 4.7.2 [adam 2021-02-24]
	Updated devel/py-rply to 0.7.8 [adam 2021-02-24]
	Added graphics/py-tifffile version 2021.2.1 [markd 2021-02-24]
	Updated math/py-scikit-image to 0.18.1 [markd 2021-02-24]
	Updated print/tex-latex-bin to 2020 [markd 2021-02-24]
	Updated print/tex-latex-bin-doc to 2020 [markd 2021-02-24]
	Updated audio/py-music21 to 6.7.1 [gutteridge 2021-02-24]
	Updated time/p5-DateTime-TimeZone to 2.47 [gutteridge 2021-02-24]
	Updated multimedia/libkcompactdisc to 20.04.1 [markd 2021-02-24]
	Updated multimedia/audiocd-kio to 20.04.1 [markd 2021-02-24]
	Updated x11/xorgproto to 2021.3 [wiz 2021-02-25]
	Updated www/firefox78-l10n to 78.8.0 [nia 2021-02-25]
	Updated net/py-botocore to 1.20.15 [adam 2021-02-25]
	Updated net/py-boto3 to 1.17.15 [adam 2021-02-25]
	Updated net/py-awscli to 1.19.15 [adam 2021-02-25]
	Updated security/py-google-auth to 1.27.0 [adam 2021-02-25]
	Added x11/gtk4 version 4.0.3 [ryoon 2021-02-25]
	Updated inputmethod/fcitx5-gtk to 5.0.3nb1 [ryoon 2021-02-25]
	Updated games/simgear to 2020.3.6 [nia 2021-02-25]
	Updated games/flightgear to 2020.3.6 [nia 2021-02-25]
	Updated sysutils/sfm to 0.4.1 [pin 2021-02-25]
	Updated net/yaydl to 0.3.2 [pin 2021-02-25]
	Updated sysutils/ansible to 2.9.18 [adam 2021-02-25]
	Updated www/py-WebOb to 1.8.7 [adam 2021-02-25]
	Added devel/py-cachelib version 0.1 [khorben 2021-02-25]
	Added devel/py-pylru version 1.2.0 [khorben 2021-02-25]
	Added devel/py-sarge version 0.1.6 [khorben 2021-02-25]
	Added x11/xst version 0.8.4.1 [pin 2021-02-25]
	Updated lang/erlang to 23.2.6 [triaxx 2021-02-25]
	Added devel/py-sentry-sdk version 0.20.3 [khorben 2021-02-25]
	Updated lang/erlang-doc to 23.2nb2 [triaxx 2021-02-25]
	Added print/py-octoprint version 1.5.3 [khorben 2021-02-25]
	Updated emulators/unicorn to 1.0.2 [leot 2021-02-25]
	Updated emulators/py-unicorn to 1.0.2 [leot 2021-02-25]
	Updated devel/php-composer to 2.0.11 [tpaul 2021-02-26]
	Updated devel/cmake to 3.19.6 [adam 2021-02-26]
	Updated www/py-aiohttp to 3.7.4 [adam 2021-02-26]
	Updated net/mosquitto to 2.0.8 [triaxx 2021-02-26]
	Updated www/grafana to 7.4.3 [triaxx 2021-02-26]
	Updated net/rabbitmq to 3.8.12 [adam 2021-02-26]
	Updated www/py-uvicorn to 0.13.4 [adam 2021-02-26]
	Updated mail/roundcube-plugin-carddav to 4.0.4 [triaxx 2021-02-26]
	Updated mail/thunderbird to 78.8.0 [ryoon 2021-02-26]
	Updated mail/thunderbird-l10n to 78.8.0 [ryoon 2021-02-26]
	Updated www/goaccess to 1.4.5 [schmonz 2021-02-26]
	Updated textproc/link-grammar to 5.8.1nb1 [ryoon 2021-02-26]
	Updated inputmethod/mozc-elisp to 2.26.4282.100nb1 [ryoon 2021-02-27]
	Updated inputmethod/mozc-renderer to 2.26.4282.100nb1 [ryoon 2021-02-27]
	Updated inputmethod/mozc-server to 2.26.4282.100nb1 [ryoon 2021-02-27]
	Updated inputmethod/mozc-tool to 2.26.4282.100nb1 [ryoon 2021-02-27]
	Updated inputmethod/ibus-mozc to 2.26.4282.100nb1 [ryoon 2021-02-27]
	Updated inputmethod/fcitx5-mozc to 2.26.4276.100nb1 [ryoon 2021-02-27]
	Updated multimedia/mkvtoolnix to 54.0.0 [adam 2021-02-27]
	Updated sysutils/py-supervisor to 4.2.2 [adam 2021-02-27]
	Updated net/grpc to 1.36.0 [adam 2021-02-27]
	Updated net/py-grpcio to 1.36.0 [adam 2021-02-27]
	Updated net/py-grpcio-testing to 1.36.0 [adam 2021-02-27]
	Updated net/py-grpcio-tools to 1.36.0 [adam 2021-02-27]
	Updated sysutils/sfm to 0.4.2 [pin 2021-02-27]
	Updated inputmethod/ibus-libpinyin to 1.12.0 [ryoon 2021-02-27]
	Updated devel/mob to 1.3.0 [schmonz 2021-02-27]
	Updated net/nsd to 4.3.5 [ryoon 2021-02-27]
	Updated net/knot to 3.0.4 [ryoon 2021-02-27]
	Updated www/php-nextcloud to 21.0.0 [ryoon 2021-02-27]
	Updated editors/nano to 5.6 [schwarz 2021-02-27]
	Updated inputmethod/fcitx5 to 5.0.5 [ryoon 2021-02-27]
	Updated inputmethod/fcitx5-gtk to 5.0.4 [ryoon 2021-02-27]
	Updated inputmethod/fcitx5-qt to 5.0.3 [ryoon 2021-02-27]
	Updated inputmethod/fcitx5-lua to 5.0.3 [ryoon 2021-02-27]
	Updated inputmethod/fcitx5-configtool to 5.0.3 [ryoon 2021-02-27]
	Updated inputmethod/fcitx5-anthy to 5.0.3 [ryoon 2021-02-27]
	Updated inputmethod/fcitx5-chewing to 5.0.4 [ryoon 2021-02-27]
	Updated inputmethod/fcitx5-chinese-addons to 5.0.4 [ryoon 2021-02-27]
	Updated inputmethod/fcitx5-skk to 5.0.4 [ryoon 2021-02-27]
	Updated inputmethod/libime to 1.0.4 [ryoon 2021-02-27]
	Updated net/youtube-dl to 20210222 [leot 2021-02-27]
	Added misc/catpoint version 0.2 [leot 2021-02-27]
	Updated www/wordpress to 5.6.2 [morr 2021-02-28]
	Updated editors/vim-share to 8.2.2557 [morr 2021-02-28]
	Updated devel/hs-tagged to 0.8.6.1 [mef 2021-02-28]
	Added games/abbayedesmorts version 2.0.1 [nia 2021-02-28]
	Added lang/surgescript version 0.5.5 [nia 2021-02-28]
	Updated archivers/ruby-mixlib-archive to 1.1.7 [taca 2021-02-28]
	Updated databases/ruby-awesome_nested_set to 3.4.0 [taca 2021-02-28]
	Updated devel/ruby-minitest to 5.14.4 [taca 2021-02-28]
	Updated devel/ruby-regexp_parser to 2.1.1 [taca 2021-02-28]
	Updated mail/ruby-mime-types-data to 3.2021.0225 [taca 2021-02-28]
	Updated math/ruby-spreadsheet to 1.2.8 [taca 2021-02-28]
	Updated devel/ruby-activesupport61 to 6.1.3 [taca 2021-02-28]
	Updated devel/ruby-activemodel61 to 6.1.3 [taca 2021-02-28]
	Updated devel/ruby-activejob61 to 6.1.3 [taca 2021-02-28]
	Updated www/ruby-actionview61 to 6.1.3 [taca 2021-02-28]
	Updated www/ruby-actionpack61 to 6.1.3 [taca 2021-02-28]
	Updated databases/ruby-activerecord61 to 6.1.3 [taca 2021-02-28]
	Updated devel/ruby-activestorage61 to 6.1.3 [taca 2021-02-28]
	Updated mail/ruby-actionmailer61 to 6.1.3 [taca 2021-02-28]
	Updated mail/ruby-actionmailbox61 to 6.1.3 [taca 2021-02-28]
	Updated www/ruby-actioncable61 to 6.1.3 [taca 2021-02-28]
	Updated devel/ruby-railties61 to 6.1.3 [taca 2021-02-28]
	Updated textproc/ruby-actiontext61 to 6.1.3 [taca 2021-02-28]
	Updated www/ruby-rails61 to 6.1.3 [taca 2021-02-28]
	Updated devel/ruby-redmine-purplemine2-theme to 2.14.0 [taca 2021-02-28]
	Updated devel/ruby-redmine_work_time to 0.4.1 [taca 2021-02-28]
	Added devel/ruby-redmine41 version 4.1.1 [taca 2021-02-28]
	Updated devel/mantis to 2.24.4 [taca 2021-02-28]
	Updated devel/php-xdebug to 3.0.3 [taca 2021-02-28]
	Updated meta-pkgs/bulk-medium to 20210228 [taca 2021-02-28]
	Updated meta-pkgs/bulk-large to 20200228 [taca 2021-02-28]
	Updated security/clamav to 0.103.1 [taca 2021-02-28]
	Updated archivers/py-zstandard to 0.15.2 [adam 2021-02-28]
	Updated www/py-httpx to 0.17.0 [adam 2021-02-28]
	Updated security/pleaser to 0.3.24 [pin 2021-02-28]
	Updated comms/asterisk13 to 13.38.2 [jnemeth 2021-02-28]
	Removed comms/asterisk14 [jnemeth 2021-02-28]
	Updated geography/qgis to 3.16.4 [gdt 2021-03-01]
	Updated geography/gama to 2.14 [gdt 2021-03-01]
	Removed lang/rakudo-star [nia 2021-03-01]
	Updated devel/py-astroid to 2.5.1 [adam 2021-03-01]
	Updated devel/py-pylint to 2.7.2 [adam 2021-03-01]
	Updated www/py-daphne to 3.0.1 [adam 2021-03-01]
	Updated www/py-channels to 3.0.3 [adam 2021-03-01]
	Updated graphics/ivtools to 2.0.4a1 [nia 2021-03-01]
	Updated devel/ogre to 1.12.11 [nia 2021-03-01]
	Updated www/py-django3 to 3.1.7 [adam 2021-03-01]
	Updated www/py-django2 to 2.2.19 [adam 2021-03-01]
	Updated lang/nim to 1.4.4 [ryoon 2021-03-01]
	Updated databases/redis to 6.2.0 [adam 2021-03-01]
	Updated net/rabbitmq to 3.8.13 [adam 2021-03-01]
	Updated net/dbip-asn-lite to 2021.03 [fcambus 2021-03-01]
	Updated net/dbip-city-lite to 2021.03 [fcambus 2021-03-01]
	Updated net/dbip-country-lite to 2021.03 [fcambus 2021-03-01]
	Updated editors/kiro-editor to 0.4.3 [pin 2021-03-01]
	Updated geography/gdal-lib to 3.2.1 [gdt 2021-03-01]
	Updated geography/py-gdal to 3.2.1 [gdt 2021-03-01]
	Updated editors/xfce4-mousepad to 0.5.3 [gutteridge 2021-03-02]
	Updated lang/mawk to 1.3.4.20200120 [gutteridge 2021-03-02]
	Updated x11/xfce4-screenshooter to 1.9.8 [gutteridge 2021-03-02]
	Updated misc/xfce4-time-out-plugin to 1.1.2 [gutteridge 2021-03-02]
	Updated emulators/libspectrum to 1.5.0 [adam 2021-03-02]
	Updated emulators/fuse-emulator to 1.6.0 [adam 2021-03-02]
	Updated databases/redis to 6.2.1 [adam 2021-03-02]
	Updated devel/py-txaio to 21.2.1 [adam 2021-03-02]
	Updated devel/cbindgen to 0.18.0 [ryoon 2021-03-02]
	Updated textproc/lok to 0.1.3 [pin 2021-03-02]
	Added www/lariza version 21.01 [pin 2021-03-02]
	Updated games/rocksndiamonds to 4.2.3.1 [adam 2021-03-03]
	Updated net/rabbitmq to 3.8.14 [adam 2021-03-03]
	Updated www/bozohttpd to 20210227 [mrg 2021-03-03]
	Updated audio/fasttracker2 to 1.44 [fox 2021-03-03]
	Updated lang/mono to 6.12.0.107 [nia 2021-03-03]
	Removed lang/mono6 successor lang/mono [nia 2021-03-03]
	Added finance/rates version 0.2.0 [pin 2021-03-03]
	Updated net/py-python-socks to 1.2.2 [adam 2021-03-03]
	Updated www/py-aiohttp-socks to 0.6.0 [adam 2021-03-03]
	Updated devel/py-dulwich to 0.20.20 [adam 2021-03-03]
	Updated devel/py-greenlet to 1.0.0 [adam 2021-03-03]
	Updated editors/nano to 5.6.1 [schwarz 2021-03-03[
	Updated devel/binaryen to 100 [fcambus 2021-03-04]
	Updated devel/protobuf to 3.15.4 [adam 2021-03-04]
	Updated devel/py-protobuf to 3.15.4 [adam 2021-03-04]
	Updated net/grpc to 1.36.1 [adam 2021-03-04]
	Updated net/py-grpcio to 1.36.1 [adam 2021-03-04]
	Updated net/py-grpcio-testing to 1.36.1 [adam 2021-03-04]
	Updated net/py-grpcio-tools to 1.36.1 [adam 2021-03-04]
	Updated misc/ocaml-opam to 2.0.8 [jaapb 2021-03-04]
	Updated devel/wabt to 1.0.21 [fcambus 2021-03-04]
	Updated net/youtube-dl to 20210303 [leot 2021-03-04]
	Updated security/amass to 3.11.8 [leot 2021-03-04]
	Updated sysutils/entr to 4.8 [leot 2021-03-04]
	Updated sysutils/dosfstools to 4.2 [nia 2021-03-04]
	Updated sysutils/agedu to 20200705.2a7d4a2 [nia 2021-03-04]
	Updated textproc/diffstat to 1.64 [nia 2021-03-04]
	Updated misc/rlwrap to 0.45 [leot 2021-03-04]
	Updated security/sqlmap to 1.5.3 [leot 2021-03-04]
	Updated net/py-rt to 2.1.0 [leot 2021-03-04]
	Updated graphics/zbar to 0.23.90 [leot 2021-03-04]
	Updated audio/audacious to 4.1 [nia 2021-03-04]
	Updated audio/audacious-plugins to 4.1 [nia 2021-03-04]
	Updated net/bmon to 4.0 [nia 2021-03-04]
	Updated games/bzflag to 2.4.22 [nia 2021-03-04]
	Updated sysutils/coreutils to 8.32 [nia 2021-03-04]
	Updated misc/gnuls to 8.32 [nia 2021-03-04]
	Updated wm/cwm to 6.7 [nia 2021-03-04]
	Updated graphics/py-tifffile to 2021.2.26 [adam 2021-03-04]
	Updated archivers/py-lhafile to 0.3.0 [adam 2021-03-04]
	Updated lang/erlang to 23.2.7 [triaxx 2021-03-04]
	Updated lang/erlang-doc to 23.2nb3 [triaxx 2021-03-04]
	Updated security/tor-browser to 10.0.12 [wiz 2021-03-04]
	Updated www/php-owncloud to 10.6.0 [ryoon 2021-03-04]
	Updated graphics/py-tifffile to 2021.3.4 [gutteridge 2021-03-05]
	Updated databases/py-peewee to 3.14.2 [adam 2021-03-05]
	Updated devel/py-setuptools_scm to 5.0.2 [adam 2021-03-05]
	Updated archivers/py-zipp to 3.4.1 [adam 2021-03-05]
	Updated textproc/py-xmlschema to 1.5.2 [adam 2021-03-05]
	Updated security/py-google-auth to 1.27.1 [adam 2021-03-05]
	Updated security/py-google-auth-httplib2 to 0.1.0 [adam 2021-03-05]
	Updated security/py-google-auth-oauthlib to 0.4.3 [adam 2021-03-05]
	Updated devel/py-google-api-core to 1.26.1 [adam 2021-03-05]
	Updated shells/fish to 3.2.0 [nia 2021-03-05]
	Updated wm/herbstluftwm to 0.9.2 [nia 2021-03-05]
	Updated converters/help2man to 1.48.2 [nia 2021-03-05]
	Updated lang/polyml to 5.8.1 [jaapb 2021-03-05]
	Updated chat/mumble to 1.3.4 [nia 2021-03-05]
	Updated games/flightgear-data to 2020.3.6 [nia 2021-03-05]
	Updated audio/ncmpc to 0.45 [nia 2021-03-05]
	Updated archivers/pigz to 2.6 [nia 2021-03-05]
	Updated sysutils/pcmanfm to 1.3.2 [nia 2021-03-05]
	Updated textproc/ugrep to 3.1.9 [nia 2021-03-05]
	Updated emulators/libretro-core-info to 1.9.0 [nia 2021-03-05]
	Updated emulators/retroarch to 1.9.0 [nia 2021-03-05]
	Updated sysutils/libfm to 1.3.2 [nia 2021-03-05]
	Updated graphics/py-wand to 0.6.6 [adam 2021-03-05]
	Updated devel/py-ruamel-yaml to 0.16.13 [adam 2021-03-05]
	Updated net/tcpflow to 1.6.1 [adam 2021-03-05]
	Updated graphics/jasper to 2.0.26 [adam 2021-03-05]
	Updated textproc/py-elementpath to 2.2.0 [adam 2021-03-05]
	Updated devel/py-googleapis-common-protos to 1.53.0 [adam 2021-03-05]
	Updated net/gallery-dl to 1.17.0 [leot 2021-03-05]
	Updated security/opendnssec2 to 2.1.8nb1 [he 2021-03-05]
	Updated www/go-ffuf to 1.2.1 [leot 2021-03-05]
	Updated textproc/ripgrep to 12.1.1nb1 [pin 2021-03-05]
	Updated misc/libreoffice to 7.1.1.2 [ryoon 2021-03-06]
	Added inputmethod/fcitx5-kkc version 5.0.4 [ryoon 2021-03-06]
	Added inputmethod/rime-array version 0.0.0.20200903 [ryoon 2021-03-06]
	Added inputmethod/rime-cantonese version 0.0.0.20210218 [ryoon 2021-03-06]
	Added inputmethod/rime-combo-pinyin version 0.0.0.20210131 [ryoon 2021-03-06]
	Added inputmethod/rime-double-pinyin version 0.0.0.20210120 [ryoon 2021-03-06]
	Added inputmethod/rime-emoji version 0.0.0.20201113 [ryoon 2021-03-06]
	Added inputmethod/rime-ipa version 0.0.0.20200413 [ryoon 2021-03-06]
	Added inputmethod/rime-jyutping version 0.0.0.20200809 [ryoon 2021-03-06]
	Added inputmethod/rime-middle-chinese version 0.0.0.20201219 [ryoon 2021-03-06]
	Added inputmethod/rime-pinyin-simp version 0.0.0.20201110 [ryoon 2021-03-06]
	Added inputmethod/rime-quick version 0.0.0.20190120 [ryoon 2021-03-06]
	Added inputmethod/rime-scj version 0.0.0.20190120 [ryoon 2021-03-06]
	Added inputmethod/rime-soutzoe version 0.0.0.20190120 [ryoon 2021-03-06]
	Added inputmethod/rime-stenotype version 0.0.0.20191007 [ryoon 2021-03-06]
	Added inputmethod/rime-wubi version 0.0.0.20200909 [ryoon 2021-03-06]
	Added inputmethod/rime-wugniu version 0.0.0.20200120 [ryoon 2021-03-06]
	Updated sysutils/detox to 1.4.1 [wiz 2021-03-06]
	Removed net/airport2basestationconfig [nia 2021-03-06]
	Removed net/airportbasestationconfig [nia 2021-03-06]
	Removed net/airportmodemutility [nia 2021-03-06]
	Removed net/xnap [nia 2021-03-06]
	Updated net/ettercap to 0.8.3.1 [nia 2021-03-06]
	Added net/ettercap-gtk version 0.8.3.1 [nia 2021-03-06]
	Removed net/ettercap-NG successor net/ettercap [nia 2021-03-06]
	Updated emulators/qemu to version 5.2.0nb1 [reinoud 2021-03-06]
	Updated lang/php74 to 7.4.16 [taca 2021-03-06]
	Updated security/py-acme to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-apache to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-digitalocean to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-dnsimple to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-dnsmadeeasy to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-gehirn to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-google to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-linode to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-luadns to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-nsone to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-ovh to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-rfc2136 to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-route53 to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-dns-sakuracloud to 1.13.0 [adam 2021-03-06]
	Updated security/py-certbot-nginx to 1.13.0 [adam 2021-03-06]
	Updated devel/mantis to 2.24.5 [taca 2021-03-06]
	Added sysutils/macchina version 0.4.9 [pin 2021-03-06]
	Updated editors/codelite to 15.0 [wiz 2021-03-06]
	Updated graphics/krita to 4.4.2 [nia 2021-03-06]
	Updated print/sile to 0.10.15 [joerg 2021-03-06]
	Updated sysutils/detox to 1.4.2 [wiz 2021-03-06]
	Updated chat/element-web to 1.7.22 [js 2021-03-06]
	Updated chat/matrix-synapse to 1.28.0 [js 2021-03-06]
	Added sysutils/preloader-m1 version 0.0.20210220 [jmcneill 2021-03-06]
	Added sysutils/dtb-arm64-apple-m1 version 5.11rc4 [jmcneill 2021-03-06]
	Added sysutils/u-boot-apple-m1 version 2021.01 [jmcneill 2021-03-06]
	Added security/wfuzz version 3.1.0 [leot 2021-03-06]
	Updated databases/ruby-sequel to 5.42.0 [taca 2021-03-07]
	Updated graphics/libimagequant to 2.14.1 [adam 2021-03-07]
	Updated graphics/gd to 2.3.2 [adam 2021-03-07]
	Updated multimedia/mkvtoolnix to 55.0.0 [adam 2021-03-07]
	Updated editors/retext to 7.2.1 [adam 2021-03-07]
	Updated net/py-ncclient to 0.6.10 [adam 2021-03-07]
	Updated textproc/py-defusedxml to 0.7.0 [adam 2021-03-07]
	Updated mail/dovecot2 to 2.3.14 [taca 2021-03-07]
	Updated mail/dovecot2-gssapi to 2.3.14 [taca 2021-03-07]
	Updated mail/dovecot2-mysql to 2.3.14 [taca 2021-03-07]
	Updated mail/dovecot2-pgsql to 2.3.14 [taca 2021-03-07]
	Updated mail/dovecot2-sqlite to 2.3.14 [taca 2021-03-07]
	Updated mail/dovecot2-pigeonhole to 0.5.14 [taca 2021-03-07]
	Updated devel/ruby-ffi to 1.15.0 [taca 2021-03-07]
	Updated devel/ruby-rspec-rails to 4.1.0 [taca 2021-03-07]
	Updated mail/mutt to 2.0.6 [tron 2021-03-07]
	Updated graphics/ruby-RMagick to 4.2.2 [taca 2021-03-07]
	Updated misc/ruby-bundler to 2.2.13 [taca 2021-03-07]
	Updated net/ruby-nio4r to 2.5.7 [taca 2021-03-07]
	Updated net/ruby-train-core to 3.5.2 [taca 2021-03-07]
	Updated security/ruby-metasploit-payloads to 2.0.37 [taca 2021-03-07]
	Updated security/ruby-rex-sslscan to 0.1.6 [taca 2021-03-07]
	Updated security/ruby-rex-text to 0.2.33 [taca 2021-03-07]
	Updated sysutils/capistrano to 3.16.0 [taca 2021-03-07]
	Updated www/ruby-puma to 5.2.2 [taca 2021-03-07]
	Updated devel/libftdi1 to 1.5 [kleink 2021-03-07]
	Added databases/php-redis4 version 4.3.0 [taca 2021-03-07]
	Updated databases/php-redis to 5.3.3 [taca 2021-03-07]
	Removed databases/php-redis3 [taca 2021-03-07]
	Updated textproc/ruby-review to 5.1.1 [taca 2021-03-07]
	Added lang/php80 version 8.0.3 [taca 2021-03-07]
	Updated devel/py-sentry-sdk to 1.0.0 [adam 2021-03-07]
	Updated devel/blosc to 1.21.0 [adam 2021-03-07]
	Updated www/ruby-pygments.rb to 2.1.0 [taca 2021-03-07]
	Updated textproc/ruby-kramdown-rfc2629 to 1.3.37 [taca 2021-03-07]
	Added meta-pkgs/php80-extensions version 8.0.3 [taca 2021-03-07]
	Updated sysutils/ruby-chef-utils to 16.10.17 [taca 2021-03-07]
	Updated sysutils/ruby-chef-config to 16.10.17 [taca 2021-03-07]
	Updated sysutils/collectd to 5.12.0 [wiz 2021-03-07]
	Updated sysutils/ruby-chef-telemetry to 1.0.29 [taca 2021-03-07]
	Updated sysutils/ruby-inspec-core to 4.26.13 [taca 2021-03-07]
	Updated sysutils/ruby-chef to 16.10.17 [taca 2021-03-07]
	Updated sysutils/puppet to 7.4.1 [taca 2021-03-07]
	Updated textproc/ruby-json to 2.5.1 [taca 2021-03-07]
	Updated textproc/ruby-json-pure to 2.5.1 [taca 2021-03-07]
	Updated devel/ruby-native-package-installer to 1.1.1 [taca 2021-03-07]
	Updated devel/ruby-simpleidn to 0.2.1 [taca 2021-03-07]
	Updated misc/ruby-parallel to 1.20.1 [taca 2021-03-07]
	Updated graphics/ruby-cairo to 1.17.5 [taca 2021-03-07]
	Updated www/php-apcu to 5.1.20 [taca 2021-03-07]
	Updated www/fengoffice to 3.8.5.8 [taca 2021-03-07]
	Updated devel/ruby-getopt to 1.6.0 [taca 2021-03-07]
	Removed databases/ruby-postgres-pr [taca 2021-03-07]
	Removed www/camping [taca 2021-03-07]
	Removed www/ruby-staticmatic [taca 2021-03-07]
	Removed www/thoth-delicious [taca 2021-03-07]
	Removed www/thoth [taca 2021-03-07]
	Removed www/mongrel-upload-progress [taca 2021-03-07]
	Removed www/mongrel-console [taca 2021-03-07]
	Removed www/mongrel-cluster [taca 2021-03-07]
	Removed www/mongrel-config [taca 2021-03-07]
	Removed www/mongrel [taca 2021-03-07]
	Added devel/php-memcache2 version 2.2.7 [taca 2021-03-07]
	Added devel/php-memcache4 version 4.0.5.2 [taca 2021-03-07]
	Updated devel/php-memcache to 8.0 [taca 2021-03-07]
	Updated sysutils/lsd to 0.20.1 [pin 2021-03-07]
	Updated audio/ncspot to 0.5.0 [pin 2021-03-07]
	Updated textproc/py-JWT to 2.0.1 [adam 2021-03-07]
	Updated net/py-tweepy to 3.10.0 [adam 2021-03-07]
	Updated www/py-flask-jwt-extended to 4.0.2 [adam 2021-03-07]
	Updated audio/py-discogs-client to 2.3.0 [adam 2021-03-07]
	Updated security/botan-devel to 2.17.3 [he 2021-03-07]
	Updated security/softhsm2 to 2.6.1 [he 2021-03-07]
	Added devel/php-ffi version 8.0.3 [taca 2021-03-08]
	Updated security/wolfssl to 4.7.0 [fox 2021-03-08]
	Updated sysutils/py-Glances to 3.1.6.2 [fox 2021-03-08]
	Updated devel/p5-Test-File to 1.448 [wen 2021-03-08]
	Updated sysutils/macchina to 0.5.0 [pin 2021-03-08]
	Updated mail/py-aiosmtpd to 1.4.2 [adam 2021-03-08]
	Updated devel/py-gitpython to 3.1.14 [adam 2021-03-08]
	Updated graphics/py-dot to 1.4.2 [adam 2021-03-08]
	Updated biology/py-cutadapt to 3.3 [adam 2021-03-08]
	Updated lang/ocaml to 4.11.2 [jaapb 2021-03-08]
	Updated devel/p5-Test-Inline to 2.214 [wen 2021-03-08]
	Updated devel/tig to 2.5.3 [fcambus 2021-03-08]
	Updated games/woof to 4.0.0 [micha 2021-03-08]
	Updated lang/mono-basic to 4.7 [nia 2021-03-08]
	Removed mail/re-alpine successor mail/alpine [nia 2021-03-08]
	Updated sysutils/macchina to 0.5.1 [pin 2021-03-08]
	Removed security/guardtime [nia 2021-03-08]
	Removed security/libguardtime [nia 2021-03-08]
	Updated security/gnu-pw-mgr to 2.7.4 [ryoon 2021-03-08]
	Removed net/bittornado [adam 2021-03-08]
	Removed net/bittornado-gui [adam 2021-03-08]
	Updated net/owncloudclient to 2.7.6.3261 [nia 2021-03-08]
	Updated devel/xsd to 4.0.0 [nia 2021-03-08]
	Updated pkgtools/pkg_install to 20210308 [nia 2021-03-08]
	Updated graphics/py-tifffile to 2021.3.5 [adam 2021-03-08]
	Updated www/py-flask-caching to 1.10.0 [adam 2021-03-08]
	Updated devel/ocaml-extlib to 1.7.8 [jaapb 2021-03-08]
	Updated misc/ocaml-topkg to 1.0.3 [jaapb 2021-03-08]
	Updated chat/py-hangups to 0.4.13 [leot 2021-03-08]
	Updated editors/featherpad to 0.18.0 [pin 2021-03-08]
	Updated net/rclone to 1.54.1 [leot 2021-03-08]
	Updated www/p5-HTTP-Message to 6.29 [wen 2021-03-08]
	Updated www/p5-HTTP-Cookies to 6.10 [wen 2021-03-08]
	Updated meta-pkgs/bulk-medium to 20210309 [wiz 2021-03-08]
	Updated www/p5-HTML-Parser to 3.76 [wen 2021-03-09]
	Updated x11/lxsession to 0.5.5 [gutteridge 2021-03-09]
	Updated sysutils/lxpanel to 0.10.1 [gutteridge 2021-03-09]
	Updated x11/lxterminal to 0.4.0 [gutteridge 2021-03-09]
	Updated www/p5-Dancer2 to 0.300005 [wen 2021-03-09]
	Updated www/moodle to 3.10.2 [wen 2021-03-09]
	Updated textproc/p5-YAML-Syck to 1.34 [wen 2021-03-09]
	Updated devel/nss to 3.62 [ryoon 2021-03-09]
	Updated textproc/py-defusedxml to 0.7.1 [adam 2021-03-09]
	Updated devel/py-bintrees to 2.2.0 [adam 2021-03-09]
	Updates time/p5-Calendar-Simple to 2.0.1 [wen 2021-03-09]
	Removed multimedia/ushare [nia 2021-03-09]
	Updated security/stunnel to 5.58 [triaxx 2021-03-09]
	Removed filesystems/fuse-gstfs-ng [nia 2021-03-09]
	Updated net/frr to 7.5.1 [kardel 2021-03-09]
	Updated textproc/lok to 0.1.4 [pin 2021-03-09]
	Updated devel/protobuf to 3.15.5 [adam 2021-03-09]
	Updated devel/py-protobuf to 3.15.5 [adam 2021-03-09]
	Updated security/libretls to 3.3.1p1 [schmonz 2021-03-09]
	Updated net/haproxy to 2.3.6 [adam 2021-03-09]
	Updated lang/py-mypy to 0.812 [adam 2021-03-09]
	Added sysutils/ansible-base version 2.10.6 [adam 2021-03-09]
	Updated sysutils/ansible to 3.0.0 [adam 2021-03-09]
	Updated textproc/p5-XML-Feed to 0.61 [wen 2021-03-09]
	Updated time/p5-DateTime-Calendar-Julian to 0.103 [wen 2021-03-09]
	Updated time/p5-DateTime-Format-ISO8601 to 0.16 [wen 2021-03-09]
	Updated biology/molsketch to 0.7.1 [pin 2021-03-09]
	Updated devel/ruby-rspec-rails to 5.0.0 [taca 2021-03-09]
	Updated misc/ruby-bundler to 2.2.14 [taca 2021-03-09]
	Updated databases/prometheus to 2.24.1nb1 [jperkin 2021-03-09]
	Updated sysutils/u-boot-pico-pi-imx7d to 2021.01 [martin 2021-03-09]
	Updated sysutils/macchina to 0.5.2 [pin 2021-03-09]
	Updated devel/git to 2.30.2 [leot 2021-03-09]
	Updated sysutils/macchina to 0.5.4 [pin 2021-03-10]
	Updated www/py-django-admin-rangefilter to 0.7.0 [adam 2021-03-10]
	Updated www/py-django-filter to 2.4.0 [adam 2021-03-10]
	Updated archivers/star to 1.6.1nb13 [micha 2021-03-10]
	Updated misc/libreoffice to 7.1.1.2nb1 [ryoon 2021-03-10]
	Updated shells/bash-completion to 2.11 [jperkin 2021-03-10]
	Updated net/youtube-dl to 20210303nb1 [jperkin 2021-03-10]
	Updated chat/ejabberd to 21.01nb1 [jperkin 2021-03-10]
	Updated devel/git-base to 2.30.2nb1 [jperkin 2021-03-10]
	Updated audio/lilv to 0.24.12nb1 [jperkin 2021-03-10]
	Updated converters/py-cairosvg to 2.5.2 [adam 2021-03-10]
	Updated www/py-genshi to 0.7.5 [adam 2021-03-10]
	Added graphics/py-Pillow6 version 6.2.2 [adam 2021-03-10]
	Updated graphics/py-Pillow to 8.1.2 [adam 2021-03-10]
	Added www/monolith version 2.4.1 [pin 2021-03-10]
	Updated graphics/py-exifread to 2.3.2 [adam 2021-03-10]
	Updated www/py-django-sortedm2m to 3.0.2 [adam 2021-03-10]
	Updated www/py-django-photologue to 3.13 [adam 2021-03-10]
	Removed www/py-django-south [adam 2021-03-10]
	Updated lang/go116 to 1.16.1 [bsiegert 2021-03-10]
	Added net/terraform-provider-archive version 2.1.0 [tpaul 2021-03-10]
	Added net/terraform-provider-template version 2.2.0 [tpaul 2021-03-10]
	Updated print/py-reportlab to 3.5.65 [adam 2021-03-11]
	Updated www/py-flask-jwt-extended to 4.1.0 [adam 2021-03-11]
	Updated security/pleaser to 0.3.25 [pin 2021-03-11]
	Updated sysutils/macchina to 0.5.5 [pin 2021-03-11]
	Updated editors/feathernotes to 0.9.0 [pin 2021-03-11]
	Updated net/wireshark to 3.4.4 [adam 2021-03-11]
	Updated archivers/unrar to 6.0.4 [adam 2021-03-11]
	Updated fonts/cyr-rfx-bulgarian-mik to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-ibm-cp866 to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-iso10646_0400 to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-iso8859_15 to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-iso8859_5 to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-koi8-o to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-koi8-ru to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-koi8-ub to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-koi8_1 to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-mac-cyrillic to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-windows_1251 to 1.1nb5 [wiz 2021-03-11]
	Updated fonts/cyr-rfx-winlatin_1 to 1.1nb5 [wiz 2021-03-11]
	Updated misc/py-tqdm to 4.59.0 [adam 2021-03-11]
	Updated sysutils/ansible to 3.1.0 [adam 2021-03-11]
	Updated devel/py-faker to 6.6.0 [adam 2021-03-11]
	Updated www/py-websocket-client to 0.58.0 [adam 2021-03-11]
	Added devel/php-base58 version 1.0.2 [tpaul 2021-03-11]
	Updated mail/roundcube-plugin-carddav to 4.0.4nb1 [triaxx 2021-03-11]
	Updated textproc/ruby-strings to 0.2.1 [taca 2021-03-11]
	Updated devel/uthash to 2.3.0 [fcambus 2021-03-11]
	Updated textproc/ruby-unicode-display_width to 2.0.0 [taca 2021-03-11]
	Updated security/ruby-rex-socket to 0.1.26 [taca 2021-03-11]
	Updated security/ruby-metasploit-payloads to 2.0.38 [taca 2021-03-11]
	Updated sysutils/u-boot-pine-h64 to 2021.01 [jakllsch 2021-03-11]
	Updated textproc/bat to 0.18.0 [fox 2021-03-11]
	Updated sysutils/macchina to 0.5.7 [pin 2021-03-11]
	Updated sysutils/sfm to 0.4.3 [pin 2021-03-11]
	Updated audio/spotify-qt to 3.5 [pin 2021-03-11]
	Added net/nng version 1.4.0 [khorben 2021-03-12]
	Updated graphics/kvantum to 0.19.0 [pin 2021-03-12]
	Updated net/chrony to 4.0 [nia 2021-03-12]
	Updated archivers/star to 1.6.1nb14 [micha 2021-03-12]
	Updated emulators/mednaffe to 0.9.1 [nia 2021-03-12]
	Updated fonts/cascadia-ttf to 2102.25 [wiz 2021-03-12]
	Updated devel/gopls to 0.6.6 [wiz 2021-03-12]
	Updated net/libfilezilla to 0.27.0 [wiz 2021-03-12]
	Updated net/filezilla to 3.52.2 [wiz 2021-03-12]
	Updated fonts/spleen to 1.9.0 [fcambus 2021-03-12]
	Updated www/gitea to 1.13.4 [khorben 2021-03-12]
	Updated databases/py-peewee to 3.14.3 [adam 2021-03-12]
	Updated math/py-asteval to 0.9.23 [adam 2021-03-12]
	Updated www/firefox to 86.0.1 [ryoon 2021-03-12]
	Updated www/firefox-l10n to 86.0.1 [ryoon 2021-03-12]
	Updated mail/thunderbird to 78.8.1 [ryoon 2021-03-12]
	Updated mail/thunderbird-l10n to 78.8.1 [ryoon 2021-03-12]
	Added devel/php-msgpack version 2.1.2 [tpaul 2021-03-12]
	Updated net/sayaka to 3.5.0 [tsutsui 2021-03-12]
	Updated lang/openjdk11 to 1.11.0.10.9nb1 [ryoon 2021-03-12]
	Updated devel/ant-contrib to 1.0b3 [ryoon 2021-03-12]
	Updated audio/din to 50 [fox 2021-03-12]
	Updated devel/gradle to 6.8.3 [ryoon 2021-03-12]
	Updated security/libdecaf to 1.0.1 [fox 2021-03-12]
	Updated geography/gdal-lib to 3.2.2 [gdt 2021-03-13]
	Updated net/mosquitto to 2.0.9 [gdt 2021-03-13]
	Updated net/remmina to 1.4.12 [ryoon 2021-03-13]
	Updated misc/screen to 4.8.0nb4 [kim 2021-03-13]
	Updated geography/py-googlemaps to 4.4.4 [kleink 2021-03-13]
	Updated meta-pkgs/php74-extensions to 7.4.16nb1 [taca 2021-03-13]
	Updated www/squid4 to 4.14 [taca 2021-03-13]
	Updated sysutils/macchina to 0.5.9 [pin 2021-03-13]
	Updated sysutils/sfm to 0.5.0 [pin 2021-03-13]
	Updated mail/balsa to 2.6.2 [nia 2021-03-14]
	Updated security/gnutls to 3.7.1 [wiz 2021-03-14]
	Updated multimedia/dav1d to 0.8.2 [nia 2021-03-14]
	Updated devel/bison to 3.7.6 [wiz 2021-03-14]
	Updated x11/libxkbcommon to 1.1.0 [wiz 2021-03-14]
	Updated devel/py-yapf to 0.31.0 [adam 2021-03-14]
	Updated devel/py-xdis to 5.0.8 [adam 2021-03-14]
	Updated print/cups-pdf to 3.0.1nb1 [wiz 2021-03-14]
	Updated print/mpage to 2.5.7nb1 [wiz 2021-03-14]
	Updated print/cups to 2.3.3op2 [wiz 2021-03-14]
	Added devel/pointfree version 1.1.1.7 [pho 2021-03-14]
	Updated emulators/qemu to version 5.2.0nb3 [reinoud 2021-03-14]
	Updated audio/aiomixer to 1.0.2 [nia 2021-03-14]
	Updated net/youtube-dl to 20210314 [leot 2021-03-14]
	Updated security/amass to 3.11.9 [leot 2021-03-14]
	Updated news/sfeed_curses to 0.9.9 [leot 2021-03-14]
	Updated news/sfeed to 0.9.22 [leot 2021-03-14]
	Updated lang/go116 to 1.16.2 [bsiegert 2021-03-14]
	Updated devel/py-approvaltests to 0.3.2 [schmonz 2021-03-14]
	Updated net/stagit-gopher to 0.9.5 [leot 2021-03-14]
	Updated chat/ircII to 20210314 [mrg 2021-03-14]
	Updated devel/py-configargparse to 1.4 [adam 2021-03-15]
	Updated devel/py-flakes to 2.3.0 [adam 2021-03-15]
	Updated textproc/py-xmlschema to 1.5.3 [adam 2021-03-15]
	Updated devel/py-codestyle to 2.7.0 [adam 2021-03-15]
	Updated devel/py-flake8 to 3.9.0 [adam 2021-03-15]
	Updated multimedia/lightspark to 0.8.4.1 [nia 2021-03-15]
	Updated www/luakit to 2.3 [nia 2021-03-15]
	Updated games/woof to 4.0.1 [micha 2021-03-15]
	Updated wm/pekwm to 0.1.18 [nia 2021-03-15]
	Updated devel/py-radon to 4.5.0 [adam 2021-03-15]
	Updated devel/py-pep517 to 0.10.0 [adam 2021-03-15]
	Updated audio/qmmp to 1.4.4 [nia 2021-03-15]
	Updated sysutils/bup to 0.32 [gdt 2021-03-15]
	Updated databases/sqlite3 to 3.35.0 [adam 2021-03-15]
	Updated databases/sqlite3-docs to 3.35.0 [adam 2021-03-15]
	Updated databases/sqlite3-tcl to 3.35.0 [adam 2021-03-15]
	Updated devel/lemon to 1.0.3.35.0 [adam 2021-03-15]
	Updated devel/py-test-xprocess to 0.17.1 [adam 2021-03-15]
	Updated www/py-django-admin-sortable2 to 0.7.8 [adam 2021-03-15]
	Updated archivers/gnome-autoar to 0.3.1 [cirnatdan 2021-03-15]
	Added net/iperf2 version 2.0.13 [gdt 2021-03-15]
	Removed net/iperf successor net/iperf2 [gdt 2021-03-15]
	Updated sysutils/auto-admin to 0.7.1 [bacon 2021-03-15]
	Updated sysutils/htop to 3.0.5 [fox 2021-03-15]
	Updated www/py-urllib3 to 1.26.4 [adam 2021-03-16]
	Updated www/py-httpx to 0.17.1 [adam 2021-03-16]
	Updated geography/py-googlemaps to 4.4.5 [adam 2021-03-16]
	Updated sysutils/ansible-base to 2.10.7 [adam 2021-03-16]
	Updated net/tor to 0.4.5.7 [wiz 2021-03-16]
	Updated www/stagit to 0.9.5 [fcambus 2021-03-16]
	Updated textproc/lowdown to 0.8.3 [fcambus 2021-03-16]
	Updated comms/qodem to 1.0.1 [fcambus 2021-03-16]
	Updated net/unison-snapshot to 2.51.3.72 [gdt 2021-03-16]
	Updated databases/openldap to 2.4.58 [adam 2021-03-16]
	Updated databases/lmdb to 0.9.29 [adam 2021-03-16]
	Updated devel/cmake to 3.19.7 [adam 2021-03-16]
	Updated emulators/cannonball to 0.31 [fox 2021-03-16]
	Updated databases/sqlite3 to 3.35.1 [adam 2021-03-17]
	Updated databases/sqlite3-docs to 3.35.1 [adam 2021-03-17]
	Updated databases/sqlite3-tcl to 3.35.1 [adam 2021-03-17]
	Updated devel/lemon to 1.0.3.35.1 [adam 2021-03-17]
	Updated x11/xkbcomp to 1.4.5 [wiz 2021-03-17]
	Updated devel/py-mercurial to 5.7.1 [wiz 2021-03-17]
	Updated devel/py-hg-evolve to 10.3.0 [wiz 2021-03-17]
	Updated graphics/ilmbase to 2.5.5 [wiz 2021-03-17]
	Updated graphics/openexr to 2.5.5 [wiz 2021-03-17]
	Updated lang/mono to 6.12.0.122 [wiz 2021-03-17]
	Updated devel/py-hypothesis to 6.8.1 [wiz 2021-03-17]
	Updated mail/msmtp to 1.8.15 [ryoon 2021-03-17]
	Updated emulators/stella to 6.5.2 [nia 2021-03-17]
	Updated emulators/libretro-stella to 6.5.2 [nia 2021-03-17]
	Updated chat/srain to 1.2.0 [nia 2021-03-17]
	Updated math/eigen3 to 3.3.9 [prlw1 2021-03-17]
	Updated biology/openbabel to 3.1.1nb5 [prlw1 2021-03-17]
	Added devel/purpose version 5.70.0 [markd 2021-03-17]
	Added x11/lxhotkey version 0.1.1 [gutteridge 2021-03-18]
	Updated meta-pkgs/lxde to 1.0nb1 [gutteridge 2021-03-18]
	Updated misc/xfce4-calculator-plugin to 0.7.1 [gutteridge 2021-03-18]
	Added math/tex-physics version 1.3 [markd 2021-03-18]
	Added math/tex-physics-doc version 1.3 [markd 2021-03-18]
	Updated databases/py-pypika to 0.48.0 [adam 2021-03-18]
	Updated textproc/py-regex to 2021.3.17 [adam 2021-03-18]
	Updated security/qgpgme to 1.15.1 [markd 2021-03-18]
	Updated net/py-responses to 0.13.1 [adam 2021-03-18]
	Updated security/py-josepy to 1.8.0 [adam 2021-03-18]
	Updated devel/ocaml-findlib to 1.9.1 [jaapb 2021-03-18]
	Updated security/sudo to 1.9.6p1 [adam 2021-03-18]
	Updated net/py-lexicon to 3.5.4 [adam 2021-03-18]
	Removed devel/py-clint [adam 2021-03-18]
	Removed devel/py-cubes [adam 2021-03-18]
	Removed mail/py-libgmail [adam 2021-03-18]
	Removed www/py-hstspreload [adam 2021-03-18]
	Removed textproc/py-cjson [adam 2021-03-18]
	Removed www/py-cloudfiles [adam 2021-03-18]
	Updated textproc/ruby-kramdown to 2.3.1 [fcambus 2021-03-18]
	Updated audio/libopenmpt to 0.5.6 [fcambus 2021-03-18]
	Updated www/webkit-gtk to 2.30.6 [leot 2021-03-18]
	Updated filesystems/tahoe-lafs to 1.13.0 [gdt 2021-03-18]
	Updated textproc/split-thai to 2.0 [scole 2021-03-18]
	Updated filesystems/tahoe-lafs to 1.15.0 [gdt 2021-03-18]
	Added net/py-magic-wormhole version 0.12.0 [gdt 2021-03-18]
	Added www/hackernews-tui version 0.3 [pin 2021-03-18]
	Updated mail/up-imappproxy to 1.2.8nb2 [tm 2021-03-18]
	Added net/beanstalkd version 1.12 [khorben 2021-03-18]
	Removed textproc/split-thai 2.0 [scole 2021-03-18]
	Updated databases/sqlite3 to 3.35.2 [adam 2021-03-19]
	Updated databases/sqlite3-docs to 3.35.2 [adam 2021-03-19]
	Updated databases/sqlite3-tcl to 3.35.2 [adam 2021-03-19]
	Updated devel/lemon to 1.0.3.35.2 [adam 2021-03-19]
	Updated graphics/jasper to 2.0.27 [adam 2021-03-19]
	Updated net/grpc to 1.36.4 [adam 2021-03-19]
	Updated devel/py-faker to 6.6.2 [adam 2021-03-19]
	Updated devel/py-flake8-docstrings to 1.6.0 [adam 2021-03-19]
	Removed security/py-crypto successor security/py-cryptodome [adam 2021-03-19]
	Updated security/py-stix to 1.2.0.11 [adam 2021-03-19]
	Updated www/py-drf-nested-routers to 0.93.3 [adam 2021-03-19]
	Updated www/py-django-treebeard to 4.5.1 [adam 2021-03-19]
	Updated games/dhewm3 to 1.5.1 [nia 2021-03-19]
	Updated www/py-django-mptt to 0.12.0 [adam 2021-03-19]
	Updated www/py-django-binary-database-files to 1.0.14 [adam 2021-03-19]
	Updated shells/fish to 3.2.1 [nia 2021-03-19]
	Updated audio/fluidsynth to 2.1.8 [nia 2021-03-19]
	Updated devel/gperftools to 2.9.1 [adam 2021-03-19]
	Updated net/haproxy to 2.3.7 [adam 2021-03-19]
	Updated lang/janet to 1.15.4 [nia 2021-03-19]
	Updated time/libical to 3.0.9 [nia 2021-03-19]
	Updated converters/libmwaw to 0.3.17 [nia 2021-03-19]
	Updated audio/quodlibet to 4.4.0 [nia 2021-03-19]
	Updated emulators/sameboy to 0.14.2 [nia 2021-03-19]
	Updated emulators/libretro-sameboy to 0.14.2 [nia 2021-03-19]
	Updated net/syncthing to 1.14.0 [triaxx 2021-03-19]
	Updated net/sayaka to 3.5.1 [tsutsui 2021-03-19]
	Updated devel/rebar3 to 3.14.4 [triaxx 2021-03-19]
	Updated textproc/ruby-nokogiri to 1.11.2 [tsutsui 2021-03-19]
	Updated www/davical to 1.1.10 [triaxx 2021-03-19]
	Updated lang/go115 to 1.15.10 [bsiegert 2021-03-19]
	Updated sysutils/smartmontools to 7.2 [triaxx 2021-03-19]
	Updated ham/xlog to 2.0.22 [gdt 2021-03-19]
	Added devel/libcutl version 1.10.0 [markd 2021-03-19]
	Updated devel/xsd to 4.0.0nb1 [markd 2021-03-19]
	Added textproc/libkolabxml version 1.1.6 [markd 2021-03-19]
	Updated x11/qt5-qtsvg to 5.15.2nb2 [gutteridge 2021-03-20]
	Updated sysutils/dmidecode to 3.3nb1 [msaitoh 2021-03-20]
	Updated databases/py-peewee to 3.14.4 [adam 2021-03-20]
	Updated devel/py-distorm3 to 3.5.2 [adam 2021-03-20]
	Updated net/py-botocore to 1.20.33 [adam 2021-03-20]
	Updated net/py-s3transfer to 0.3.6 [adam 2021-03-20]
	Updated net/py-boto3 to 1.17.33 [adam 2021-03-20]
	Updated net/py-awscli to 1.19.33 [adam 2021-03-20]
	Removed lang/go114 successor lang/go116 [bsiegert 2021-03-20]
	Updated devel/py-ddt to 1.4.2 [adam 2021-03-20]
	Updated fonts/py-fonttools to 4.21.1 [adam 2021-03-20]
	Updated x11/xsnow to 3.2.2 [gdt 2021-03-20]
	Added devel/py-cwcwidth version 0.1.4 [adam 2021-03-20]
	Updated devel/py-curtsies to 0.3.5 [adam 2021-03-20]
	Updated devel/bpython to 0.21 [adam 2021-03-20]
	Added textproc/split-thai 2.0nb1 [scole 2021-03-20]
	Updated biology/htslib to 1.12 [bacon 2021-03-20]
	Updated biology/bcftools to 1.12 [bacon 2021-03-20]
	Updated biology/samtools to 1.12 [bacon 2021-03-20]
	Updated devel/editorconfig-core to 0.12.4 [adam 2021-03-20]
	Updated devel/py-editorconfig-core to 0.12.3 [adam 2021-03-20]
	Updated net/py-dropbox to 11.4.1 [adam 2021-03-20]
	Updated sysutils/py-ptyprocess to 0.7.0 [adam 2021-03-20]
	Updated devel/py-autopep8 to 1.5.6 [adam 2021-03-20]
	Updated security/py-google-auth to 1.28.0 [adam 2021-03-20]
	Updated lang/py-hy to 0.20.0 [adam 2021-03-20]
	Updated devel/py-bitarray to 1.7.1 [adam 2021-03-20]
	Updated devel/py-cachetools to 4.2.1 [adam 2021-03-20]
	Updated net/samba4 to 4.13.5 [adam 2021-03-20]
	Updated net/gallery-dl to 1.17.1 [leot 2021-03-20]
	Updated pkgtools/pkglint to 20.4.1 [rillig 2021-03-20]
	Updated emulators/PC6001VX to 3.7.1 [tsutsui 2021-03-21]
	Updated net/pear-Net_SMTP to 1.10.0 [taca 2021-03-21]
	Updated security/pear-Crypt_GPG to 1.6.5 [taca 2021-03-21]
	Updated net/bind911 to 9.11.29 [taca 2021-03-21]
	Updated net/bind916 to 9.16.13 [taca 2021-03-21]
	Updated textproc/py-humanize to 3.3.0 [adam 2021-03-21]
	Updated net/py-xandikos to 0.2.6 [adam 2021-03-21]
	Updated net/gh to 1.7.0 [bsiegert 2021-03-21]
	Updated mail/rss2email to 3.12.3 [schmonz 2021-03-21]
	Updated devel/p5-Test-BDD-Cucumber to 0.79 [schmonz 2021-03-21]
	Updated cross/atasm to 1.09 [fcambus 2021-03-21]
	Updated devel/thrift to 0.14.0 [taca 2021-03-21]
	Updated devel/libthrift to 0.14.0 [taca 2021-03-21]
	Updated devel/go-thrift to 0.14.0 [taca 2021-03-21]
	Updated devel/p5-thrift to 0.14.0 [taca 2021-03-21]
	Updated devel/py-thrift to 0.14.0 [taca 2021-03-21]
	Updated devel/ruby-thrift to 0.14.0 [taca 2021-03-21]
	Updated databases/ruby-hiera to 3.7.0 [taca 2021-03-21]
	Updated databases/ruby-odbc to 0.999991 [taca 2021-03-21]
	Updated devel/ruby-mixlib-authentication to 3.0.10 [taca 2021-03-21]
	Updated devel/ruby-rspec-rails to 5.0.1 [taca 2021-03-21]
	Updated finance/ruby-braintree to 3.3.0 [taca 2021-03-21]
	Updated misc/ruby-bundler to 2.2.15 [taca 2021-03-21]
	Updated net/ruby-train-core to 3.5.4 [taca 2021-03-21]
	Updated security/ruby-metasploit-payloads to 2.0.39 [taca 2021-03-21]
	Updated sysutils/ruby-facter to 4.0.52 [taca 2021-03-21]
	Updated www/ruby-pygments.rb to 2.2.0 [taca 2021-03-21]
	Updated devel/radare2 to 5.1.1 [leot 2021-03-21]
	Updated www/ruby-unicorn to 6.0.0 [taca 2021-03-21]
	Updated sysutils/puppet to 7.5.0 [taca 2021-03-21]
	Updated sysutils/ruby-chef-utils to 16.11.7 [taca 2021-03-21]
	Updated sysutils/ruby-chef-config to 16.11.7 [taca 2021-03-21]
	Updated sysutils/ruby-chef to 16.11.7 [taca 2021-03-21]
	Updated misc/ruby-ohai to 16.10.7 [taca 2021-03-21]
	Updated sysutils/ruby-inspec-core to 4.28.0 [taca 2021-03-21]
	Updated multimedia/sickgear to 0.23.14 [js 2021-03-21]
	Updated mail/mew to 6.8nb1 [taca 2021-03-21]
	Added biology/generand version 0.1.2 [bacon 2021-03-21]
	Updated mail/squirrelmail to 1.4.23pre14904 [taca 2021-03-21]
	Updated textproc/uriparser to 0.9.5 [taca 2021-03-21]
	Updated textproc/split-thai to 2.1 [scole 2021-03-21]
	Updated net/scapy to 2.4.4 [gutteridge 2021-03-21]
	Updated audio/faudio to 21.03.05 [adam 2021-03-21]
	Updated security/nettle to 3.7.2 [adam 2021-03-21]
	Updated audio/openal-soft to 1.21.1 [adam 2021-03-21]
	Updated devel/py-crayons to 0.4.0 [adam 2021-03-21]
	Added textproc/py-itemadapter version 0.2.0 [triaxx 2021-03-21]
	Added textproc/py-itemloaders version 1.0.4 [triaxx 2021-03-21]
	Updated converters/bdf2psf to 1.202 [fcambus 2021-03-21]
	Updated geography/viking to 1.9 [gdt 2021-03-22]
	Updated devel/glib2 to 2.68.0 [adam 2021-03-22]
	Updated devel/glib2-tools to 2.68.0 [adam 2021-03-22]
	Updated devel/gdbus-codegen to 2.68.0 [adam 2021-03-22]
	Updated devel/pango to 1.48.3 [adam 2021-03-22]
	Updated devel/gobject-introspection to 1.68.0 [adam 2021-03-22]
	Updated x11/gtk3 to 3.24.27 [adam 2021-03-22]
	Updated www/py-scrapy to 2.4.1 [triaxx 2021-03-22]
	Updated devel/py-approvaltests to 0.3.3 [schmonz 2021-03-22]
	Updated games/wesnoth to 1.14.16 [adam 2021-03-22]
	Updated devel/py-bitarray to 1.8.0 [adam 2021-03-22]
	Updated textproc/miller to 5.10.1 [fcambus 2021-03-22]
	Updated audio/libopenmpt to 0.5.7 [fcambus 2021-03-22]
	Updated devel/gconfmm to 2.28.3nb25 [ryoon 2021-03-22]
	mk/bsd.pkg.mk: started freeze for pkgsrc-2021Q1 branch [wiz 2021-03-22]
	Updated x11/xlockmore to 5.46nb27 [wiz 2021-03-22]
	Updated pkgtools/pkglint to 20.4.2 [rillig 2021-03-22]
	Updated www/grafana to 7.4.5 [triaxx 2021-03-23]
	Updated textproc/py-lxml to 4.6.3 [adam 2021-03-23]
	Downgraded devel/glib2 to 2.66.8 [adam 2021-03-23]
	Downgraded devel/glib2-tools to 2.66.8 [adam 2021-03-23]
	Downgraded devel/gdbus-codegen to 2.66.8 [adam 2021-03-23]
	Updated benchmarks/dnsperf to 2.5.1 [tron 2021-03-23]
	Updated devel/py-hg-git to 0.10.0 [hauke 2021-03-24]
	Updated devel/wabt to 1.0.22 [fcambus 2021-03-24]
	Updated textproc/miller to 5.10.2 [fcambus 2021-03-24]
	Updated sysutils/ups-nut to 2.7.4nb4 [wiz 2021-03-24]
	Updated sysutils/macchina to 0.6.2 [pin 2021-03-24]
	Added biology/biolibc version 0.1.1 [bacon 2021-03-24]
	Added biology/vcf-split version 0.1.1 [bacon 2021-03-24]
	Updated mail/spamassassin to 3.4.5 [gdt 2021-03-24]
	Updated databases/ldb to 2.2.1 [adam 2021-03-24]
	Updated net/samba4 to 4.13.7 [adam 2021-03-24]
	Added biology/ad2vcf version 0.1.2 [bacon 2021-03-24]
	Added biology/vcf2hap version 0.1.2 [bacon 2021-03-24]
	Updated www/firefox78 to 78.9.0 [ryoon 2021-03-24]
	Updated www/firefox78-l10n to 78.9.0 [ryoon 2021-03-24]
	Updated multimedia/ffmpeg4 to 4.3.2nb1 [maya 2021-03-24]
	Updated math/lapack to 3.9.0nb2 [thor 2021-03-25]
	Updated devel/wabt to 1.0.23 [fcambus 2021-03-25]
	Updated mail/thunderbird to 78.9.0 [ryoon 2021-03-25]
	Updated mail/thunderbird-l10n to 78.9.0 [ryoon 2021-03-25]
	Updated security/openssl to 1.1.1k [jperkin 2021-03-25]
	Updated pkgtools/pkglint to 21.1.0 [rillig 2021-03-25]
	Updated math/py-numpy to 1.19.5nb1 [thor 2021-03-25]
	Updated math/openblas to 0.3.10 [thor 2021-03-25]
	Updated audio/mpg123 to 1.26.5 [thor 2021-03-25]
	Updated comms/asterisk16 to 16.17.0 [gdt 2021-03-26]
	Updated textproc/ispell-en_GB to 3.4.02nb1 [gutteridge 2021-03-26]
	Updated net/yaydl to 0.4.0 [pin 2021-03-26]
	Updated emulators/cannonball to 0.32 [fox 2021-03-26]
	Updated math/py-numpy to 1.19.5nb2 [thor 2021-03-26]
	Updated print/foliate to 2.6.2 [fox 2021-03-27]
	Updated textproc/p5-PDF-API2 to 2.039 [wen 2021-03-27]
	Updated textproc/p5-PDF-Table to 1.002 [wen 2021-03-27]
	Updated time/p5-DateTime-Calendar-Julian to 0.104 [wen 2021-03-27]
	Updated time/p5-DateTime-Format-Natural to 1.12 [wen 2021-03-27]
	Updated time/p5-DateTime-Format-Pg to 0.16014 [wen 2021-03-27]
	Updated time/p5-DateTime-Locale to 1.31 [wen 2021-03-28]
	Updated time/p5-DateTime-Format-Strptime to 1.78 [wen 2021-03-28]
	Updated sysutils/nnn to 3.6 [sjmulder 2021-03-28]
	Updated math/sc-im to 0.8.0 [sjmulder 2021-03-28]
	Updated x11/xterm to 367 [pin 2021-03-28]
	Updated x11/alacritty to 0.7.2 [pin 2021-03-28]
	Updated net/youtube-dl to 20210325 [leot 2021-03-28]