summaryrefslogtreecommitdiff
path: root/doc/CHANGES-2022
blob: 0a7147bbe76e063ae7c1ea48d3f4a24e329bc426 (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
$NetBSD: CHANGES-2022,v 1.1518 2022/03/19 23:55:02 wen Exp $

Changes to the packages collection and infrastructure in 2022:

	Updated www/grafana to 8.3.3 [triaxx 2022-01-01]
	Updated sysutils/py-ptyprocess to 0.7.0nb1 [martin 2022-01-01]
	Updated pkgtools/pkglint to 21.4.1 [rillig 2022-01-01]
	Updated pkgtools/lintpkgsrc to 4.97 [rillig 2022-01-01]
	Updated pkgtools/url2pkg to 21.4.0 [rillig 2022-01-01]
	Updated pkgtools/url2pkg to 21.4.1 [rillig 2022-01-01]
	Updated devel/mold to 1.0.1 [fcambus 2022-01-01]
	Updated net/dbip-asn-lite to 2022.01 [fcambus 2022-01-01]
	Updated net/dbip-city-lite to 2022.01 [fcambus 2022-01-01]
	Updated devel/py-backcall to 0.2.0nb1 [ryoon 2022-01-01]
	Updated net/dbip-country-lite to 2022.01 [fcambus 2022-01-01]
	Updated devel/py-testpath to 0.3.1nb1 [ryoon 2022-01-01]
	Updated devel/py-entrypoints to 0.3nb1 [ryoon 2022-01-01]
	Updated devel/py-traitlets to 5.1.1nb1 [ryoon 2022-01-01]
	Updated devel/py-ipython to 7.30.1nb1 [ryoon 2022-01-01]
	Updated devel/py-ipython_genutils to 0.2.0nb2 [ryoon 2022-01-01]
	Updated math/py-gmpy to 1.17nb1 [ryoon 2022-01-01]
	Updated net/sslh to 1.22c [rhialto 2022-01-01]
	Updated comms/gkermit to 2.01 [rhialto 2022-01-01]
	Updated archivers/lha to 114.9.20211125 [rhialto 2022-01-01]
	Updated sysutils/tealdeer to 1.5.0 [bsiegert 2022-01-01]
	Updated sysutils/mtools to 4.0.36 [rhialto 2022-01-01]
	Updated sysutils/broot to 1.8.1 [pin 2022-01-01]
	Updated textproc/csview to 0.3.12 [pin 2022-01-01]
	Updated www/hackernews-tui to 0.9.0 [pin 2022-01-01]
	Updated shells/nushell to 0.42.0 [pin 2022-01-01]
	Updated textproc/xapian to 1.4.19 [schmonz 2022-01-02]
	Updated textproc/xapian-omega to 1.4.19 [schmonz 2022-01-02]
	Updated www/py-curl to 7.44.1nb3 [ryoon 2022-01-02]
	Updated textproc/py-pandocfilters to 1.4.3nb1 [ryoon 2022-01-02]
	Updated geography/py-googlemaps to 4.5.3 [kleink 2022-01-02]
	Updated devel/byacc to 20220101 [fcambus 2022-01-02]
	Updated chat/py-xmpppy to 0.7.0 [gdt 2022-01-02]
	Updated x11/citron to 0.7.0 [pin 2022-01-02]
	Updated audio/ncspot to 0.9.4 [pin 2022-01-02]
	Updated wm/shod to 2.2.0 [pin 2022-01-02]
	Updated emulators/compat90 to 9.0nb1 [he 2022-01-02]
	Updated graphics/glm to 0.9.9.8 [tnn 2022-01-02]
	Removed cad/kicad-i18n successor cad/kicad [tnn 2022-01-02]
	Updated cad/kicad-symbols to 6.0.0 [tnn 2022-01-02]
	Updated cad/kicad-templates to 6.0.0 [tnn 2022-01-02]
	Updated cad/kicad-packages3d to 6.0.0 [tnn 2022-01-02]
	Updated cad/kicad-footprints to 6.0.0 [tnn 2022-01-02]
	Updated cad/kicad-doc to 6.0.0 [tnn 2022-01-02]
	Updated cad/kicad to 6.0.0 [tnn 2022-01-02]
	Updated sysutils/macchina to 6.0.3 [pin 2022-01-02]
	Updated graphics/qrrs to 0.1.8 [pin 2022-01-02]
	Updated x11/citron to 0.8.0 [pin 2022-01-02]
	Updated games/py-pysol_cards to 0.14.2 [wiz 2022-01-02]
	Updated games/scummvm to 2.5.1 [adam 2022-01-03]
	Updated devel/py-cachelib to 0.5.0 [adam 2022-01-03]
	Updated textproc/py-ujson to 5.1.0 [adam 2022-01-03]
	Updated devel/py-types-setuptools to 57.4.5 [adam 2022-01-03]
	Updated mail/evolution-data-server to 3.42.1 [dan 2022-01-03]
	Updated mail/evolution-data-server to 3.42.2 [dan 2022-01-03]
	Updated devel/py-smmap to 5.0.0 [adam 2022-01-03]
	Updated devel/py-wheel to 0.37.1 [adam 2022-01-03]
	Added devel/py-kivy-garden version 0.1.4 [wiz 2022-01-03]
	Added devel/py-kivy version 2.0.0 [wiz 2022-01-03]
	Added devel/py-pycotap version 1.2.2 [wiz 2022-01-03]
	Updated games/pysolfc to 2.14.1 [wiz 2022-01-03]
	Updated x11/lxqt-session to 1.0.1 [pin 2022-01-03]
	Updated math/kalker to 1.1.0 [pin 2022-01-03]
	Updated graphics/sane-backends to 1.0.30nb1 [triaxx 2022-01-03]
	Updated audio/termusic to 0.6.5 [pin 2022-01-03]
	Removed devel/py-logilab-astng [wiz 2022-01-04]
	Updated print/qpdf to 10.5.0 [ryoon 2022-01-04]
	Updated mail/mblaze to 1.2 [schmonz 2022-01-04]
	Updated lang/nim to 1.6.2 [ryoon 2022-01-04]
	Updated graphics/gegl to 0.4.34 [ryoon 2022-01-04]
	Updated graphics/gimp to 2.10.30 [ryoon 2022-01-04]
	Updated graphics/freetype2 to 2.11.1 [ryoon 2022-01-04]
	Updated net/remmina to 1.4.23 [ryoon 2022-01-04]
	Updated devel/py-ruamel-yaml to 0.17.20 [adam 2022-01-04]
	Updated devel/py-plumbum to 1.7.2 [adam 2022-01-04]
	Updated devel/texttest to 4.0.8nb2 [schmonz 2022-01-04]
	Updated sysutils/etckeeper to 1.18.16 [schmonz 2022-01-04]
	Updated graphics/sane-backends to 1.0.32 [triaxx 2022-01-04]
	Updated textproc/jo to 1.5 [fcambus 2022-01-04]
	Updated ham/uhd to 4.1.0.5 [adam 2022-01-04]
	Updated comms/py-rich to 10.16.2 [adam 2022-01-04]
	Updated x11/citron to 0.10.1 [pin 2022-01-04]
	Updated sysutils/macchina to 6.0.4 [pin 2022-01-04]
	Updated devel/py-usb to 1.2.1 [wiz 2022-01-04]
	Updated www/htmldoc to 1.9.14 [fcambus 2022-01-04]
	Updated www/htmldoc-x11 to 1.9.14 [fcambus 2022-01-04]
	Updated security/nacl to 20110221nb2 [buildbox 2022-01-04]
	Updated mail/qremote to 20131231nb1 [schmonz 2022-01-04]
	Added security/tlswrapper version 20220101 [schmonz 2022-01-04]
	Updated www/httpfile to 20220101 [schmonz 2022-01-04]
	Updated math/py-numexpr to 2.8.1 [wiz 2022-01-04]
	Updated sysutils/xfce4-taskmanager to 1.5.2 [gutteridge 2022-01-05]
	Updated math/py-tables to 3.7.0 [wiz 2022-01-05]
	Updated games/warzone2100 to 4.2.4 [triaxx 2022-01-05]
	Added chat/swirc version 3.3.3 [fcambus 2022-01-05]
	Added sysutils/sleepwatcher version 2.2.1 [schmonz 2022-01-05]
	Updated security/nacl to 20110221nb3 [schmonz 2022-01-05]
	Updated mail/qremote to 20131231nb2 [buildbox 2022-01-05]
	Updated devel/apenwarr-redo to 0.42d [schmonz 2022-01-05]
	Updated shells/bash to 5.1.16 [wiz 2022-01-05]
	Updated textproc/py-cssutils to 2.3.0 [wiz 2022-01-05]
	Updated graphics/ImageMagick to 7.1.0.19 [wiz 2022-01-05]
	Updated audio/chromaprint to 1.5.1 [wiz 2022-01-05]
	Updated math/double-conversion to 3.1.7 [wiz 2022-01-05]
	Updated math/libnumbertext to 1.0.8 [wiz 2022-01-05]
	Updated devel/gopls to 0.7.4 [wiz 2022-01-05]
	Updated www/restish to 0.9.2 [wiz 2022-01-05]
	Updated math/py-munkres to 1.1.4 [wiz 2022-01-05]
	Added devel/py-test-mypy version 0.8.1 [wiz 2022-01-05]
	Updated devel/py-utils to 3.0.0 [wiz 2022-01-05]
	Updated devel/py-progressbar2 to 4.0.0 [wiz 2022-01-05]
	Updated geography/qgis to 3.16.15 [gdt 2022-01-06]
	Updated geography/geoclue to 2.5.7 [gdt 2022-01-06]
	Updated x11/citron to 0.11.0 [pin 2022-01-06]
	Updated editors/feathernotes to 0.10.0 [pin 2022-01-06]
	Updated sysutils/macchina to 6.0.5 [pin 2022-01-06]
	Updated devel/leahneukirchen-redo to 0.3nb1 [schmonz 2022-01-06]
	Updated www/py-httpcore to 0.14.4 [adam 2022-01-06]
	Updated www/py-httpx to 0.21.2 [adam 2022-01-06]
	Added devel/goredo version 1.21.0 [schmonz 2022-01-06]
	Updated devel/nss to 3.74 [wiz 2022-01-06]
	Updated multimedia/mpv to 0.34.1 [leot 2022-01-06]
	Updated net/syncthing to 1.18.5 [triaxx 2022-01-06]
	Updated devel/py-setuptools to 60.3.1 [adam 2022-01-07]
	Updated textproc/py-pygments to 2.11.2 [adam 2022-01-07]
	Updated textproc/uriparser to 0.9.6 [nros 2022-01-07]
	Added x11/xtar version 1.4 [nia 2022-01-07]
	Updated x11/st-term to 0.8.5 [leot 2022-01-07]
	Updated wm/dwm to 6.3 [leot 2022-01-07]
	Updated www/py-urllib3 to 1.26.8 [adam 2022-01-07]
	Updated devel/py-requests to 2.27.1 [adam 2022-01-07]
	Updated www/py-httpx to 0.21.3 [adam 2022-01-07]
	Updated textproc/py-tomli to 2.0.0 [adam 2022-01-07]
	Updated converters/py-charset-normalizer to 2.0.10 [adam 2022-01-07]
	Updated misc/py-platformdirs to 2.4.1 [adam 2022-01-07]
	Updated devel/py-test-localserver to 0.5.1 [adam 2022-01-07]
	Updated devel/py-path to 16.3.0 [adam 2022-01-07]
	Updated sysutils/py-structlog to 21.5.0 [adam 2022-01-07]
	Updated devel/py-astroid to 2.9.2 [adam 2022-01-07]
	Updated devel/py-ipython to 7.31.0 [adam 2022-01-07]
	Updated devel/py-types-setuptools to 57.4.6 [adam 2022-01-07]
	Updated devel/py-types-toml to 0.10.2 [adam 2022-01-07]
	Updated devel/py-cwcwidth to 0.1.6 [adam 2022-01-07]
	Updated wm/fluxbox to 1.3.7nb6 [gutteridge 2022-01-07]
	Updated sysutils/binwalk to 2.3.3 [nikita 2022-01-07]
	Updated www/curl to 7.81.0 [adam 2022-01-07]
	Updated databases/sqlite3 to 3.37.2 [adam 2022-01-07]
	Updated databases/sqlite3-docs to 3.37.2 [adam 2022-01-07]
	Updated databases/sqlite3-tcl to 3.37.2 [adam 2022-01-07]
	Updated devel/lemon to 1.0.3.37.2 [adam 2022-01-07]
	Updated textproc/fmtlib to 8.1.1 [adam 2022-01-07]
	Updated textproc/jo to 1.6 [fcambus 2022-01-07]
	Updated net/synergy to 1.14.2.36 [tnn 2022-01-07]
	Updated textproc/py-prettytable to 3.0.0 [fcambus 2022-01-07]
	Updated devel/mob to 2.2.0 [schmonz 2022-01-08]
	Updated security/wolfssl to 5.1.1 [fox 2022-01-08]
	Updated devel/py-async-timeout to 4.0.2 [wiz 2022-01-08]
	Updated print/poppler to 22.01.0 [wiz 2022-01-08]
	Removed textproc/p5-yamcha [wiz 2022-01-08]
	Updated audio/py-mpd2 to 3.0.4 [wiz 2022-01-08]
	Updated devel/ruby-diva to 2.0.1 [tsutsui 2022-01-08]
	Updated net/ruby-pluggaloid to 1.7.0 [tsutsui 2022-01-08]
	Updated net/mikutter to 5.0.2 [tsutsui 2022-01-08]
	Updated net/mikutter-plugins-twitter to 5.0 [tsutsui 2022-01-08]
	Updated sysutils/felix to 0.3.0 [pin 2022-01-08]
	Updated editors/featherpad to 1.1.1 [pin 2022-01-08]
	Updated x11/citron to 0.13.0 [pin 2022-01-08]
	Updated sysutils/broot to 1.9.1 [pin 2022-01-08]
	Updated sysutils/entr to 5.1 [leot 2022-01-08]
	Updated devel/py-canonicaljson to 1.5.0 [adam 2022-01-08]
	Updated security/py-signedjson to 1.1.1 [adam 2022-01-08]
	Updated emulators/hercules4sdl to 4.4.1nb1 [rhialto 2022-01-08]
	Updated multimedia/libva to 2.13.0 [tnn 2022-01-09]
	Updated multimedia/libva-utils to 2.13.0 [tnn 2022-01-09]
	Updated www/varnish to 7.0.1 [tnn 2022-01-09]
	Updated sysutils/dua-cli to 2.16.0 [pin 2022-01-09]
	Added x11/py-qt5-webengine version 5.15.5 [rhialto 2022-01-09]
	Added devel/diff-so-fancy version 1.4.2 [wiz 2022-01-09]
	Updated misc/calibre to 4.11.0 [rhialto 2022-01-09]
	Updated editors/zim to 0.74.3 [wiz 2022-01-09]
	Updated misc/calibre to 4.23.0 [rhialto 2022-01-09]
	Updated lang/go116 to 1.16.13 [bsiegert 2022-01-09]
	Updated textproc/ruby-nokogiri to 1.13.0 [tsutsui 2022-01-09]
	Updated lang/go117 to 1.17.6 [bsiegert 2022-01-09]
	Updated textproc/bat to 0.19.0 [fox 2022-01-09]
	Updated devel/boost-build to 1.78.0 [ryoon 2022-01-10]
	Updated devel/boost-docs to 1.78.0 [ryoon 2022-01-10]
	Updated devel/boost-headers to 1.78.0 [ryoon 2022-01-10]
	Updated devel/boost-jam to 1.78.0 [ryoon 2022-01-10]
	Updated devel/boost-libs to 1.78.0 [ryoon 2022-01-10]
	Updated devel/boost-mpi to 1.78.0 [ryoon 2022-01-10]
	Updated devel/py-boost to 1.78.0 [ryoon 2022-01-10]
	Updated meta-pkgs/boost to 1.78.0 [ryoon 2022-01-10]
	Added security/hashcat version 6.2.5 [khorben 2022-01-10]
	Removed devel/codeville [wiz 2022-01-10]
	Updated devel/meld to 3.21.1 [wiz 2022-01-10]
	Removed textproc/py-4Suite [wiz 2022-01-10]
	Updated devel/guile-gcrypt to 0.3.0 [nikita 2022-01-10]
	Updated devel/py-filelock to 3.2.1 [adam 2022-01-10]
	Updated devel/py-astroid to 2.9.3 [adam 2022-01-10]
	Updated news/flnews to 1.0.1 [micha 2022-01-10]
	Updated net/samba4 to 4.13.16 [taca 2022-01-10]
	Updated security/php-gnupg to 1.5.1 [taca 2022-01-10]
	Updated www/pear-HTTP_Request2 to 2.5.1 [taca 2022-01-10]
	Updated mail/notmuch to 0.34.3 [ryoon 2022-01-10]
	Updated security/pcsc-lite to 1.9.5 [adam 2022-01-10]
	Updated devel/py-scard to 2.0.2 [adam 2022-01-10]
	Updated devel/py-sure to 2.0.0 [adam 2022-01-10]
	Updated sysutils/py-psutil to 5.9.0 [adam 2022-01-10]
	Updated devel/byacc to 20220109 [fcambus 2022-01-10]
	Added devel/py-deprecated version 1.2.13 [adam 2022-01-10]
	Updated databases/py-redis to 4.1.0 [adam 2022-01-10]
	Updated net/exabgp to 4.2.17 [wiz 2022-01-10]
	Added textproc/py-tomli_w version 1.0.0 [adam 2022-01-10]
	Updated devel/py-flit_core to 3.6.0 [adam 2022-01-10]
	Updated devel/py-flit to 3.6.0 [adam 2022-01-10]
	Added devel/py-distlib version 0.3.4 [adam 2022-01-10]
	Updated net/py-lexicon to 3.9.0 [adam 2022-01-10]
	Updated www/wordpress to 5.8.3 [morr 2022-01-10]
	Updated editors/vim to 8.2.3899 [morr 2022-01-10]
	Updated comms/py-rich to 11.0.0 [adam 2022-01-11]
	Updated comms/py-enrich to 1.2.7 [adam 2022-01-11]
	Updated lang/py-mypy to 0.931 [adam 2022-01-11]
	Updated www/py-respx to 0.19.1 [adam 2022-01-11]
	Updated lang/nodejs to 14.18.3 [adam 2022-01-11]
	Updated lang/nodejs12 to 12.22.9 [adam 2022-01-11]
	Updated security/py-gnupg to 0.4.8 [adam 2022-01-11]
	Updated devel/py-bitarray to 2.3.5 [adam 2022-01-11]
	Updated devel/py-aiounittest to 1.4.1 [adam 2022-01-11]
	Updated databases/py-apsw to 3.37.0 [adam 2022-01-11]
	Updated textproc/py-black to 21.12b0 [adam 2022-01-11]
	Updated graphics/feh to 3.8 [nia 2022-01-11]
	Updated games/nxengine-evo to 2.6.5.1 [nia 2022-01-11]
	Updated devel/SDL2 to 2.0.20 [nia 2022-01-11]
	Added devel/pax-utils version 1.3.3 [fcambus 2022-01-11]
	Updated sysutils/xplr to 0.17.1 [pin 2022-01-11]
	Added devel/py-cachy version 0.3.0 [adam 2022-01-11]
	Updated devel/py-cachecontrol to 0.12.10nb3 [adam 2022-01-11]
	Added comms/py-pastel version 0.2.1 [adam 2022-01-11]
	Added textproc/py-pylev version 1.4.0 [adam 2022-01-11]
	Added comms/py-clikit version 0.6.2 [adam 2022-01-11]
	Added comms/py-cleo version 0.8.1 [adam 2022-01-11]
	Added misc/py-crashtest version 0.3.1 [adam 2022-01-11]
	Added misc/py-shellingham version 1.4.0 [adam 2022-01-11]
	Added textproc/py-tomlkit version 0.8.0 [adam 2022-01-11]
	Added devel/py-poetry-core version 1.0.7 [adam 2022-01-11]
	Added devel/py-poetry version 1.1.12 [adam 2022-01-11]
	Updated net/rabbitmq to 3.9.12 [adam 2022-01-12]
	Updated devel/py-pybind11 to 2.9.0 [adam 2022-01-12]
	Updated devel/texttest to 4.0.9 [schmonz 2022-01-12]
	Updated lang/vala to 0.54.6 [adam 2022-01-12]
	Updated x11/gtk3 to 3.24.31 [adam 2022-01-12]
	Updated news/tin to 2.6.1 [micha 2022-01-12]
	Moved devel/py-Deprecated to devel/py-deprecated [adam 2022-01-12]
	Updated devel/py-llvmlite to 0.37.0 [wiz 2022-01-12]
	Added audio/py-soundfile version 0.10.3.1 [wiz 2022-01-12]
	Added devel/py-pooch version 1.5.2 [wiz 2022-01-12]
	Updated devel/tig to 2.5.5 [fcambus 2022-01-12]
	Updated www/jira-cli to 0.3.0 [fox 2022-01-13]
	Updated audio/fasttracker2 to 1.50 [fox 2022-01-13]
	Updated security/gcr to 3.38.1 [adam 2022-01-13]
	Updated security/pinentry to 1.2.0 [adam 2022-01-13]
	Updated security/libksba to 1.6.0 [adam 2022-01-13]
	Updated devel/mob to 2.2.1 [schmonz 2022-01-13]
	Updated devel/binaryen to 105 [fcambus 2022-01-13]
	Updated misc/moreutils to 0.67 [leot 2022-01-13]
	Updated www/wiki-tui to 0.4.4 [pin 2022-01-13]
	Updated audio/spotify-player to 0.5.2 [pin 2022-01-13]
	Updated sysutils/felix to 0.3.1 [pin 2022-01-13]
	Added sysutils/hexyl version 0.9.0 [schmonz 2022-01-13]
	Updated chat/prosody to 0.11.12 [wiz 2022-01-13]
	Updated security/clamav to 0.103.5 [taca 2022-01-13]
	Updated mail/neomutt to 20211029nb2 [wiz 2022-01-13]
	Updated www/py-sanic-routing to 21.12.0 [adam 2022-01-13]
	Updated www/py-sanic to 21.12.1 [adam 2022-01-13]
	Updated devel/py-setuptools_scm to 6.3.2 [wiz 2022-01-13]
	Updated net/syncthing to 1.18.6 [triaxx 2022-01-13]
	Updated sysutils/fd-find to 8.3.1 [pin 2022-01-13]
	Updated textproc/libunistring to 1.0 [gdt 2022-01-14]
	Updated devel/binutils to 2.37nb1 [fcambus 2022-01-14]
	Removed devel/py-expressions [wiz 2022-01-14]
	Removed devel/py-grako [wiz 2022-01-14]
	Updated textproc/git-delta to 0.11.3 [pin 2022-01-14]
	Removed net/py-gandi.cli [wiz 2022-01-14]
	Updated shells/starship to 1.2.0 [pin 2022-01-14]
	Updated lang/ruby27-base to 2.7.5nb1 [taca 2022-01-14]
	Updated lang/ruby27 to 2.7.5nb1 [taca 2022-01-14]
	Updated lang/ruby26-base to 2.6.9nb1 [taca 2022-01-14]
	Updated lang/ruby26 to 2.6.9nb1 [taca 2022-01-14]
	Updated lang/ruby30-base to 3.0.3nb1 [taca 2022-01-14]
	Updated lang/ruby30 to 3.0.3nb1 [taca 2022-01-14]
	Updated archivers/ruby-xz to 1.0.2nb1 [taca 2022-01-14]
	Updated devel/ruby-iruby to 0.7.0nb1 [taca 2022-01-14]
	Updated www/termtter to 2.2.8nb1 [taca 2022-01-14]
	Removed devel/ruby-fiddle [taca 2022-01-14]
	Removed devel/py-windbg [wiz 2022-01-14]
	Updated devel/py-llvmlite to 0.38.0 [adam 2022-01-14]
	Updated math/py-numba to 0.55.0 [adam 2022-01-14]
	Updated devel/py-faker to 11.3.0 [adam 2022-01-14]
	Updated devel/p5-curry to 2.000001 [wen 2022-01-15]
	Updated chat/py-mautrix to 0.14.5 [js 2022-01-15]
	Updated net/unison-snapshot to 2.51.5.70.0 [gdt 2022-01-15]
	Updated net/unison-snapshot to 2.51.5.70.1 [gdt 2022-01-15]
	Updated www/firefox to 96.0.1 [ryoon 2022-01-15]
	Updated www/firefox-l10n to 96.0.1 [ryoon 2022-01-15]
	Updated lang/python39 to 3.9.10 [adam 2022-01-15]
	Updated lang/py39-html-docs to 3.9.10 [adam 2022-01-15]
	Updated lang/python310 to 3.10.2 [adam 2022-01-15]
	Updated lang/py310-html-docs to 3.10.2 [adam 2022-01-15]
	Updated devel/ugdb to 0.1.11 [pin 2022-01-15]
	Updated sysutils/felix to 0.3.2 [pin 2022-01-15]
	Updated security/tlswrapper to 20220114 [buildbox 2022-01-15]
	Updated chat/py-telethon to 1.24.0 [js 2022-01-15]
	Updated chat/mautrix-telegram to 0.11.1 [js 2022-01-15]
	Added chat/py-tulir-telethon version 1.25.0a3 [js 2022-01-15]
	Updated shells/starship to 1.2.1 [pin 2022-01-15]
	Updated www/py-aiohttp to 3.8.1 [js 2022-01-15]
	Updated print/foliate to 2.6.4 [fox 2022-01-16]
	Updated devel/py-anyio to 3.5.0 [adam 2022-01-16]
	Updated devel/py-utils to 3.1.0 [adam 2022-01-16]
	Added devel/py-frozenlist version 1.2.0 [adam 2022-01-16]
	Added devel/py-aiosignal version 1.2.0 [adam 2022-01-16]
	Updated textproc/ruby-nokogiri to 1.13.1 [tsutsui 2022-01-16]
	Updated devel/byacc to 20220114 [fcambus 2022-01-16]
	Added comms/syncterm version 1.1 [nia 2022-01-16]
	Added databases/ruby-dbm version 1.1.0 [taca 2022-01-16]
	Added databases/ruby-gdbm-gem version 2.1.0 [taca 2022-01-16]
	Updated security/lua-bcrypt to 2.2.1 [nia 2022-01-16]
	Added lang/ruby31-base version 3.1.0 [taca 2022-01-16]
	Added lang/ruby31 version 3.1.0 [taca 2022-01-16]
	Updated devel/ruby-activesupport70 to 7.0.1 [taca 2022-01-16]
	Updated devel/ruby-activemodel70 to 7.0.1 [taca 2022-01-16]
	Updated devel/ruby-activejob70 to 7.0.1 [taca 2022-01-16]
	Updated www/ruby-actionview70 to 7.0.1 [taca 2022-01-16]
	Updated www/ruby-actionpack70 to 7.0.1 [taca 2022-01-16]
	Updated databases/ruby-activerecord70 to 7.0.1 [taca 2022-01-16]
	Updated devel/ruby-activestorage70 to 7.0.1 [taca 2022-01-16]
	Updated mail/ruby-actionmailer70 to 7.0.1 [taca 2022-01-16]
	Updated mail/ruby-actionmailbox70 to 7.0.1 [taca 2022-01-16]
	Updated www/ruby-actioncable70 to 7.0.1 [taca 2022-01-16]
	Updated devel/ruby-railties70 to 7.0.1 [taca 2022-01-16]
	Updated textproc/ruby-actiontext70 to 7.0.1 [taca 2022-01-16]
	Updated www/ruby-rails70 to 7.0.1 [taca 2022-01-16]
	Updated games/liblcf to 0.7.0 [nia 2022-01-16]
	Updated games/easyrpg-player to 0.7.0 [nia 2022-01-16]
	Updated textproc/ruby-csv to 3.2.2 [taca 2022-01-16]
	Updated sysutils/lsd to 0.21.0 [pin 2022-01-16]
	Updated ham/gnuradio-channels to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-companion to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-core to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-ctrlport to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-digital to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-doxygen to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-dtv to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-fec to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-network to 3.10.0.0 [tnn 2022-01-16]
	Added ham/gnuradio-pdu version 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-qtgui to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-soapy-sdr to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-trellis to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-uhd to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-utils to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-video-sdl to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-vocoder to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-wavelet to 3.10.0.0 [tnn 2022-01-16]
	Updated ham/gnuradio-zeromq to 3.10.0.0 [tnn 2022-01-16]
	Updated pkgtools/pkglint to 21.4.2 [rillig 2022-01-16]
	Updated wm/fluxbox to 1.3.7nb7 [gutteridge 2022-01-16]
	Updated fonts/SDL2_ttf to 2.0.18 [wiz 2022-01-16]
	Updated net/mtr to 0.95 [wiz 2022-01-16]
	Updated devel/libsigsegv to 2.14 [wiz 2022-01-16]
	Updated devel/libuv to 1.43.0 [wiz 2022-01-16]
	Updated devel/readline to 8.1.2 [wiz 2022-01-16]
	Updated security/py-pip-audit to 1.1.2 [wiz 2022-01-16]
	Updated math/double-conversion to 3.2.0 [wiz 2022-01-16]
	Updated benchmarks/google-benchmark to 1.6.1 [wiz 2022-01-16]
	Updated www/neon to 0.32.2 [wiz 2022-01-16]
	Updated devel/py-mercurial to 6.0.1 [wiz 2022-01-16]
	Updated textproc/expat to 2.4.3 [wiz 2022-01-17]
	Updated math/py-asteval to 0.9.26 [adam 2022-01-17]
	Updated biology/py-cutadapt to 3.5 [adam 2022-01-17]
	Added textproc/py-astropy-sphinx-theme version 1.1 [wiz 2022-01-17]
	Added textproc/py-sphinx-automodapi version 0.14.1 [wiz 2022-01-17]
	Added textproc/py-sphinx-gallery version 0.10.1 [wiz 2022-01-17]
	Added devel/py-test-doctestplus version 0.11.2 [wiz 2022-01-17]
	Added textproc/py-sphinx-astropy version 1.7.0 [wiz 2022-01-17]
	Added math/py-astropy-helpers version 4.0.1 [wiz 2022-01-17]
	Removed math/py-astroquery [wiz 2022-01-17]
	Removed math/py-astroplan [wiz 2022-01-17]
	Removed math/py-pyvo [wiz 2022-01-17]
	Updated www/hackernews-tui to 0.9.1 [pin 2022-01-17]
	Updated audio/spotify-qt to 3.8 [pin 2022-01-17]
	Updated audio/termusic to 0.6.6 [pin 2022-01-17]
	Added games/xsol version 0.31 [nia 2022-01-17]
	Updated games/lgogdownloader to 3.8 [nia 2022-01-17]
	Updated games/quakespasm to 0.94.3 [nia 2022-01-17]
	Updated x11/mlterm to 3.9.2 [tsutsui 2022-01-17]
	Updated games/doomlegacy to 1.48.10 [micha 2022-01-17]
	Updated devel/ruby-atk to 3.5.1 [tsutsui 2022-01-17]
	Updated devel/ruby-gio2 to 3.5.1 [tsutsui 2022-01-17]
	Updated devel/ruby-glib2 to 3.5.1 [tsutsui 2022-01-17]
	Updated devel/ruby-gobject-introspection to 3.5.1 [tsutsui 2022-01-17]
	Updated devel/ruby-pango to 3.5.1 [tsutsui 2022-01-17]
	Updated graphics/ruby-cairo-gobject to 3.5.1 [tsutsui 2022-01-17]
	Updated graphics/ruby-clutter to 3.5.1 [tsutsui 2022-01-17]
	Updated graphics/ruby-clutter-gdk to 3.5.1 [tsutsui 2022-01-17]
	Updated graphics/ruby-clutter-gtk to 3.5.1 [tsutsui 2022-01-17]
	Updated graphics/ruby-gdk3 to 3.5.1 [tsutsui 2022-01-17]
	Updated graphics/ruby-gdk_pixbuf2 to 3.5.1 [tsutsui 2022-01-17]
	Updated graphics/ruby-rsvg2 to 3.5.1 [tsutsui 2022-01-17]
	Updated multimedia/ruby-clutter-gstreamer to 3.5.1 [tsutsui 2022-01-17]
	Updated multimedia/ruby-gstreamer to 3.5.1 [tsutsui 2022-01-17]
	Updated print/ruby-poppler to 3.5.1 [tsutsui 2022-01-17]
	Updated www/ruby-webkit-gtk to 3.5.1 [tsutsui 2022-01-17]
	Updated x11/ruby-gtk3 to 3.5.1 [tsutsui 2022-01-17]
	Updated x11/ruby-gtksourceview3 to 3.5.1 [tsutsui 2022-01-17]
	Added archivers/py-unrardll version 0.1.5 [rhialto 2022-01-17]
	Updated www/py-uvicorn to 0.17.0 [adam 2022-01-17]
	Updated databases/py-redis to 4.1.1 [adam 2022-01-17]
	Updated lang/ghc90 to 9.0.2 [pho 2022-01-18]
	Updated net/py-grpcio-tools to 1.43.0 [adam 2022-01-18]
	Updated textproc/py-precis-i18n to 1.0.4 [adam 2022-01-18]
	Updated www/p5-libwww to 6.60 [wen 2022-01-18]
	Updated www/p5-CGI-Simple to 1.280 [wen 2022-01-18]
	Updated devel/p5-Moose to 2.2201 [wen 2022-01-18]
	Updated devel/p5-Perl-PrereqScanner-NotQuiteLite to 0.9914 [wen 2022-01-18]
	Updated textproc/p5-PDF-API2 to 2.043 [wen 2022-01-18]
	Updated devel/ruby-redmine42 to 4.2.3nb3 [taca 2022-01-18]
	Updated geography/gdal-lib to 3.4.1 [gdt 2022-01-18]
	Updated geography/py-gdal to 3.4.1 [gdt 2022-01-18]
	Added x11/py-sip5 version 5.5.0 [rhialto 2022-01-18]
	Added x11/py-qt-builder version 1.12.2 [rhialto 2022-01-18]
	Updated geography/qgis to 3.16.16 [gdt 2022-01-18]
	Updated archivers/zstd to 1.5.1 [adam 2022-01-19]
	Updated archivers/py-zstandard to 0.17.0 [adam 2022-01-19]
	Updated www/py-httpcore to 0.14.5 [adam 2022-01-19]
	Updated devel/py-frozenlist to 1.3.0 [adam 2022-01-19]
	Updated www/py-django2 to 2.2.26 [adam 2022-01-19]
	Updated www/py-django3 to 3.2.11 [adam 2022-01-19]
	Updated shells/nushell to 0.43.0 [pin 2022-01-19]
	Updated sysutils/navi to 2.19.0 [pin 2022-01-19]
	Updated x11/citron to 0.14.0 [pin 2022-01-19]
	Added sysutils/hcal version 0.3.1 [pin 2022-01-19]
	Updated devel/py-setuptools_scm to 6.4.2 [adam 2022-01-19]
	Updated net/rabbitmq to 3.9.13 [adam 2022-01-19]
	Updated audio/ncspot to 0.9.5 [pin 2022-01-19]
	Removed security/py-Des [wiz 2022-01-19]
	Added sysutils/py-jeepney version 0.6.0 [rhialto 2022-01-19]
	Updated audio/schismtracker to 20211116 [nia 2022-01-19]
	Updated net/get_iplayer to 3.28 [nia 2022-01-19]
	Updated security/gnutls to 3.7.3 [adam 2022-01-19]
	Added devel/py-trio version 0.19.0 [rhialto 2022-01-19]
	Updated www/lighttpd to 1.4.64 [schmonz 2022-01-19]
	Updated emulators/mednafen to 1.29.0 [nia 2022-01-19]
	Added devel/py-outcome version 1.1.0 [wiz 2022-01-19]
	Updated graphics/ristretto to 0.12.2 [gutteridge 2022-01-20]
	Updated x11/xfce4-indicator-plugin to 2.4.1 [gutteridge 2022-01-20]
	Updated sysutils/etckeeper to 1.18.16nb1 [schmonz 2022-01-20]
	Updated devel/go-staticcheck to 2021.1.2 [bsiegert 2022-01-20]
	Updated misc/calibre to 5.34.0 [rhialto 2022-01-20]
	Updated databases/openldap to 2.6.1 [adam 2022-01-20]
	Updated textproc/ugrep to 3.6.0 [adam 2022-01-20]
	Updated net/djbdnscurve6 to 41 [schmonz 2022-01-20]
	Updated www/grafana to 8.3.4 [tnn 2022-01-20]
	Updated sysutils/htop to 3.1.2 [fox 2022-01-20]
	Added devel/conftest version 0.30.0 [leot 2022-01-20]
	Updated devel/p5-Config-Tiny to 2.28 [wen 2022-01-21]
	Updated devel/ruby-redmine41 to 4.1.5nb2 [taca 2022-01-21]
	Updated lang/php80 to 8.0.15 [taca 2022-01-21]
	Updated devel/p5-Graph to 0.9725 [wen 2022-01-21]
	Updated devel/p5-JSONSchema-Validator to 0.010 [wen 2022-01-21]
	Updated devel/p5-File-MimeInfo to 0.31 [wen 2022-01-21]
	Updated devel/p5-Graph-ReadWrite to 2.10 [wen 2022-01-21]
	Updated devel/p5-Test-File to 1.991 [wen 2022-01-21]
	Updated editors/ed to 1.17 [wen 2022-01-21]
	Updated x11/lxqt-globalkeys to 1.0.1 [pin 2022-01-21]
	Updated databases/mysql57-client to 5.7.37 [adam 2022-01-21]
	Updated databases/mysql57-server to 5.7.37 [adam 2022-01-21]
	Updated www/webkit-gtk to 2.34.4 [leot 2022-01-21]
	Updated devel/py-pyparsing to 3.0.7 [adam 2022-01-21]
	Updated net/py-aioresponses to 0.7.3 [adam 2022-01-21]
	Added fonts/JetBrainsMono-ttf version 2.242 [wiz 2022-01-21]
	Updated textproc/py-markovify to 0.9.3 [nikita 2022-01-21]
	Updated databases/guile-sqlite3 to 0.1.3 [nikita 2022-01-21]
	Updated textproc/guile-json to 4.7.0 [nikita 2022-01-21]
	Added comms/c3270 version 4.1ga11 [bsiegert 2022-01-21]
	Updated devel/guile-git to 0.5.2 [nikita 2022-01-21]
	Updated games/wordsearch to 2.1 [gutteridge 2022-01-21]
	Updated games/wesnoth to 1.16.2 [adam 2022-01-21]
	Updated lang/rust to 1.57.0 [he 2022-01-21]
	Updated net/yt-dlp to 2022.1.21 [ryoon 2022-01-22]
	Updated print/ghostscript-agpl to 9.55.0nb2 [triaxx 2022-01-22]
	Updated sysutils/dua-cli to 2.17.0 [pin 2022-01-22]
	Updated geography/echomap to 0.6.2 [pin 2022-01-22]
	Updated lang/rust-src to 1.57.0 [he 2022-01-22]
	Added sysutils/minipro version 0.5 [thorpej 2022-01-22]
	Updated archivers/lziprecover to 1.23 [fcambus 2022-01-22]
	Added meta-pkgs/aspell-languages version 20220122 [bsiegert 2022-01-22]
	Updated misc/dialog to 1.3.20220117 [fcambus 2022-01-22]
	Updated lang/rust-analyzer to 0.0.2021.12.27 [wiz 2022-01-22]
	Updated lang/rust-analyzer to 0.0.2022.01.03 [wiz 2022-01-22]
	Updated lang/rust-analyzer to 0.0.2022.01.10 [wiz 2022-01-22]
	Updated print/indexinfo to 0.3.1 [mef 2022-01-23]
	Updated sysutils/py-jeepney to 0.7.1 [adam 2022-01-23]
	Updated devel/py-setuptools to 60.5.0 [adam 2022-01-23]
	Updated textproc/po4a to 0.66 [schmonz 2022-01-23]
	Added net/ratman version 0.3.1 [nia 2022-01-23]
	Updated devel/MoarVM to 2021.12 [mef 2022-01-23]
	Updated lang/nqp to 2021.12 [mef 2022-01-23]
	Updated x11/alacritty to 0.10.0 [pin 2022-01-23]
	Updated misc/calibre to 5.35.0 [rhialto 2022-01-23]
	Updated devel/py-aenum to 3.1.7 [adam 2022-01-23]
	Updated math/py-simpleeval to 0.9.12 [adam 2022-01-23]
	Updated finance/py-stripe to 2.65.0 [adam 2022-01-23]
	Updated time/py-l18n to 2021.3 [adam 2022-01-23]
	Added sysutils/xe version 0.11 [schmonz 2022-01-23]
	Added lang/py-executing version 0.8.2 [adam 2022-01-23]
	Added lang/py-pure-eval version 0.2.2 [adam 2022-01-23]
	Added sysutils/py-stack-data version 0.1.4 [adam 2022-01-23]
	Added devel/py-typeguard version 2.13.3 [adam 2022-01-23]
	Updated multimedia/py-m3u8 to 1.0.0 [adam 2022-01-24]
	Updated net/py-scp to 0.14.2 [adam 2022-01-24]
	Updated devel/c++gsl to 3.1.0 [nros 2022-01-23]
	Updated archivers/lunzip to 1.13 [fcambus 2022-01-23]
	Updated lang/yabasic to 2.90.2 [fcambus 2022-01-23]
	Updated archivers/zstd to 1.5.2 [wiz 2022-01-23]
	Updated www/links to 2.25 [fcambus 2022-01-23]
	Updated www/links-gui to 2.25 [fcambus 2022-01-23]
	Updated graphics/ImageMagick to 7.1.0.20 [wiz 2022-01-23]
	Updated devel/gopls to 0.7.5 [wiz 2022-01-23]
	Updated math/imath to 3.1.4 [wiz 2022-01-23]
	Updated security/p11-kit to 0.24.1 [wiz 2022-01-23]
	Updated devel/ocaml-findlib to 1.9.2 [wiz 2022-01-23]
	Updated www/restish to 0.9.3 [wiz 2022-01-23]
	Updated textproc/libuninameslist to 20211114 [fcambus 2022-01-23]
	Updated lang/rakudo to 2021.12 [mef 2022-01-23]
	Updated devel/py-approvaltests to 3.4.0 [schmonz 2022-01-24]
	Updated lang/rust-analyzer to 0.0.2022.01.24 [wiz 2022-01-24]
	Updated databases/py-multidict to 6.0.0 [wiz 2022-01-24]
	Updated audio/alsa-lib to 1.2.6.1 [wiz 2022-01-24]
	Updated audio/alsa-utils to 1.2.6 [wiz 2022-01-24]
	Updated audio/alsa-plugins-oss to 1.2.6 [wiz 2022-01-24]
	Updated audio/alsa-plugins-pulse to 1.2.6 [wiz 2022-01-24]
	Updated devel/py-aenum to 3.1.8 [adam 2022-01-24]
	Updated devel/py-typed-ast to 1.5.2 [adam 2022-01-24]
	Updated mail/fetchmail to 6.4.26 [triaxx 2022-01-24]
	Updated mail/fetchmailconf to 6.4.26 [triaxx 2022-01-24]
	Updated security/py-cryptodome to 3.13.0 [adam 2022-01-24]
	Updated security/py-asyncssh to 2.9.0 [adam 2022-01-24]
	Updated audio/pt2-clone to 1.39 [nia 2022-01-24]
	Updated lang/php81 to 8.1.2 [taca 2022-01-24]
	Updated games/etlegacy to 2.79.0 [nia 2022-01-24]
	Updated www/py-h11 to 0.13.0 [adam 2022-01-24]
	Updated www/py-djangorestframework to 3.13.1 [adam 2022-01-24]
	Updated games/etlegacy-server to 2.79.0 [nia 2022-01-24]
	Updated devel/binutils to 2.37nb2 [fcambus 2022-01-24]
	Updated x11/xlockmore to 5.68 [micha 2022-01-24]
	Updated x11/xlockmore-lite to 5.68 [micha 2022-01-24]
	Updated textproc/py-sphinx to 4.4.0 [adam 2022-01-24]
	Updated net/py-responses to 0.17.0 [adam 2022-01-24]
	Added graphics/py-matplotlib-inline version 0.1.3 [adam 2022-01-24]
	Updated devel/py-ipython to 8.0.1 [adam 2022-01-24]
	Updated math/py-pythran to 0.11.0 [adam 2022-01-24]
	Updated cad/klayout to 0.27.7 [mef 2022-01-24]
	Removed graphics/py-biggles [wiz 2022-01-25]
	Removed math/py-Scientific-doc [wiz 2022-01-25]
	Removed math/py-Scientific [wiz 2022-01-25]
	Removed graphics/py-fits [wiz 2022-01-25]
	Removed graphics/py-gnuplot [wiz 2022-01-25]
	Updated devel/spdlog to 1.9.2 [mef 2022-01-25]
	Updated www/php-dotclear to 2.20.1 [triaxx 2022-01-25]
	Added devel/py-importlib-metadata2 version 2.0.0nb1 [wiz 2022-01-25]
	Updated devel/py-importlib-metadata to 4.10.1 [wiz 2022-01-25]
	Updated www/py-uwsgi to 2.0.20 [wiz 2022-01-25]
	Updated www/firefox to 96.0.2 [ryoon 2022-01-25]
	Updated www/firefox-l10n to 96.0.2 [ryoon 2022-01-25]
	Updated security/olm to 3.2.10 [ryoon 2022-01-25]
	Added security/py-olm version 3.2.10 [ryoon 2022-01-25]
	Added chat/py-matrix-nio version 0.18.7 [ryoon 2022-01-25]
	Updated devel/py-unpaddedbase64 to 2.1.0 [wiz 2022-01-25]
	Updated editors/vim-share to 8.2.4214 [morr 2022-01-25]
	Updated misc/libreoffice to 7.2.5.2 [ryoon 2022-01-25]
	Updated devel/automake to 1.16.5nb1 [wiz 2022-01-25]
	Updated devel/memcached to 1.6.13 [jperkin 2022-01-25]
	Updated audio/termusic to 0.6.7 [pin 2022-01-25]
	Updated sysutils/hcal to 0.3.3 [pin 2022-01-25]
	Updated security/polkit to 0.120nb2 [wiz 2022-01-25]
	Added sysutils/dusage version 0.2.0 [pin 2022-01-25]
	Updated devel/cmake to 3.22.2 [adam 2022-01-25]
	Updated devel/cmake-gui to 3.22.2 [adam 2022-01-25]
	Updated sysutils/dusage to 0.2.1 [pin 2022-01-25]
	Updated x11/alacritty to 0.10.0nb1 [tpaul 2022-01-26]
	Updated www/firefox91 to 91.5.0 [ryoon 2022-01-26]
	Updated www/firefox91-l10n to 91.5.0 [ryoon 2022-01-26]
	Updated graphics/sane-backends to 1.0.32nb1 [triaxx 2022-01-26]
	Updated mail/postfix to 3.6.4 [triaxx 2022-01-26]
	Updated devel/SOPE5 to 5.5.0 [tm 2022-01-26]
	Updated devel/py-ordered-set to 4.1.0 [adam 2022-01-27]
	Updated www/py-httpx to 0.22.0 [adam 2022-01-27]
	Updated textproc/py-pandocfilters to 1.5.0 [adam 2022-01-27]
	Updated devel/py-jupyter_core to 4.9.1 [adam 2022-01-27]
	Added devel/py-types-ujson version 4.2.1 [wiz 2022-01-27]
	Updated net/py-gcs-oauth2-boto-plugin to 3.0 [wiz 2022-01-27]
	Added devel/py-testtools24 version 2.4.0nb1 [wiz 2022-01-27]
	Updated devel/py-testtools to 2.5.0 [wiz 2022-01-27]
	Updated devel/py-google-api-core to 1.31.1nb2 [wiz 2022-01-27]
	Updated www/py-google-api-python-client to 2.15.0nb2 [wiz 2022-01-27]
	Updated security/ccid to 1.5.0 [gdt 2022-01-27]
	Added net/castor version 0.8.18 [pin 2022-01-27]
	Updated net/bind916 to 9.16.25 [taca 2022-01-27]
	Updated www/drupal7 to 7.86 [taca 2022-01-27]
	Added net/dq version 20220101 [schmonz 2022-01-27]
	Updated security/libgpg-error to 1.44 [adam 2022-01-27]
	Updated devel/py-prompt_toolkit to 3.0.25 [adam 2022-01-27]
	Updated databases/py-redis to 4.1.2 [adam 2022-01-27]
	Updated textproc/ugrep to 3.7.0 [adam 2022-01-27]
	Updated lang/qore to 1.2 [nros 2022-01-27]
	Updated databases/qore-freetds-module to 1.1 [nros 2022-01-27]
	Updated databases/qore-mysql-module to 2.1 [nros 2022-01-27]
	Updated databases/qore-openldap-module to 1.2 [nros 2022-01-27]
	Updated databases/qore-pgsql-module to 3.1.1 [nros 2022-01-27]
	Updated databases/qore-sqlite3-module to 1.0.2 [nros 2022-01-27]
	Updated devel/qore-uuid-module to 1.4 [nros 2022-01-27]
	Updated emulators/vice to 3.6.1 [rhialto 2022-01-27]
	Updated security/qore-xmlsec-module to 1.0.0 [nros 2022-01-27]
	Updated devel/gyp to 0.1pre20210830.d6c5dd51dc3a60bf4ff32a5256713690a1a10376 [wiz 2022-01-27]
	Updated security/qore-ssh2-module to 1.4.1 [nros 2022-01-27]
	Updated textproc/qore-json-module to 1.8 [nros 2022-01-27]
	Updated textproc/qore-xml-module to 1.5.1 [nros 2022-01-27]
	Updated textproc/qore-yaml-module to 0.7 [nros 2022-01-27]
	Updated devel/goredo to 1.22.0 [schmonz 2022-01-27]
	Updated devel/extra-cmake-modules to 5.83.0 [wiz 2022-01-28]
	Updated devel/git to 2.35.0 [adam 2022-01-28]
	Updated archivers/unrar to 6.1.4 [adam 2022-01-28]
	Updated devel/py-prompt_toolkit to 3.0.26 [adam 2022-01-28]
	Updated math/py-numba to 0.55.1 [adam 2022-01-28]
	Updated audio/termusic to 0.6.9 [pin 2022-01-28]
	Updated www/wiki-tui to 0.4.5 [pin 2022-01-28]
	Added editors/xnedit version 1.4.0 [micha 2022-01-28]
	Updated www/nginx-devel to 1.21.6 [adam 2022-01-28]
	Updated textproc/ugrep to 3.7.1 [adam 2022-01-28]
	Added devel/py-gobject32 version 3.36.1nb3 [wiz 2022-01-28]
	Updated devel/py-gobject3-common to 3.42.0 [wiz 2022-01-28]
	Updated devel/py-gobject3 to 3.42.0 [wiz 2022-01-28]
	Updated graphics/py-scour to 0.38.2nb3 [wiz 2022-01-29]
	Updated math/py-numpy to 1.21.5nb4 [wiz 2022-01-29]
	Added devel/py-flake8-3 version 3.9.2nb3 [wiz 2022-01-29]
	Updated devel/py-flake8 to 4.0.1 [wiz 2022-01-29]
	Updated security/libssh to 0.96nb3 [wiz 2022-01-29]
	Updated sysutils/dusage to 0.2.2 [pin 2022-01-29]
	Updated devel/py-importlib-metadata to 4.10.1nb1 [wiz 2022-01-29]
	Updated devel/tevent to 0.11.0nb1 [thor 2022-01-29]
	Updated mail/roundcube to 1.5.2 [taca 2022-01-29]
	Updated mail/roundcube-plugin-enigma to 1.5.2 [taca 2022-01-29]
	Updated mail/roundcube-plugin-password to 1.5.2 [taca 2022-01-29]
	Updated mail/roundcube-plugin-zipdownload to 1.5.2 [taca 2022-01-29]
	Updated math/bcal to 2.4 [sjmulder 2022-01-29]
	Removed textproc/py-jsonlib [wiz 2022-01-29]
	Updated graphics/vulkan-headers to 1.3.204 [triaxx 2022-01-29]
	Updated net/mikutter to 5.0.4 [tsutsui 2022-01-30]
	Added textproc/py-breathe version 4.31.0 [gdt 2022-01-30]
	Updated textproc/py-breathe to 4.31.0nb1 [wiz 2022-01-30]
	Updated net/djbdnscurve6 to 42 [schmonz 2022-01-30]
	Added chat/py-matrix-common version 1.0.0 [js 2022-01-30]
	Updated chat/matrix-synapse to 1.51.0 [js 2022-01-30]
	Updated devel/byacc to 20220128 [fcambus 2022-01-30]
	Updated lang/quickjs to 20210327 [he 2022-01-30]
	Updated devel/py-frozendict to 2.2.1 [wiz 2022-01-30]
	Updated audio/strawberry to 1.0.1 [nia 2022-01-30]
	Updated geography/gama to 2.17 [gdt 2022-01-30]
	Updated devel/protobuf to 3.19.4 [adam 2022-01-30]
	Updated devel/py-protobuf to 3.19.4 [adam 2022-01-30]
	Updated wm/pekwm to 0.2.1 [nia 2022-01-30]
	Updated devel/mob to 2.3.0 [schmonz 2022-01-30]
	Updated devel/py-approvaltests to 3.5.0 [schmonz 2022-01-30]
	Updated devel/apel to 10.8.0.20201107 [mef 2022-01-31]
	Added devel/py-click7 version 7.1.2nb1 [wiz 2022-01-31]
	Updated devel/py-click to 8.0.3 [wiz 2022-01-31]
	Updated textproc/py-black to 22.1.0 [wiz 2022-01-31]
	Updated x11/xterm to 370nb1 [wiz 2022-01-31]
	Updated converters/py-charset-normalizer to 2.0.11 [adam 2022-01-31]
	Updated devel/py-setuptools to 60.6.0 [adam 2022-01-31]
	Updated devel/py-cython to 0.29.27 [adam 2022-01-31]
	Updated security/py-cryptodome to 3.14.0 [adam 2022-01-31]
	Updated emulators/mame to 0.240 [wiz 2022-01-31]
	Updated graphics/ImageMagick to 7.1.0.22 [wiz 2022-01-31]
	Updated devel/py-hypothesis to 6.36.1 [wiz 2022-01-31]
	Updated textproc/py-breathe to 4.32.0 [adam 2022-01-31]
	Updated net/py-lexicon to 3.9.2 [adam 2022-01-31]
	Added devel/py-mccabe06 version 0.6.1nb1 [wiz 2022-01-31]
	Updated devel/py-mccabe to 0.7.0 [wiz 2022-01-31]
	Updated databases/py-multidict to 6.0.2 [wiz 2022-01-31]
	Updated www/restish to 0.9.4 [wiz 2022-01-31]
	Updated audio/fluidsynth to 2.2.5 [wiz 2022-01-31]
	Updated misc/ocaml-topkg to 1.0.5 [wiz 2022-01-31]
	Updated www/py-uvicorn to 0.17.1 [adam 2022-01-31]
	Updated devel/py-fasteners to 0.17.3 [adam 2022-01-31]
	Updated devel/git to 2.35.1 [adam 2022-01-31]
	Updated net/haproxy to 2.5.1 [adam 2022-01-31]
	Updated net/samba4 to 4.13.17 [taca 2022-01-31]
	Updated lang/py-py3c to 1.4 [adam 2022-01-31]
	Updated devel/py-dogpile-cache to 1.1.5 [adam 2022-01-31]
	Updated mail/fetchmail to 6.4.27 [triaxx 2022-01-31]
	Updated mail/fetchmailconf to 6.4.27 [triaxx 2022-01-31]
	Updated databases/tdb to 1.4.6 [adam 2022-01-31]
	Updated comms/py-rich to 11.1.0 [adam 2022-01-31]
	Updated devel/py-pooch to 1.6.0 [adam 2022-01-31]
	Updated net/py-zeroconf to 0.38.1 [adam 2022-01-31]
	Added devel/py-nest-asyncio version 1.5.4 [adam 2022-01-31]
	Updated devel/py-jupyter_client to 7.1.2 [adam 2022-01-31]
	Updated www/py-ipywidgets to 7.6.5 [adam 2022-01-31]
	Added devel/py-debugpy version 1.5.1 [adam 2022-01-31]
	Updated www/firefox to 96.0.3 [ryoon 2022-01-31]
	Updated www/firefox-l10n to 96.0.3 [ryoon 2022-01-31]
	Updated devel/mold to 1.0.2 [fcambus 2022-01-31]
	Added multimedia/ffmpeg5 version 5.0 [ryoon 2022-01-31]
	Added multimedia/ffplay5 version 5.0 [ryoon 2022-01-31]
	Updated net/yt-dlp to 2022.1.21nb1 [ryoon 2022-01-31]
	Updated textproc/py-ICU to 2.8.1 [adam 2022-02-01]
	Updated net/iperf3 to 3.11 [adam 2022-02-01]
	Updated devel/py-clickclick to 20.10.2 [wiz 2022-02-01]
	Updated www/ap2-perl to 2.0.12 [wiz 2022-02-01]
	Updated textproc/expat to 2.4.4 [wiz 2022-02-01]
	Updated net/dbip-asn-lite to 2022.02 [fcambus 2022-02-01]
	Updated net/dbip-city-lite to 2022.02 [fcambus 2022-02-01]
	Updated net/dbip-country-lite to 2022.02 [fcambus 2022-02-01]
	Updated devel/mold to 1.0.3 [fcambus 2022-02-01]
	Updated audio/libopenmpt to 0.6.1 [fcambus 2022-02-01]
	Updated mail/feed2exec to 0.18.0 [schmonz 2022-02-01]
	Updated graphics/raleigh-reloaded to 1.4 [tsutsui 2022-02-01]
	Updated sysutils/felix to 0.4.0 [pin 2022-02-01]
	Added sysutils/bkt version 0.5.1 [pin 2022-02-01]
	Updated security/passphrase to 1.2 [nikita 2022-02-01]
	Updated net/syncthing to 1.19.0 [triaxx 2022-02-01]
	Updated www/py-django2 to 2.2.27 [adam 2022-02-02]
	Updated www/py-django3 to 3.2.12 [adam 2022-02-02]
	Updated shells/tcsh to 6.24.00 [kim 2022-02-02]
	Updated shells/static-tcsh to 6.24.00 [kim 2022-02-02]
	Updated shells/standalone-tcsh to 6.24.00 [kim 2022-02-02]
	Updated net/py-minio to 7.1.3 [adam 2022-02-02]
	Updated sysutils/py-magic to 0.4.25 [adam 2022-02-02]
	Updated sysutils/tsm8 to 8.1.13.0 [hauke 2022-02-02]
	Updated databases/phpmyadmin to 4.9.9 [tm 2022-02-02]
	Updated devel/ocaml-findlib to 1.9.3 [wiz 2022-02-02]
	Updated graphics/openexr to 3.1.4 [wiz 2022-02-02]
	Updated textproc/hgrep to 0.2.3 [pin 2022-02-02]
	Updated net/nagios-plugin-dotpid to 0.7 [manu 2022-02-02]
	Added print/tex-tikzpagenodes version 1.1 [manu 2022-02-02]
	Added print/tex-anyfontsize version 1.6 [manu 2022-02-02]
	Added misc/py-autocommand version 2.2.1 [adam 2022-02-02]
	Added devel/py-pip-run version 8.8.0 [adam 2022-02-02]
	Updated devel/py-setuptools to 60.7.0 [adam 2022-02-02]
	Updated devel/py-test-asyncio to 0.17.2 [adam 2022-02-02]
	Updated devel/py-setuptools to 60.7.1 [adam 2022-02-03]
	Updated www/py-httpcore to 0.14.6 [adam 2022-02-03]
	Updated devel/py-types-setuptools to 57.4.8 [adam 2022-02-03]
	Updated devel/py-types-toml to 0.10.3 [adam 2022-02-03]
	Updated net/grpc to 1.43.2 [wiz 2022-02-03]
	Updated textproc/py-css-parser to 1.0.7 [adam 2022-02-03]
	Updated textproc/py-tomlkit to 0.9.0 [adam 2022-02-03]
	Updated lang/llvm to 13.0.1 [adam 2022-02-03]
	Updated lang/clang to 13.0.1 [adam 2022-02-03]
	Updated lang/clang-tools-extra to 13.0.1 [adam 2022-02-03]
	Updated lang/compiler-rt to 13.0.1 [adam 2022-02-03]
	Updated lang/libcxx to 13.0.1 [adam 2022-02-03]
	Updated lang/libcxxabi to 13.0.1 [adam 2022-02-03]
	Updated lang/libunwind to 13.0.1 [adam 2022-02-03]
	Updated devel/lld to 13.0.1 [adam 2022-02-03]
	Updated devel/lldb to 13.0.1 [adam 2022-02-03]
	Updated devel/polly to 13.0.1 [adam 2022-02-03]
	Updated parallel/openmp to 13.0.1 [adam 2022-02-03]
	Updated mail/dovecot2 to 2.3.18 [adam 2022-02-03]
	Updated mail/dovecot2-pigeonhole to 0.5.18 [adam 2022-02-03]
	Updated sysutils/xplr to 0.17.2 [pin 2022-02-03]
	Updated devel/nss to 3.75 [wiz 2022-02-03]
	Updated mail/feed2exec to 0.18.0nb1 [wiz 2022-02-04]
	Updated www/ruby-rouge to 3.28.0 [fcambus 2022-02-04]
	Updated chat/element-web to 1.10.1 [js 2022-02-04]
	Added parallel/py-ipyparallel version 8.1.0 [adam 2022-02-04]
	Updated devel/py-ipykernel to 6.8.0 [adam 2022-02-04]
	Updated chat/gomuks to 0.2.4 [ryoon 2022-02-04]
	Removed www/aipo [ryoon 2022-02-04]
	Updated fonts/harfbuzz to 3.3.1 [ryoon 2022-02-04]
	Updated fonts/harfbuzz-icu to 3.3.1 [ryoon 2022-02-04]
	Updated graphics/blender to 2.93.5nb3 [ryoon 2022-02-04]
	Added sysutils/libtpms version 0.9.1 [ryoon 2022-02-05]
	Added sysutils/swtpm version 0.7.0 [ryoon 2022-02-05]
	Updated emulators/haxm to 7.7.0 [ryoon 2022-02-05]
	Updated devel/mdds to 2.0.1 [ryoon 2022-02-05]
	Updated converters/libetonyek to 0.1.10nb4 [ryoon 2022-02-05]
	Updated converters/orcus to 0.17.2 [ryoon 2022-02-05]
	Updated math/libixion to 0.17.0 [ryoon 2022-02-05]
	Updated math/py-libixion to 0.17.0 [ryoon 2022-02-05]
	Added graphics/zxing-cpp version 1.2.0 [ryoon 2022-02-05]
	Updated misc/libreoffice to 7.3.0.3 [ryoon 2022-02-05]
	Updated www/py-tornado to 6.1 [adam 2022-02-05]
	Added misc/py-ghp-import version 2.0.2 [adam 2022-02-05]
	Added devel/py-mergedeep version 1.3.4 [adam 2022-02-05]
	Added textproc/py-pyyaml_env_tag version 0.1 [adam 2022-02-05]
	Updated textproc/py-mkdocs to 1.2.3 [adam 2022-02-05]
	Updated textproc/py-mkdocs-bootstrap to 1.1 [adam 2022-02-05]
	Updated textproc/py-mkdocs-bootswatch to 1.1 [adam 2022-02-05]
	Added www/py-nbclient version 0.5.10 [adam 2022-02-05]
	Updated www/py-nbconvert to 6.4.1 [adam 2022-02-05]
	Updated devel/py-line_profiler to 3.4.0 [adam 2022-02-05]
	Updated sysutils/py-Send2Trash to 1.8.0 [adam 2022-02-05]
	Updated net/gallery-dl to 1.20.3 [leot 2022-02-05]
	Updated www/py-notebook to 6.4.8 [adam 2022-02-05]
	Updated www/py-httpcore to 0.14.7 [adam 2022-02-05]
	Updated net/py-zeroconf to 0.38.3 [adam 2022-02-05]
	Updated www/py-uvicorn to 0.17.4 [adam 2022-02-05]
	Updated net/py-twisted to 22.1.0rc1 [js 2022-02-05]
	Updated net/py-twisted-docs to 22.1.0rc1 [js 2022-02-05]
	Updated devel/py-treq to 22.1.0 [js 2022-02-05]
	Added mail/qtraceaddr version 20061202 [schmonz 2022-02-05]
	Updated finance/py-alphalens to 0.4.0 [adam 2022-02-05]
	Updated devel/py-pybind11 to 2.9.1 [adam 2022-02-05]
	Added www/arcticfox version 39.0 [nia 2022-02-05]
	Updated sysutils/xfce4-cpugraph-plugin to 1.2.6 [gutteridge 2022-02-06]
	Added lang/ghc92 version 9.2.1 [pho 2022-02-06]
	Added textproc/py-jupyterlab-pygments version 0.1.2 [adam 2022-02-06]
	Updated www/py-respx to 0.19.2 [adam 2022-02-06]
	Updated x11/wired-notify to 0.10.0 [pin 2022-02-06]
	Removed security/openvas-client [nia 2022-02-06]
	Removed security/openvas-libnasl [nia 2022-02-06]
	Removed security/openvas-libraries [nia 2022-02-06]
	Removed security/openvas-plugins [nia 2022-02-06]
	Removed security/openvas-server [nia 2022-02-06]
	Updated databases/gramps5 to 5.1.5 [gdt 2022-02-06]
	Updated lang/rust-analyzer to 0.0.2022.01.31 [adam 2022-02-06]
	Updated multimedia/mkvtoolnix to 65.0.0 [adam 2022-02-06]
	Updated fonts/harfbuzz to 3.3.2 [adam 2022-02-06]
	Updated fonts/harfbuzz-icu to 3.3.2 [adam 2022-02-06]
	Updated x11/xfce4-session to 4.16.0nb2 [gutteridge 2022-02-06]
	Updated pkgtools/url2pkg to 21.4.2 [rillig 2022-02-06]
	Updated security/py-oauthlib to 3.2.0 [adam 2022-02-06]
	Updated security/py-requests-oauthlib to 1.3.1 [adam 2022-02-06]
	Updated sysutils/bkt to 0.5.2 [pin 2022-02-07]
	Updated devel/wabt to 1.0.26 [fcambus 2022-02-07]
	Updated net/libfilezilla to 0.36.0 [wiz 2022-02-07]
	Updated net/filezilla to 3.57.0 [wiz 2022-02-07]
	Updated devel/py-setuptools to 60.8.1 [adam 2022-02-07]
	Updated devel/py-types-setuptools to 57.4.9 [adam 2022-02-07]
	Updated www/py-httplib2 to 0.20.4 [adam 2022-02-07]
	Updated devel/py-pip-api to 0.0.27 [adam 2022-02-07]
	Added textproc/py-sphinx-copybutton version 0.5.0 [wiz 2022-02-07]
	Added textproc/py-sphinx-inline-tabs version 2022.1.2beta11 [wiz 2022-02-07]
	Updated devel/py-prompt_toolkit to 3.0.27 [adam 2022-02-07]
	Updated parallel/py-ipyparallel to 8.2.0 [adam 2022-02-07]
	Updated www/py-django-cors-headers to 3.11.0 [adam 2022-02-07]
	Updated www/py-drf-nested-routers to 0.93.4 [adam 2022-02-07]
	Updated filesystems/py-fs to 2.4.15 [adam 2022-02-07]
	Updated security/py-cryptodome to 3.14.1 [adam 2022-02-07]
	Updated devel/py-pylint-plugin-utils to 0.7 [adam 2022-02-07]
	Updated devel/py-click-didyoumean to 0.3.0 [adam 2022-02-07]
	Updated fonts/py-fonttools to 4.29.1 [adam 2022-02-07]
	Updated devel/py-frozendict to 2.3.0 [adam 2022-02-07]
	Added devel/py-pep621 version 0.4.0 [wiz 2022-02-07]
	Added multimedia/gerbera version 1.9.2 [khorben 2022-02-08]
	Updated devel/py-ipykernel to 6.9.0 [adam 2022-02-08]
	Updated devel/py-packageurl to 0.9.7 [adam 2022-02-08]
	Updated devel/py-bitarray to 2.3.6 [adam 2022-02-08]
	Updated textproc/py-tomlkit to 0.9.1 [adam 2022-02-08]
	Updated devel/py-test-asyncio to 0.18.0 [adam 2022-02-08]
	Updated devel/py-test-mypy to 0.9.1 [adam 2022-02-08]
	Updated devel/py-xbe to 0.0.3 [adam 2022-02-08]
	Updated graphics/py-pygraphviz to 1.8 [adam 2022-02-08]
	Updated x11/kitty to 0.24.2 [pin 2022-02-08]
	Updated sysutils/macchina to 6.0.6 [pin 2022-02-08]
	Updated shells/nushell to 0.44.0 [pin 2022-02-08]
	Updated shells/starship to 1.3.0 [pin 2022-02-08]
	Updated x11/wired-notify to 0.10.1 [pin 2022-02-08]
	Updated sysutils/ansible-base to 2.10.17 [adam 2022-02-08]
	Updated databases/py-redis to 4.1.3 [adam 2022-02-08]
	Updated lang/rust-analyzer to 0.0.2022.02.07 [adam 2022-02-08]
	Updated textproc/ugrep to 3.7.2 [adam 2022-02-08]
	Added sysutils/trusted-firmware-a-fiptool v2.6.2.0 [mrg 2022-02-08]
	Added sysutils/trusted-firmware-a-rk3328 v2.6.2.0 [mrg 2022-02-08]
	Added sysutils/trusted-firmware-a-rk3399 v2.6.2.0 [mrg 2022-02-08]
	Added textproc/py-cmudict version 1.0.2 [gutteridge 2022-02-09]
	Updated sysutils/intel-microcode-netbsd to 20220207 [msaitoh 2022-02-09]
	Updated www/webkit-gtk to 2.34.5 [leot 2022-02-09]
	Updated archivers/lzip to 1.23 [fcambus 2022-02-09]
	Added textproc/jless version 0.7.1 [pin 2022-02-09]
	Added textproc/dbcat version 0.1.4 [pin 2022-02-09]
	Updated devel/py-serpent to 1.40 [adam 2022-02-09]
	Updated devel/py-Pyro to 4.82 [adam 2022-02-09]
	Updated editors/retext to 7.2.3 [gutteridge 2022-02-10]
	Updated www/py-nbconvert to 6.4.2 [adam 2022-02-10]
	Updated graphics/py-pygraphviz to 1.9 [adam 2022-02-10]
	Updated news/sfeed to 1.2 [leot 2022-02-10]
	Updated net/unbound to 1.15.0 [he 2022-02-10]
	Updated www/htmldoc to 1.9.15 [fcambus 2022-02-10]
	Updated www/htmldoc-x11 to 1.9.15 [fcambus 2022-02-10]
	Added net/asuka version 0.8.3 [pin 2022-02-10]
	Updated devel/binutils to 2.38 [fcambus 2022-02-10]
	Updated devel/py-dulwich to 0.20.32 [adam 2022-02-10]
	Updated math/py-xarray to 0.21.1 [adam 2022-02-10]
	Updated math/py-arviz to 0.11.4 [adam 2022-02-10]
	Updated misc/py-ansi to 0.3.6 [adam 2022-02-10]
	Updated net/yt-dlp to 2022.2.4 [schmonz 2022-02-10]
	Updated graphics/libansilove to 1.2.9 [fcambus 2022-02-10]
	Updated graphics/ansilove to 4.1.6 [fcambus 2022-02-10]
	Updated net/py-digitalocean to 1.17.0 [adam 2022-02-10]
	Updated devel/py-pathlib2 to 2.3.7 [adam 2022-02-10]
	Updated security/py-acme to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-apache to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-digitalocean to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-dnsimple to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-dnsmadeeasy to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-gehirn to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-google to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-linode to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-luadns to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-nsone to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-ovh to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-rfc2136 to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-route53 to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-dns-sakuracloud to 1.23.0 [adam 2022-02-10]
	Updated security/py-certbot-nginx to 1.23.0 [adam 2022-02-10]
	Updated sysutils/dusage to 0.2.3 [pin 2022-02-10]
	Updated time/hs-timezone-series to 0.1.13 [pho 2022-02-11]
	Updated textproc/hs-unicode-show to 0.1.1.0 [pho 2022-02-11]
	Updated audio/fasttracker2 to 1.51 [fox 2022-02-11]
	Updated databases/postgresql10 to 10.20 [adam 2022-02-11]
	Updated databases/postgresql11 to 11.15 [adam 2022-02-11]
	Updated databases/postgresql12 to 12.10 [adam 2022-02-11]
	Updated databases/postgresql13 to 13.6 [adam 2022-02-11]
	Updated databases/postgresql14 to 14.2 [adam 2022-02-11]
	Updated net/hs-network-info to 0.2.1 [pho 2022-02-11]
	Updated textproc/hs-regex-base to 0.94.0.2 [pho 2022-02-11]
	Updated security/hs-cryptohash-sha256 to 0.11.102.1 [pho 2022-02-11]
	Updated textproc/hs-regex-tdfa to 1.3.1.1 [pho 2022-02-11]
	Updated textproc/hs-Diff to 0.4.1 [pho 2022-02-11]
	Updated devel/hs-th-compat to 0.1.3 [pho 2022-02-11]
	Updated textproc/hs-prettyprinter to 1.7.1 [pho 2022-02-11]
	Updated devel/hs-indexed-traversable to 0.1.2 [pho 2022-02-11]
	Updated devel/hs-unix-compat to 0.5.4nb2 [pho 2022-02-11]
	Updated devel/hs-fingertree to 0.1.5.0nb2 [pho 2022-02-11]
	Updated devel/hs-cereal to 0.5.8.2 [pho 2022-02-11]
	Updated devel/hs-call-stack to 0.4.0 [pho 2022-02-11]
	Updated devel/hs-blaze-builder to 0.4.2.2 [pho 2022-02-11]
	Updated devel/hs-basement to 0.0.12 [pho 2022-02-11]
	Updated net/unbound to 1.15.0nb1 [he 2022-02-11]
	Updated devel/hs-base-orphans to 0.8.6 [pho 2022-02-11]
	Updated devel/hs-memory to 0.16.0 [pho 2022-02-11]
	Updated devel/hs-colour to 2.3.6 [pho 2022-02-11]
	Updated devel/hs-StateVar to 1.2.2 [pho 2022-02-11]
	Updated devel/hs-splitmix to 0.1.0.4 [pho 2022-02-11]
	Updated misc/hs-extra to 1.7.10 [pho 2022-02-11]
	Updated audio/termusic to 0.6.10 [pin 2022-02-11]
	Updated devel/hs-ansi-terminal to 0.11.1 [pho 2022-02-11]
	Updated wm/wmutils-core to 1.6 [pin 2022-02-11]
	Updated devel/alex to 3.2.7.1 [pho 2022-02-11]
	Added textproc/hs-unicode-data version 0.3.0 [pho 2022-02-11]
	Updated textproc/hs-unicode-transforms to 0.4.0 [pho 2022-02-11]
	Updated devel/py-prompt_toolkit to 3.0.28 [adam 2022-02-11]
	Updated net/wireshark to 3.6.2 [adam 2022-02-11]
	Updated wm/wmutils-opt to 1.0 [pin 2022-02-11]
	Updated devel/py-zope.hookable to 5.1.0 [adam 2022-02-11]
	Updated devel/py-zope.exceptions to 4.5 [adam 2022-02-11]
	Updated www/py-zope.proxy to 4.5.0 [adam 2022-02-11]
	Updated devel/py-zope.deferredimport to 4.4 [adam 2022-02-11]
	Updated textproc/hs-jira-wiki-markup to 1.4.0 [pho 2022-02-11]
	Updated textproc/hs-commonmark to 0.2.1.1 [pho 2022-02-11]
	Updated net/hs-network to 3.1.2.7 [pho 2022-02-11]
	Added lang/hs-lua version 2.1.0 [pho 2022-02-11]
	Added lang/hs-hslua-core version 2.1.0 [pho 2022-02-11]
	Added lang/hs-hslua-marshalling version 2.1.0 [pho 2022-02-11]
	Added lang/hs-hslua-classes version 2.1.0 [pho 2022-02-11]
	Added lang/hs-hslua-objectorientation version 2.1.0 [pho 2022-02-11]
	Added lang/hs-hslua-packaging version 2.1.0 [pho 2022-02-11]
	Updated lang/hs-hslua to 2.1.0 [pho 2022-02-11]
	Updated devel/hs-random to 1.2.1 [pho 2022-02-11]
	Updated devel/hs-file-embed to 0.0.15.0 [pho 2022-02-11]
	Updated converters/hs-emojis to 0.1.2 [pho 2022-02-11]
	Updated converters/hs-base64-bytestring to 1.2.1.0 [pho 2022-02-11]
	Updated converters/hs-base16-bytestring to 1.0.2.0 [pho 2022-02-11]
	Updated devel/hs-base-compat to 0.12.1 [pho 2022-02-11]
	Updated devel/hs-th-abstraction to 0.4.3.0 [pho 2022-02-11]
	Updated devel/hs-primitive to 0.7.3.0 [pho 2022-02-11]
	Updated devel/hs-hashable to 1.4.0.2 [pho 2022-02-11]
	Updated devel/hs-base-compat-batteries to 0.12.1 [pho 2022-02-11]
	Updated security/hs-digest to 0.0.1.3 [pho 2022-02-11]
	Updated time/hs-timezone-olson to 0.2.1 [pho 2022-02-11]
	Updated textproc/hs-text-short to 0.1.5 [pho 2022-02-11]
	Updated security/hs-cryptonite to 0.29 [pho 2022-02-11]
	Updated net/hs-iproute to 1.7.12 [pho 2022-02-11]
	Updated textproc/hs-regex-posix to 0.96.0.1 [pho 2022-02-11]
	Added devel/hs-Cabal-syntax version 3.6.0.0 [pho 2022-02-11]
	Updated security/hs-hackage-security to 0.6.2.0 [pho 2022-02-11]
	Updated devel/pointfree to 1.1.1.8 [pho 2022-02-11]
	Updated devel/hs-psqueues to 0.2.7.3 [pho 2022-02-11]
	Updated textproc/hs-prettyprinter-ansi-terminal to 1.1.3 [pho 2022-02-11]
	Updated devel/hs-generic-deriving to 1.14.1 [pho 2022-02-11]
	Updated devel/hs-foundation to 0.0.26.1 [pho 2022-02-11]
	Updated devel/hs-resourcet to 1.2.4.3 [pho 2022-02-11]
	Updated devel/hs-async to 2.2.4 [pho 2022-02-11]
	Updated devel/hs-transformers-compat to 0.7.1 [pho 2022-02-11]
	Updated textproc/hs-hslua-module-text to 1.0.1 [pho 2022-02-11]
	Updated textproc/hs-doclayout to 0.3.1.1 [pho 2022-02-11]
	Updated textproc/hs-commonmark-extensions to 0.2.3 [pho 2022-02-11]
	Updated textproc/hs-Glob to 0.10.2 [pho 2022-02-11]
	Updated sysutils/hs-hslua-module-path to 1.0.1 [pho 2022-02-11]
	Updated devel/hs-hslua-module-system to 1.0.1 [pho 2022-02-11]
	Updated math/hs-scientific to 0.3.7.0 [pho 2022-02-11]
	Added wm/wmutils-libwm 1.2 [pin 2022-02-11]
	Updated devel/hs-vector to 0.12.3.1 [pho 2022-02-11]
	Updated devel/hs-uuid-types to 1.0.5 [pho 2022-02-11]
	Updated devel/hs-unordered-containers to 0.2.16.0 [pho 2022-02-11]
	Added wm/mmutils version 1.4.1 [pin 2022-02-11]
	Updated devel/hs-data-fix to 0.3.2 [pho 2022-02-11]
	Updated games/prboom-plus to 2.6.2 [micha 2022-02-11]
	Updated x11/hs-X11 to 1.10.2 [pho 2022-02-11]
	Updated wm/xmonad to 0.17.0 [pho 2022-02-11]
	Updated sysutils/hs-fast-logger to 3.1.1 [pho 2022-02-11]
	Updated security/hs-x509 to 1.7.6 [pho 2022-02-11]
	Updated misc/cabal-install to 3.6.2.0 [pho 2022-02-11]
	Updated textproc/hs-megaparsec to 9.2.0 [pho 2022-02-11]
	Updated devel/hs-vector-th-unbox to 0.2.2 [pho 2022-02-11]
	Updated math/hs-semigroups to 0.20 [pho 2022-02-11]
	Updated devel/hs-storable-record to 0.0.6 [pho 2022-02-11]
	Updated devel/hs-optparse-applicative to 0.17.0.0 [pho 2022-02-11]
	Updated devel/hs-mmorph to 1.2.0 [pho 2022-02-11]
	Updated sysutils/u-boot-pinebook-pro to 2022.01 [mrg 2022-02-11]
	Updated sysutils/u-boot-rockpro64 to 2022.01 [mrg 2022-02-11]
	Updated sysutils/u-boot-rock64 to 2022.01 [mrg 2022-02-11]
	Updated devel/hs-transformers-base to 0.4.6 [pho 2022-02-12]
	Updated devel/hs-monad-control to 1.0.3.1 [pho 2022-02-12]
	Updated devel/hs-hint to 0.9.0.5 [pho 2022-02-12]
	Updated devel/hs-hashtables to 1.3 [pho 2022-02-12]
	Updated sysutils/hs-typed-process to 0.2.8.0 [pho 2022-02-12]
	Updated devel/hs-streaming-commons to 0.2.2.4 [pho 2022-02-12]
	Updated devel/hs-mono-traversable to 1.0.15.3 [pho 2022-02-12]
	Updated devel/hs-conduit to 1.3.4.2 [pho 2022-02-12]
	Updated devel/hs-ListLike to 4.7.6 [pho 2022-02-12]
	Updated devel/hs-ghc-lib-parser-ex to 9.2.0.1 [pho 2022-02-12]
	Updated www/hs-http-client to 0.7.11 [pho 2022-02-12]
	Updated graphics/hs-JuicyPixels to 3.3.6 [pho 2022-02-12]
	Updated time/hs-time-compat to 1.9.6.1 [pho 2022-02-12]
	Updated textproc/hs-attoparsec to 0.14.4 [pho 2022-02-12]
	Updated www/hs-http2 to 3.0.3 [pho 2022-02-12]
	Updated x11/hs-X11-xft to 0.3.4 [pho 2022-02-12]
	Updated wm/xmonad-contrib to 0.17.0 [pho 2022-02-12]
	Updated www/hs-xss-sanitize to 0.3.7 [pho 2022-02-12]
	Updated security/hs-x509-store to 1.6.9 [pho 2022-02-12]
	Updated math/hs-mwc-random to 0.15.0.2 [pho 2022-02-12]
	Updated math/hs-contravariant to 1.5.5 [pho 2022-02-12]
	Updated textproc/hs-lucid to 2.11.0 [pho 2022-02-12]
	Updated devel/hs-tasty to 1.4.2.1 [pho 2022-02-12]
	Updated math/hs-bifunctors to 5.5.11 [pho 2022-02-12]
	Added devel/hs-OneTuple version 0.3.1 [pho 2022-02-12]
	Added devel/hs-indexed-traversable-instances version 0.1.1 [pho 2022-02-12]
	Updated math/hs-semigroupoids to 5.3.7 [pho 2022-02-12]
	Added devel/hs-semialign version 1.2.0.1 [pho 2022-02-12]
	Added devel/hs-witherable version 0.4.2 [pho 2022-02-12]
	Updated converters/hs-aeson to 2.0.3.0 [pho 2022-02-12]
	Updated shells/shellcheck to 0.8.0 [pho 2022-02-12]
	Updated audio/din to 53 [fox 2022-02-12]
	Updated security/hs-x509-validation to 1.6.12 [pho 2022-02-12]
	Updated security/hs-x509-system to 1.6.7 [pho 2022-02-12]
	Updated security/hs-tls to 1.5.7 [pho 2022-02-12]
	Added devel/hs-unliftio version 0.2.21.0 [pho 2022-02-12]
	Updated www/hs-warp to 3.3.19 [pho 2022-02-12]
	Updated www/hs-wai-logger to 2.4.0 [pho 2022-02-12]
	Updated lang/idris to 1.3.4 [pho 2022-02-12]
	Updated textproc/hs-cassava-megaparsec to 2.0.4 [pho 2022-02-12]
	Updated databases/ruby-awesome_nested_set to 3.5.0 [taca 2022-02-12]
	Updated textproc/hs-shakespeare to 2.0.25.1 [pho 2022-02-12]
	Updated textproc/hs-yaml to 0.11.7.0 [pho 2022-02-12]
	Updated devel/hlint to 3.3.6 [pho 2022-02-12]
	Updated databases/ruby-sequel to 5.53.0 [taca 2022-02-12]
	Updated textproc/hs-skylighting-core to 0.12.2 [pho 2022-02-12]
	Updated devel/ZenTest to 4.12.1 [taca 2022-02-12]
	Updated devel/hoe to 3.23.1 [taca 2022-02-12]
	Updated textproc/hs-skylighting to 0.12.2 [pho 2022-02-12]
	Updated textproc/hs-pandoc-types to 1.22.1 [pho 2022-02-12]
	Updated textproc/hs-doctemplates to 0.10.0.1 [pho 2022-02-12]
	Updated textproc/hs-commonmark-pandoc to 0.2.1.2 [pho 2022-02-12]
	Updated devel/hs-ipynb to 0.2 [pho 2022-02-12]
	Updated converters/hs-aeson-pretty to 0.8.9 [pho 2022-02-12]
	Updated www/hs-warp-tls to 3.3.2 [pho 2022-02-12]
	Added devel/hs-microlens version 0.4.12.0 [pho 2022-02-12]
	Added devel/hs-microlens-th version 0.4.3.10 [pho 2022-02-12]
	Updated finance/hledger-lib to 1.24.1 [pho 2022-02-12]
	Added devel/hs-githash version 0.1.6.2 [pho 2022-02-12]
	Updated finance/hledger to 1.24.1 [pho 2022-02-12]
	Updated www/hs-http-client-tls to 0.3.6 [pho 2022-02-12]
	Updated textproc/hs-texmath to 0.12.4 [pho 2022-02-12]
	Added devel/hs-th-lift-instances version 0.1.19 [pho 2022-02-12]
	Added textproc/hs-unicode-collation version 0.1.3.1 [pho 2022-02-12]
	Updated textproc/hs-citeproc to 0.6.0.1 [pho 2022-02-12]
	Added converters/hs-hslua-aeson version 2.1.0 [pho 2022-02-12]
	Added devel/hs-hslua-module-version version 1.0.1 [pho 2022-02-12]
	Added devel/hs-lpeg version 1.0.2 [pho 2022-02-12]
	Added devel/hs-pandoc-lua-marshal version 0.1.4 [pho 2022-02-12]
	Updated converters/pandoc to 2.17.1.1 [pho 2022-02-12]
	Updated net/hoogle to 5.0.18.3 [pho 2022-02-12]
	Updated textproc/dbcat to 0.1.5 [pin 2022-02-12]
	Updated wm/shod to 2.3.0 [pin 2022-02-12]
	Updated devel/ruby-backports to 3.23.0 [taca 2022-02-12]
	Updated devel/ruby-cucumber-core to 10.1.1 [taca 2022-02-12]
	Updated devel/ruby-cucumber-wire to 6.2.1 [taca 2022-02-12]
	Updated devel/ruby-curses to 1.4.4 [taca 2022-02-12]
	Updated devel/ruby-ffi to 1.15.5 [taca 2022-02-12]
	Updated devel/ruby-msgpack to 1.4.4 [taca 2022-02-12]
	Updated devel/ruby-native-package-installer to 1.1.3 [taca 2022-02-12]
	Updated devel/ruby-octokit to 4.22.0 [taca 2022-02-12]
	Updated devel/ruby-pkg-config to 1.4.7 [taca 2022-02-12]
	Updated devel/ruby-rb-fsevent to 0.11.1 [taca 2022-02-12]
	Updated devel/ruby-rb-kqueue to 0.2.8 [taca 2022-02-12]
	Updated devel/ruby-rbtree to 0.4.5 [taca 2022-02-12]
	Updated devel/ruby-rspec-support to 3.11.0 [taca 2022-02-12]
	Updated devel/ruby-rspec-core to 3.11.0 [taca 2022-02-12]
	Updated devel/ruby-rspec-expectations to 3.11.0 [taca 2022-02-12]
	Updated devel/ruby-rspec-mocks to 3.11.0 [taca 2022-02-12]
	Updated devel/ruby-rspec to 3.11.0 [taca 2022-02-12]
	Updated devel/ruby-rspec-rails to 5.1.0 [taca 2022-02-12]
	Updated devel/ruby-rspec_junit_formatter to 0.5.1 [taca 2022-02-12]
	Updated devel/ruby-shoulda-matchers to 5.1.0 [taca 2022-02-12]
	Updated devel/ruby-thor to 1.2.1 [taca 2022-02-12]
	Updated devel/ruby-tins to 1.31.0 [taca 2022-02-12]
	Updated devel/ruby-zeitwerk to 2.5.4 [taca 2022-02-12]
	Updated finance/ruby-activemerchant to 1.125.0 [taca 2022-02-12]
	Updated graphics/ruby-RMagick to 4.2.4 [taca 2022-02-12]
	Updated converters/py-charset-normalizer to 2.0.12 [adam 2022-02-12]
	Updated devel/py-ruamel-yaml to 0.17.21 [adam 2022-02-12]
	Updated devel/colordiff to 1.0.20 [adam 2022-02-12]
	Updated devel/py-packageurl to 0.9.8.1 [adam 2022-02-12]
	Updated lang/go116 to 1.16.14 [bsiegert 2022-02-12]
	Updated lang/go117 to 1.17.7 [bsiegert 2022-02-12]
	Updated sysutils/tarsnap to 1.0.40 [wiz 2022-02-12]
	Updated time/libical to 3.0.14 [gutteridge 2022-02-13]
	Updated devel/mob to 2.4.0 [schmonz 2022-02-13]
	Updated mail/ruby-mime-types-data to 3.2022.0105 [taca 2022-02-13]
	Updated misc/ruby-bundler to 2.3.7 [taca 2022-02-13]
	Updated misc/ruby-windows_error to 0.1.3 [taca 2022-02-13]
	Updated devel/ruby-regexp_parser to 2.2.1 [taca 2022-02-13]
	Updated net/ruby-dnsruby to 1.61.9 [taca 2022-02-13]
	Updated devel/ruby-activesupport52 to 5.2.6.2 [taca 2022-02-13]
	Updated devel/ruby-activemodel52 to 5.2.6.2 [taca 2022-02-13]
	Updated devel/ruby-activejob52 to 5.2.6.2 [taca 2022-02-13]
	Updated www/ruby-actionview52 to 5.2.6.2 [taca 2022-02-13]
	Updated www/ruby-actionpack52 to 5.2.6.2 [taca 2022-02-13]
	Updated www/ruby-actioncable52 to 5.2.6.2 [taca 2022-02-13]
	Updated databases/ruby-activerecord52 to 5.2.6.2 [taca 2022-02-13]
	Updated devel/ruby-activestorage52 to 5.2.6.2 [taca 2022-02-13]
	Updated mail/ruby-actionmailer52 to 5.2.6.2 [taca 2022-02-13]
	Updated devel/ruby-railties52 to 5.2.6.2 [taca 2022-02-13]
	Updated www/ruby-rails52 to 5.2.6.2 [taca 2022-02-13]
	Updated devel/ruby-activesupport60 to 6.0.4.6 [taca 2022-02-13]
	Updated devel/ruby-activemodel60 to 6.0.4.6 [taca 2022-02-13]
	Updated devel/ruby-activejob60 to 6.0.4.6 [taca 2022-02-13]
	Updated www/ruby-actionview60 to 6.0.4.6 [taca 2022-02-13]
	Updated www/ruby-actionpack60 to 6.0.4.6 [taca 2022-02-13]
	Updated databases/ruby-activerecord60 to 6.0.4.6 [taca 2022-02-13]
	Updated mail/ruby-actionmailer60 to 6.0.4.6 [taca 2022-02-13]
	Updated devel/ruby-activestorage60 to 6.0.4.6 [taca 2022-02-13]
	Updated mail/ruby-actionmailbox60 to 6.0.4.6 [taca 2022-02-13]
	Updated www/ruby-actioncable60 to 6.0.4.6 [taca 2022-02-13]
	Updated devel/ruby-railties60 to 6.0.4.6 [taca 2022-02-13]
	Updated textproc/ruby-actiontext60 to 6.0.4.6 [taca 2022-02-13]
	Updated www/ruby-rails60 to 6.0.4.6 [taca 2022-02-13]
	Updated devel/ruby-activesupport61 to 6.1.4.6 [taca 2022-02-13]
	Updated devel/ruby-activemodel61 to 6.1.4.6 [taca 2022-02-13]
	Updated devel/ruby-activejob61 to 6.1.4.6 [taca 2022-02-13]
	Updated www/ruby-actionview61 to 6.1.4.6 [taca 2022-02-13]
	Updated www/ruby-actionpack61 to 6.1.4.6 [taca 2022-02-13]
	Updated databases/ruby-activerecord61 to 6.1.4.6 [taca 2022-02-13]
	Updated devel/ruby-activestorage61 to 6.1.4.6 [taca 2022-02-13]
	Updated mail/ruby-actionmailer61 to 6.1.4.6 [taca 2022-02-13]
	Updated mail/ruby-actionmailbox61 to 6.1.4.6 [taca 2022-02-13]
	Updated www/ruby-actioncable61 to 6.1.4.6 [taca 2022-02-13]
	Updated devel/ruby-railties61 to 6.1.4.6 [taca 2022-02-13]
	Updated textproc/ruby-actiontext61 to 6.1.4.6 [taca 2022-02-13]
	Updated www/ruby-rails61 to 6.1.4.6 [taca 2022-02-13]
	Updated devel/ruby-activesupport70 to 7.0.2.2 [taca 2022-02-13]
	Updated devel/ruby-activemodel70 to 7.0.2.2 [taca 2022-02-13]
	Updated devel/ruby-activejob70 to 7.0.2.2 [taca 2022-02-13]
	Updated www/ruby-actionview70 to 7.0.2.2 [taca 2022-02-13]
	Updated www/ruby-actionpack70 to 7.0.2.2 [taca 2022-02-13]
	Updated databases/ruby-activerecord70 to 7.0.2.2 [taca 2022-02-13]
	Updated devel/ruby-activestorage70 to 7.0.2.2 [taca 2022-02-13]
	Updated mail/ruby-actionmailer70 to 7.0.2.2 [taca 2022-02-13]
	Updated mail/ruby-actionmailbox70 to 7.0.2.2 [taca 2022-02-13]
	Updated www/ruby-actioncable70 to 7.0.2.2 [taca 2022-02-13]
	Updated devel/ruby-railties70 to 7.0.2.2 [taca 2022-02-13]
	Updated textproc/ruby-actiontext70 to 7.0.2.2 [taca 2022-02-13]
	Updated www/ruby-rails70 to 7.0.2.2 [taca 2022-02-13]
	Added sysutils/ctv version 0.3.3 [pin 2022-02-13]
	Updated mail/mutt to 2.2.0 [tron 2022-02-13]
	Added net/py-twisted19 version 19.10.0 [wiz 2022-02-13]
	Updated net/py-twisted to 22.1.0 [adam 2022-02-13]
	Updated textproc/py-epr-reader to 2.4.13 [adam 2022-02-13]
	Updated devel/lua-penlight to 1.12.0 [nia 2022-02-13]
	Updated audio/pt2-clone to 1.40 [nia 2022-02-13]
	Removed chat/mautrix-hangouts [js 2022-02-13]
	Updated comms/tio to 1.33 [fcambus 2022-02-13]
	Added devel/py-test-lazy-fixture version 0.6.3 [adam 2022-02-14]
	Updated textproc/py-prettytable to 3.1.0 [adam 2022-02-14]
	Updated devel/ocaml-optint to 0.1.0 [wiz 2022-02-14]
	Updated devel/ocaml-checkseum to 0.3.2 [wiz 2022-02-14]
	Removed devel/ocaml-configurator [wiz 2022-02-14]
	Updated devel/ocaml-digestif to 1.1.0 [wiz 2022-02-14]
	Updated finance/rates to 0.6.0 [pin 2022-02-14]
	Updated devel/py-treq to 22.2.0 [adam 2022-02-14]
	Updated textproc/py-breathe to 4.33.0 [adam 2022-02-14]
	Removed devel/ocaml-jbuilder [wiz 2022-02-14]
	Updated devel/py-approvaltests to 3.6.0 [schmonz 2022-02-14]
	Updated net/ruby-ruby_smb to 3.0.3 [taca 2022-02-14]
	Updated time/p5-DateTime to 1.55 [wen 2022-02-14]
	Updated print/ruby-pdf-reader to 2.9.1 [taca 2022-02-14]
	Updated security/ruby-ed25519 to 1.3.0 [taca 2022-02-14]
	Updated time/p5-DateTime-Format-Natural to 1.13 [wen 2022-02-14]
	Updated time/p5-DateTime-Calendar-Julian to 0.107 [wen 2022-02-14]
	Updated devel/p5-Test2-Suite to 0.000144 [wen 2022-02-14]
	Added devel/hs-type-equality version 1 [pho 2022-02-14]
	Added devel/hs-constraints version 0.13.3 [pho 2022-02-14]
	Added devel/hs-data-ordlist version 0.4.7.0 [pho 2022-02-14]
	Added devel/hs-filtrable version 0.1.6.0 [pho 2022-02-14]
	Updated security/ruby-metasploit-payloads to 2.0.74 [taca 2022-02-14]
	Added textproc/hs-regex-applicative version 0.3.4 [pho 2022-02-14]
	Added textproc/hs-regex-compat-tdfa version 0.95.1.4 [pho 2022-02-14]
	Updated devel/darcs to 2.16.4 [pho 2022-02-14]
	Updated security/ruby-metasploit_payloads-mettle to 1.0.18 [taca 2022-02-14]
	Updated lang/rust-analyzer to 0.0.2022.02.14 [adam 2022-02-14]
	Updated textproc/py-breathe to 4.33.1 [adam 2022-02-14]
	Removed devel/python-mode [wiz 2022-02-15]
	Updated net/tor to 0.4.6.10 [wiz 2022-02-15]
	Updated textproc/pugixml to 1.12 [wiz 2022-02-15]
	Updated graphics/ImageMagick to 7.1.0.24 [wiz 2022-02-15]
	Updated x11/dmenu to 5.1 [wiz 2022-02-15]
	Updated mail/notmuch to 0.35 [wiz 2022-02-15]
	Updated databases/gdbm to 1.23 [wiz 2022-02-15]
	Updated security/libgcrypt to 1.10.0 [wiz 2022-02-15]
	Updated x11/libxkbcommon to 1.4.0 [wiz 2022-02-15]
	Updated devel/meson to 0.61.2 [adam 2022-02-15]
	Updated devel/glib2 to 2.70.4 [adam 2022-02-15]
	Updated devel/glib2-tools to 2.70.4 [adam 2022-02-15]
	Updated devel/gdbus-codegen to 2.70.4 [adam 2022-02-15]
	Updated devel/pango to 1.48.11 [adam 2022-02-15]
	Updated devel/mm-common to 1.0.4 [adam 2022-02-15]
	Updated devel/libsigc++ to 2.10.8 [adam 2022-02-15]
	Updated devel/py-mercurial to 6.0.2 [wiz 2022-02-15]
	Updated geography/qgis to 3.22.3 [gdt 2022-02-15]
	Updated emulators/nono to 0.2.6 [jun 2022-02-15]
	Updated databases/repmgr to 5.3.1 [adam 2022-02-15]
	Updated lang/nodejs to 14.19.0 [adam 2022-02-15]
	Updated lang/nodejs12 to 12.22.10 [adam 2022-02-15]
	Updated www/py-nbclient to 0.5.11 [adam 2022-02-15]
	Updated net/py-kombu to 5.2.3 [wiz 2022-02-15]
	Updated databases/postgresql-postgis2 to 3.2.1 [gdt 2022-02-15]
	Updated net/py-moto to 3.0.3 [wiz 2022-02-15]
	Updated devel/py-test to 7.0.1 [wiz 2022-02-15]
	Added devel/py-test-subtests version 0.7.0 [wiz 2022-02-15]
	Updated net/py-celery to 5.2.3 [wiz 2022-02-15]
	Updated net/py-flower to 1.0.0 [wiz 2022-02-15]
	Added devel/py-test-celery version 0.0.0 [wiz 2022-02-15]
	Updated devel/gobject-introspection to 1.70.0 [wiz 2022-02-15]
	Updated devel/mimalloc to 2.0.5 [fcambus 2022-02-15]
	Updated print/poppler to 22.02.0 [wiz 2022-02-15]
	Updated devel/intellij-ce-bin to 2021.3.2 [rillig 2022-02-15]
	Updated editors/emacs-packages to 0.12 [wiz 2022-02-15]
	Added security/hs-cryptohash-sha1 version 0.11.101.0 [pho 2022-02-16]
	Added devel/hs-constraints-extras version 0.3.2.1 [pho 2022-02-16]
	Added devel/hs-some version 1.0.3 [pho 2022-02-16]
	Added devel/hs-dependent-sum version 0.7.1.0 [pho 2022-02-16]
	Added devel/hs-dependent-map version 0.4.0.0 [pho 2022-02-16]
	Added devel/hs-focus version 1.0.3 [pho 2022-02-16]
	Added math/hs-primes version 0.2.1.0 [pho 2022-02-16]
	Added math/hs-monoid-subclasses version 1.1.3 [pho 2022-02-16]
	Added textproc/hs-fuzzy version 0.1.0.1 [pho 2022-02-16]
	Added devel/hs-safe-exceptions version 0.1.7.2 [pho 2022-02-16]
	Added devel/hs-ghc-check version 0.5.0.6 [pho 2022-02-16]
	Added math/hs-free version 5.1.7 [pho 2022-02-16]
	Added devel/hs-ordered-containers version 0.2.2 [pho 2022-02-16]
	Added devel/hs-ghc-exactprint version 1.5.0 [pho 2022-02-16]
	Added devel/hs-ghc-trace-events version 0.1.2.4 [pho 2022-02-16]
	Added net/hs-network-bsd version 2.8.1.0 [pho 2022-02-16]
	Added sysutils/hs-hslogger version 1.3.1.0 [pho 2022-02-16]
	Added devel/hs-hie-bios version 0.8.1 [pho 2022-02-16]
	Updated security/gnupg2 to 2.2.34 [adam 2022-02-16]
	Updated databases/py-peewee to 3.14.9 [adam 2022-02-16]
	Added devel/hs-hie-compat version 0.2.1.1 [pho 2022-02-16]
	Added math/hs-algebraic-graphs version 0.6 [pho 2022-02-16]
	Added devel/hs-blaze-textual version 0.2.2.1 [pho 2022-02-16]
	Added databases/hs-direct-sqlite version 2.3.26 [pho 2022-02-16]
	Added databases/hs-sqlite-simple version 0.4.18.0 [pho 2022-02-16]
	Added devel/hs-hiedb version 0.4.1.0 [pho 2022-02-16]
	Added www/hs-js-dgtable version 0.5.2 [pho 2022-02-16]
	Added devel/hs-foldl version 1.4.12 [pho 2022-02-16]
	Added devel/hs-logict version 0.7.1.0 [pho 2022-02-16]
	Added devel/hs-list-t version 1.0.5.1 [pho 2022-02-16]
	Added devel/hs-deferred-folds version 0.9.18.1 [pho 2022-02-16]
	Added devel/hs-primitive-unlifted version 0.1.3.1 [pho 2022-02-16]
	Added devel/hs-primitive-extras version 0.10.1.4 [pho 2022-02-16]
	Added devel/hs-stm-hamt version 1.2.0.7 [pho 2022-02-16]
	Added devel/hs-stm-containers version 1.2 [pho 2022-02-16]
	Updated devel/py-jupyter_core to 4.9.2 [adam 2022-02-16]
	Updated devel/py-ipykernel to 6.9.1 [adam 2022-02-16]
	Added devel/hs-hls-graph version 1.6.0.0 [pho 2022-02-16]
	Added math/hs-adjunctions version 4.4 [pho 2022-02-16]
	Added math/hs-invariant version 0.5.5 [pho 2022-02-16]
	Added math/hs-kan-extensions version 5.2.3 [pho 2022-02-16]
	Added devel/hs-parallel version 3.2.2.0 [pho 2022-02-16]
	Added devel/hs-lens version 5.1 [pho 2022-02-16]
	Added converters/hs-lens-aeson version 1.1.3 [pho 2022-02-16]
	Added math/hs-semirings version 0.6 [pho 2022-02-16]
	Added math/hs-mod version 0.1.2.2 [pho 2022-02-16]
	Added textproc/hs-rope-utf16-splay version 0.3.2.0 [pho 2022-02-16]
	Added devel/hs-lsp-types version 1.4.0.1 [pho 2022-02-16]
	Added devel/hs-sorted-list version 0.2.1.0 [pho 2022-02-16]
	Added security/hs-cryptohash-md5 version 0.11.101.0 [pho 2022-02-16]
	Added security/hs-entropy version 0.4.1.7 [pho 2022-02-16]
	Added devel/hs-uuid version 1.3.15 [pho 2022-02-16]
	Added devel/hs-lsp version 1.4.0.0 [pho 2022-02-16]
	Added sysutils/hs-opentelemetry version 0.7.0 [pho 2022-02-16]
	Added devel/hs-hls-plugin-api version 1.3.0.0 [pho 2022-02-16]
	Added devel/hs-implicit-hie version 0.1.2.6 [pho 2022-02-16]
	Added devel/hs-implicit-hie-cradle version 0.5.0.0 [pho 2022-02-16]
	Added devel/hs-random-shuffle version 0.0.4 [pho 2022-02-16]
	Added devel/retrie version 1.2.0.1 [pho 2022-02-16]
	Added devel/hs-gitrev version 1.3.1 [pho 2022-02-16]
	Added devel/hs-heapsize version 0.3.0.1 [pho 2022-02-16]
	Added devel/hs-ghcide version 1.6.0.0 [pho 2022-02-16]
	Added devel/hs-optparse-simple version 0.1.1.4 [pho 2022-02-16]
	Added devel/hs-hls-call-hierarchy-plugin version 1.0.2.0 [pho 2022-02-16]
	Added devel/hs-hls-explicit-imports-plugin version 1.0.2.0 [pho 2022-02-16]
	Added devel/hs-hls-refine-imports-plugin version 1.0.1.0 [pho 2022-02-16]
	Added devel/hs-hls-module-name-plugin version 1.0.1.0 [pho 2022-02-16]
	Added devel/hs-hls-pragmas-plugin version 1.0.2.0 [pho 2022-02-16]
	Added devel/hs-hls-alternate-number-format-plugin version 1.0.1.0 [pho 2022-02-16]
	Added devel/hs-hls-qualify-imported-names-plugin version 1.0.1.0 [pho 2022-02-16]
	Added devel/hs-hls-selection-range-plugin version 1.0.0.0 [pho 2022-02-16]
	Added devel/hs-monad-dijkstra version 0.1.1.3 [pho 2022-02-16]
	Added devel/floskell version 0.10.6 [pho 2022-02-16]
	Added devel/hs-hls-floskell-plugin version 1.0.1.0 [pho 2022-02-16]
	Added devel/hs-ghc-lib-parser version 9.2.1.20220109 [pho 2022-02-16]
	Added textproc/hs-HsYAML-aeson version 0.2.0.1 [pho 2022-02-16]
	Added devel/fourmolu version 0.5.0.1 [pho 2022-02-16]
	Added devel/hs-hls-fourmolu-plugin version 1.0.2.0 [pho 2022-02-16]
	Added devel/ormolu version 0.4.0.0 [pho 2022-02-16]
	Added devel/hs-hls-oumolu-plugin version 1.0.2.0 [pho 2022-02-16]
	Added devel/haskell-language-server version 1.6.1.1 [pho 2022-02-16]
	Updated databases/py-redis to 4.1.4 [adam 2022-02-16]
	Updated www/py-uvicorn to 0.17.5 [adam 2022-02-16]
	Updated wm/wmutils-libwm to 1.3 [pin 2022-02-16]
        Updated www/gitea to 1.16.1 [tm 2022-02-16]
	Updated textproc/py-prettytable to 3.1.1 [fcambus 2022-02-16]
	Updated comms/tio to 1.34 [fcambus 2022-02-16]
	Updated textproc/csview to 1.0.1 [pin 2022-02-16]
	Updated fonts/harfbuzz to 3.4.0 [wiz 2022-02-16]
	Updated x11/xfce4-notifyd to 0.6.3 [gutteridge 2022-02-17]
	Removed math/py-fftw [wiz 2022-02-17]
	Removed biology/py-mol [wiz 2022-02-17]
	Updated devel/py-filelock to 3.5.1 [adam 2022-02-17]
	Updated devel/py-tox to 3.24.5 [adam 2022-02-17]
	Updated biology/py-biopython to 1.79 [wiz 2022-02-17]
	Updated cad/py-gds to 1.6.11 [wiz 2022-02-17]
	Removed math/py-autograd [wiz 2022-02-17]
	Removed devel/py-hash [wiz 2022-02-17]
	Updated sysutils/findutils to 4.9.0 [wiz 2022-02-17]
	Updated devel/php-composer to 2.2.6 [tpaul 2022-02-17]
	Removed x11/xscreensaver-demo successor x11/xscreensaver [wiz 2022-02-17]
	Updated x11/xscreensaver to 6.02 [wiz 2022-02-17]
	Updated net/terraform-provider-vultr to 2.9.1 [tpaul 2022-02-17]
	Updated www/webkit-gtk to 2.34.6 [leot 2022-02-17]
	Updated graphics/girara to 0.3.7 [abs 2022-02-17]
	Updated print/zathura to 0.4.9 [abs 2022-02-17]
	Updated devel/wabt to 1.0.27 [fcambus 2022-02-17]
	Updated sysutils/hcal to 0.3.4 [pin 2022-02-17]
	Updated sysutils/py-borgbackup to 1.1.17nb5 [wiz 2022-02-18]
	Updated net/grpc to 1.44.0 [adam 2022-02-18]
	Updated net/py-grpcio to 1.44.0 [adam 2022-02-18]
	Updated net/py-grpcio-testing to 1.44.0 [adam 2022-02-18]
	Updated net/py-grpcio-tools to 1.44.0 [adam 2022-02-18]
	Updated textproc/asciidoc to 10.1.2 [wiz 2022-02-18]
	Added www/ufdbguard version 1.35.3 [sborrill 2022-02-18]
	Updated print/sile to 0.12.2 [joerg 2022-02-18]
	Updated devel/mob to 2.5.0 [schmonz 2022-02-18]
	Updated fonts/liberation-ttf to 2.1.5 [fcambus 2022-02-18]
	Updated fonts/fntsample to 5.4 [fcambus 2022-02-18]
	Updated x11/xscreensaver to 6.02nb2 [wiz 2022-02-18]
	Updated devel/lua-luv to 1.43.0.0 [nia 2022-02-19]
	Updated emulators/mednaffe to 0.9.2 [nia 2022-02-19]
	Updated databases/mariadb106-client to 10.6.7 [nia 2022-02-19]
	Updated databases/mariadb106-server to 10.6.7 [nia 2022-02-19]
	Updated databases/mariadb105-client to 10.5.15 [nia 2022-02-19]
	Updated databases/mariadb105-server to 10.5.15 [nia 2022-02-19]
	Updated net/unison-snapshot to 2.51.70 [gdt 2022-02-19]
	Updated textproc/expat to 2.4.5 [wiz 2022-02-19]
	Updated net/sayaka to 3.5.3 [tsutsui 2022-02-19]
	Updated comms/tio to 1.35 [fcambus 2022-02-20]
	Updated mail/mutt to 2.2.1 [tron 2022-02-20]
	Updated textproc/yq to 2.13.0 [fcambus 2022-02-20]
	Updated net/bind916 to 9.16.26 [taca 2022-02-20]
	Updated lang/php74 to 7.4.28 [taca 2022-02-20]
	Updated lang/php80 to 8.0.16 [taca 2022-02-20]
	Updated lang/php81 to 8.1.3 [taca 2022-02-20]
	Updated security/pear-Crypt_GPG to 1.6.7 [taca 2022-02-20]
	Updated graphics/php-imagick to 3.7.0 [taca 2022-02-20]
	Updated devel/php-xdebug to 3.1.3 [taca 2022-02-20]
	Updated devel/php-igbinary to 3.2.7 [taca 2022-02-20]
	Updated databases/php-redis to 5.3.7 [taca 2022-02-20]
	Updated lang/ruby31-base to 3.1.1 [taca 2022-02-20]
	Updated lang/ruby31 to 3.1.1 [taca 2022-02-20]
	Updated converters/help2man to 1.49.1 [wiz 2022-02-20]
	Updated textproc/pugixml to 1.12.1 [wiz 2022-02-20]
	Updated security/py-cyclonedx-python-lib to 1.3.0 [wiz 2022-02-20]
	Updated security/py-pip-audit to 2.0.0 [wiz 2022-02-20]
	Updated graphics/ImageMagick to 7.1.0.25 [wiz 2022-02-20]
	Updated devel/py-mercurial to 6.0.3 [wiz 2022-02-20]
	Updated www/firefox91 to 91.6.0 [nia 2022-02-21]
	Updated www/firefox91-l10n to 91.6.0 [nia 2022-02-21]
	Updated textproc/expat to 2.4.6 [jdolecek 2022-02-21]
	Updated audio/flac to 1.3.4 [adam 2022-02-21]
	Updated devel/py-setuptools to 60.9.3 [adam 2022-02-21]
	Updated www/py-websockets to 10.2 [adam 2022-02-21]
	Updated devel/py-filelock to 3.6.0 [adam 2022-02-21]
	Updated devel/py-test-asyncio to 0.18.1 [adam 2022-02-21]
	Updated misc/py-platformdirs to 2.5.1 [adam 2022-02-21]
	Updated devel/git-cliff to 0.6.0 [pin 2022-02-21]
	Updated security/gpg-tui to 0.8.3 [pin 2022-02-21]
	Updated textproc/jless to 0.7.2 [pin 2022-02-21]
	Updated devel/py-approvaltests to 3.7.0 [schmonz 2022-02-21]
	Updated devel/mold to 1.1 [fcambus 2022-02-21]
	Added textproc/ydiff version 1.2 [fcambus 2022-02-21]
	Updated textproc/ugrep to 3.7.3 [adam 2022-02-21]
	Updated finance/py-braintree to 4.14.0 [adam 2022-02-21]
	Updated net/haproxy to 2.5.3 [adam 2022-02-21]
	Updated comms/py-rich to 11.2.0 [adam 2022-02-21]
	Updated net/py-stone to 3.3.1 [adam 2022-02-21]
	Updated net/py-dropbox to 11.27.0 [adam 2022-02-21]
	Updated multimedia/minidlna to 1.3.0 [mrg 2022-02-22]
	Added wm/glazier version 1.1 [pin 2022-02-22]
	Updated devel/py-bitarray to 2.3.7 [adam 2022-02-22]
	Updated devel/py-construct to 2.10.68 [adam 2022-02-22]
	Added graphics/picat version 0.1.0 [pin 2022-02-22]
	Updated devel/py-trio to 0.20.0 [adam 2022-02-22]
	Updated textproc/py-rapidjson to 1.6 [adam 2022-02-22]
	Updated devel/meson to 0.61.2nb1 [jperkin 2022-02-22]
	Updated www/wordpress to 5.9.1 [morr 2022-02-22]
	Updated textproc/lowdown to 0.11.0 [fcambus 2022-02-23]
	Updated devel/py-setuptools-rust to 1.1.2 [adam 2022-02-23]
	Updated www/py-httptools to 0.4.0 [adam 2022-02-23]
	Updated www/so to 0.4.6 [pin 2022-02-23]
	Added devel/py-typing-inspect version 0.7.1 [wiz 2022-02-23]
	Added lang/py-libcst version 0.4.1 [wiz 2022-02-23]
	Added lang/py-lark-parser version 0.12.0 [wiz 2022-02-23]
	Added devel/py-hypothesmith version 0.2.0 [wiz 2022-02-23]
	Updated devel/py-attrs to 21.4.0 [adam 2022-02-23]
	Updated devel/py-py to 1.11.0 [adam 2022-02-23]
	Added converters/hs-aeson-better-errors version 0.9.1.0 [pho 2022-02-23]
	Added www/hs-bower-json version 1.0.0.1 [pho 2022-02-23]
	Added textproc/hs-boxes version 0.1.5 [pho 2022-02-23]
	Added devel/hs-half version 0.3.1 [pho 2022-02-23]
	Added devel/hs-cborg version 0.2.6.0 [pho 2022-02-23]
	Added lang/hs-language-javascript version 0.7.1.0 [pho 2022-02-23]
	Added devel/hs-lifted-async version 0.10.2.2 [pho 2022-02-23]
	Added devel/hs-microlens-ghc version 0.4.13.1 [pho 2022-02-23]
	Added devel/hs-microlens-mtl version 0.2.0.1 [pho 2022-02-23]
	Added devel/hs-microlens-platform version 0.4.2.1 [pho 2022-02-23]
	Added devel/hs-stm-chans version 3.0.0.6 [pho 2022-02-23]
	Added devel/hs-monad-loops version 0.4.3 [pho 2022-02-23]
	Added devel/hs-monad-logger version 0.3.36 [pho 2022-02-23]
	Added devel/hs-pattern-arrows version 0.0.2 [pho 2022-02-23]
	Added devel/hs-mtl-compat version 0.2.2 [pho 2022-02-23]
	Added devel/hs-protolude version 0.3.0 [pho 2022-02-23]
	Added devel/hs-serialise version 0.2.4.0 [pho 2022-02-23]
	Added lang/hs-purescript-cst version 0.4.0.0 [pho 2022-02-23]
	Added lang/hs-sourcemap version 0.1.7 [pho 2022-02-23]
	Added www/hs-websockets version 0.12.7.3 [pho 2022-02-23]
	Added www/hs-wai-websockets version 3.0.1.2 [pho 2022-02-23]
	Added lang/purescript version 0.14.5 [pho 2022-02-23]
	Added devel/hs-async-pool version 0.9.1 [pho 2022-02-23]
	Added devel/hs-atomic-write version 0.2.0.7 [pho 2022-02-23]
	Added converters/hs-cborg-json version 0.2.3.0 [pho 2022-02-23]
	Added graphics/hs-dotgen version 0.4.3 [pho 2022-02-23]
	Added devel/hs-lens-family-core version 2.1.0 [pho 2022-02-23]
	Added textproc/hs-charset version 0.3.9 [pho 2022-02-23]
	Added textproc/hs-parsers version 0.12.10 [pho 2022-02-23]
	Added devel/hs-repline version 0.4.0.0 [pho 2022-02-23]
	Added textproc/hs-text-manipulate version 0.3.0.0 [pho 2022-02-23]
	Added net/hs-uri-encode version 1.5.0.7 [pho 2022-02-23]
	Added lang/dhall version 1.40.2 [pho 2022-02-23]
	Updated databases/sqlite3 to 3.38.0 [adam 2022-02-23]
	Updated databases/sqlite3-docs to 3.38.0 [adam 2022-02-23]
	Updated databases/sqlite3-tcl to 3.38.0 [adam 2022-02-23]
	Updated devel/lemon to 1.0.3.38.0 [adam 2022-02-23]
	Updated emulators/mame to 0.241 [wiz 2022-02-23]
	Updated graphics/librsvg to 2.52.6 [wiz 2022-02-23]
	Added math/hs-indexed-profunctors version 0.1.1 [pho 2022-02-24]
	Added devel/hs-generic-lens-core version 2.2.1.0 [pho 2022-02-24]
	Added devel/hs-generic-lens version 2.2.1.0 [pho 2022-02-24]
	Added www/hs-open-browser version 0.2.1.0 [pho 2022-02-24]
	Added devel/hs-rio version 0.1.21.0 [pho 2022-02-24]
	Added devel/hs-rio-orphans version 0.1.2.0 [pho 2022-02-24]
	Added devel/hs-retry version 0.9.1.0 [pho 2022-02-24]
	Added devel/hs-basic-prelude version 0.7.0 [pho 2022-02-24]
	Added devel/hs-chunked-data version 0.3.1 [pho 2022-02-24]
	Added devel/hs-dlist-instances version 0.1.1.1 [pho 2022-02-24]
	Added devel/hs-keys version 3.12.3 [pho 2022-02-24]
	Added devel/hs-pointed version 5.0.3 [pho 2022-02-24]
	Added devel/hs-vector-instances version 3.4 [pho 2022-02-24]
	Added devel/hs-mono-traversable-instances version 0.1.1.0 [pho 2022-02-24]
	Added devel/hs-mutable-containers version 0.3.4 [pho 2022-02-24]
	Added devel/hs-say version 0.1.0.1 [pho 2022-02-24]
	Added devel/hs-classy-prelude version 1.5.0.2 [pho 2022-02-24]
	Added devel/hs-semver-range version 0.2.8 [pho 2022-02-24]
	Added sysutils/hs-hostname version 1.0 [pho 2022-02-24]
	Added devel/hs-managed version 1.0.9 [pho 2022-02-24]
	Added devel/hs-optional-args version 1.0.2 [pho 2022-02-24]
	Added sysutils/hs-system-filepath version 0.4.14 [pho 2022-02-24]
	Added sysutils/hs-system-fileio version 0.3.16.4 [pho 2022-02-24]
	Added devel/hs-turtle version 1.5.24 [pho 2022-02-24]
	Added devel/hs-versions version 5.0.2 [pho 2022-02-24]
	Added devel/hs-th-env version 0.1.0.3 [pho 2022-02-24]
	Added devel/hs-with-utf8 version 1.0.2.3 [pho 2022-02-24]
	Added lang/spago version 0.20.7 [pho 2022-02-24]
	Updated security/cyrus-sasl to 2.1.28 [wiz 2022-02-24]
	Updated devel/fossil to 2.18 [js 2022-02-24]
	Updated graphics/py-Pillow to 9.0.1 [wiz 2022-02-24]
	Updated www/php-nextcloud to 23.0.2 [ryoon 2022-02-25]
	Updated finance/rates to 0.7.0 [pin 2022-02-25]
	Updated textproc/ugrep to 3.7.4 [fcambus 2022-02-25]
	Updated chat/matrix-synapse to 1.53.0 [js 2022-02-25]
	Updated chat/py-matrix-common to 1.1.0 [js 2022-02-25]
	Updated devel/goredo to 1.23.0 [schmonz 2022-02-25]
	Updated devel/p5-FindBin-libs to 3.0.1 [schmonz 2022-02-25]
	Updated lang/libduktape to 2.7.0 [fcambus 2022-02-25]
	Updated lang/duktape to 2.7.0 [fcambus 2022-02-25]
	Updated converters/p5-Sereal-Decoder to 4.023 [fcambus 2022-02-25]
	Updated converters/p5-Sereal-Encoder to 4.023 [fcambus 2022-02-25]
	Updated converters/p5-Sereal to 4.023 [fcambus 2022-02-25]
	Updated lang/python27 to 2.7.18nb8 [gutteridge 2022-02-25]
	Updated audio/din to 53.1 [fox 2022-02-26]
	Updated security/wolfssl to 5.2.0 [fox 2022-02-26]
	Updated graphics/babl to 0.1.90 [wiz 2022-02-26]
	Updated graphics/gegl to 0.4.36 [wiz 2022-02-26]
	Added devel/hs-hinotify version 0.4.1 [pho 2022-02-26]
	Added devel/hs-enclosed-exceptions version 1.0.3 [pho 2022-02-26]
	Added devel/hs-shelly version 1.10.0 [pho 2022-02-26]
	Updated devel/patchelf to 0.14.5 [fcambus 2022-02-26]
	Updated devel/acr to 2.0.0 [fcambus 2022-02-26]
	Updated biology/htslib to 1.15 [bacon 2022-02-26]
	Updated biology/samtools to 1.15 [bacon 2022-02-26]
	Updated biology/bcftools to 1.15 [bacon 2022-02-26]
	Updated biology/kallisto to 0.48.0 [bacon 2022-02-27]
	Updated graphics/libjpeg-turbo to 2.1.3 [adam 2022-02-27]
	Updated devel/py-rope to 0.23.0 [adam 2022-02-27]
	Updated finance/py-stripe to 2.66.0 [adam 2022-02-27]
	Updated net/py-softlayer to 5.9.9 [adam 2022-02-27]
	Updated textproc/bat to 0.20.0 [fox 2022-02-27]
	Updated textproc/git-delta to 0.12.0 [fcambus 2022-02-27]
	Updated sysutils/fd-find to 8.3.2 [fcambus 2022-02-27]
	Updated x11/ocaml-lablgtk to 2.18.12 [gdt 2022-02-27]
	Updated devel/mob to 2.6.0 [schmonz 2022-02-27]
	Updated sysutils/dust to 0.8.0 [pin 2022-02-27]
	Added textproc/scatterbrainedsearch version 2.5.0 [pin 2022-02-27]
	Updated chat/dino to 0.3.0 [nia 2022-02-27]
	Updated security/ca-certificates to 20211016 [kim 2022-02-28]
	Updated sysutils/xplr to 0.17.3 [pin 2022-02-28]
	Updated multimedia/gstreamer1 to 1.18.5nb2 [wiz 2022-02-28]
	Updated security/openssl to 1.1.1m [wiz 2022-02-28]
	Updated graphics/ocaml-cairo to 0.6.2 [jaapb 2022-02-28]
	Updated x11/ocaml-lablgtk3 to 3.1.2 [jaapb 2022-02-28]
	Updated textproc/asciidoc to 10.1.3 [wiz 2022-03-01]
	Updated devel/ocamlbuild to 0.14.1 [jaapb 2022-03-01]
	Updated editors/xournalpp to 1.1.1 [wiz 2022-03-01]
	Updated www/nghttp2 to 1.47.0 [adam 2022-03-01]
	Updated www/nghttp2-tools to 1.47.0 [adam 2022-03-01]
	Updated devel/ocaml-dune to 2.9.3 [jaapb 2022-03-01]
	Updated misc/ocaml-opaline to 0.3.3 [jaapb 2022-03-01]
	Updated devel/ocaml-csexp to 1.5.1 [jaapb 2022-03-01]
	Updated math/ocaml-num to 1.4 [jaapb 2022-03-01]
	Updated devel/py-cython to 0.29.28 [adam 2022-03-01]
	Updated textproc/py-lxml to 4.8.0 [adam 2022-03-01]
	Updated net/routinator to 0.11.0 [he 2022-03-01]
	Updated www/firefox to 97.0.1 [ryoon 2022-03-01]
	Updated www/firefox-l10n to 97.0.1 [ryoon 2022-03-01]
	Updated lang/openjdk11 to 1.11.0.14.9 [ryoon 2022-03-01]
	Updated textproc/p5-Search-Xapian to 1.2.25.5 [schmonz 2022-03-01]
	Updated devel/py-approvaltests to 4.0.0 [schmonz 2022-03-01]
	Updated lang/rust to 1.58.1 [he 2022-03-01]
	Updated devel/syncdir to 1.1 [schmonz 2022-03-01]
	Updated mail/qmail-qfilter to 2.1nb7 [schmonz 2022-03-01]
	Updated net/unison-snapshot to 2.51.71 [gdt 2022-03-01]
	Updated net/dbip-asn-lite to 2022.03 [fcambus 2022-03-01]
	Updated net/dbip-city-lite to 2022.03 [fcambus 2022-03-01]
	Updated net/dbip-country-lite to 2022.03 [fcambus 2022-03-01]
	Updated sysutils/broot to 1.9.3 [pin 2022-03-01]
	Updated lang/algol68g to 3.0.4 [ryoon 2022-03-02]
	Updated graphics/inkscape to 1.1.2 [ryoon 2022-03-02]
	Updated devel/dconf to 0.40.0 [prlw1 2022-03-02]
	Updated devel/dconf-editor to 3.38.3nb3 [prlw1 2022-03-02]
	Updated devel/goredo to 1.24.0 [schmonz 2022-03-02]
	Updated games/stone-soup-sdl to 0.28.0 [nia 2022-03-02]
	Updated games/stone-soup to 0.28.0 [nia 2022-03-02]
	Added audio/davis version 0.1.1 [pin 2022-03-02]
	Updated misc/hexd to 1.1.0 [nia 2022-03-03]
	Updated net/haproxy to 2.5.4 [adam 2022-03-03]
	Updated graphics/libwebp to 1.2.2 [adam 2022-03-03]
	Updated sysutils/py-borgbackup to 1.2.0 [wiz 2022-03-03]
	Updated devel/nss to 3.76 [wiz 2022-03-03]
	Updated lang/rust-analyzer to 0.0.2022.02.28 [wiz 2022-03-03]
	Updated lang/rust-src to 1.58.1 [he 2022-03-03]
	Updated lang/rust-bin to 1.58.1 [he 2022-03-03]
	Updated games/nbsdgames to 5 [nia 2022-03-04]
	Updated emulators/dosbox-x to 0.83.23 [nia 2022-03-04]
	Updated chat/hexchat to 2.16.1 [nia 2022-03-04]
	Updated chat/atheme to 7.2.12 [nia 2022-03-04]
	Updated chat/srain to 1.3.2 [nia 2022-03-04]
	Added chat/unrealircd6 version 6.0.2 [nia 2022-03-04]
	Updated chat/unrealircd to 5.2.4 [nia 2022-03-04]
	Updated chat/libmesode to 0.10.1 [nia 2022-03-04]
	Updated chat/profanity to 0.11.1 [nia 2022-03-04]
	Updated chat/py-nbxmpp to 2.0.4 [nia 2022-03-04]
	Updated chat/gajim to 1.3.3 [nia 2022-03-04]
	Added chat/catgirl version 2.1 [nia 2022-03-04]
	Updated comms/asterisk16 to 16.24.0 [ryoon 2022-03-04]
	Updated lang/nim to 1.6.4 [ryoon 2022-03-04]
	Updated www/p5-libwww to 6.61 [wen 2022-03-04]
	Updated www/p5-HTTP-Message to 6.36 [wen 2022-03-04]
	Updated www/p5-HTTP-Daemon to 6.14 [wen 2022-03-04]
	Updated misc/libreoffice to 7.3.1.3 [ryoon 2022-03-04]
	Updated security/xmlsec1 to 1.2.33 [ryoon 2022-03-04]
	Updated sysutils/xenkernel415 to 4.15.2 [bouyer 2022-03-04]
	Updated sysutils/xentools415 to 4.15.2 [bouyer 2022-03-04]
	Updated textproc/expat to 2.4.7 [wiz 2022-03-05]
	Updated chat/quassel to 0.14.0 [nia 2022-03-05]
	Updated www/hugo to 0.93.2 [nikita 2022-03-05]
	Updated databases/guile-pg to 0.50 [gdt 2022-03-05]
	Updated www/hugo to 0.93.2nb1 [nikita 2022-03-05]
	Updated devel/guile-lib to 0.2.7 [gdt 2022-03-05]
	Updated benchmarks/hyperfine to 1.13.0 [pin 2022-03-05]
	Updated databases/ruby-sequel to 5.54.0 [taca 2022-03-06]
	Updated devel/ruby-deep_merge to 1.2.2 [taca 2022-03-06]
	Updated devel/ruby-msgpack to 1.4.5 [taca 2022-03-06]
	Updated www/firefox to 97.0.2 [ryoon 2022-03-06]
	Updated www/firefox-l10n to 97.0.2 [ryoon 2022-03-06]
	Updated chat/libpurple to 2.14.8 [nia 2022-03-06]
	Updated chat/finch to 2.14.8 [nia 2022-03-06]
	Updated chat/pidgin-silc to 2.14.8 [nia 2022-03-06]
	Updated chat/pidgin-sametime to 2.14.8 [nia 2022-03-06]
	Updated chat/pidgin to 2.14.8 [nia 2022-03-06]
	Updated lang/lua54 to 5.4.4 [nia 2022-03-06]
	Updated parallel/lua-lanes to 3.16.0 [nia 2022-03-06]
	Updated audio/schismtracker to 20220125 [nia 2022-03-06]
	Updated devel/py-jupyter-console to 6.4.2 [adam 2022-03-06]
	Updated devel/py-dulwich to 0.20.33 [adam 2022-03-06]
	Updated audio/strawberry to 1.0.2 [nia 2022-03-06]
	Updated sysutils/felix to 0.4.1 [pin 2022-03-06]
	Updated graphics/stitchy to 0.1.3nb1 [pin 2022-03-06]
	Added time/lua-chronos version 0.2.4 [nia 2022-03-06]
	Updated finance/ruby-braintree to 4.6.0 [taca 2022-03-06]
	Updated misc/ruby-bundler to 2.3.8 [taca 2022-03-06]
	Updated misc/ruby-sprockets to 4.0.3 [taca 2022-03-06]
	Added devel/lua-enum version 0.1.2 [nia 2022-03-06]
	Added textproc/lua-ftcsv version 1.2.1 [nia 2022-03-06]
	Updated lang/go116 to 1.16.15 [bsiegert 2022-03-06]
	Added editors/PageEdit version 1.7.0 [wiz 2022-03-06]
	Updated misc/screen to 4.9.0 [ryoon 2022-03-06]
	Updated misc/ruby-mini_portile2 to 2.8.0 [tsutsui 2022-03-06]
	Updated textproc/ruby-nokogiri to 1.13.3 [tsutsui 2022-03-06]
	Updated devel/py-ipython to 8.1.1 [adam 2022-03-06]
	Updated devel/py-faker to 13.3.0 [adam 2022-03-06]
	Updated net/unison-snapshot to 2.51.90 [gdt 2022-03-06]
	Updated devel/py-ZopeSchema to 6.2.0 [adam 2022-03-06]
	Updated devel/py-ZopeTestrunner to 5.4.0 [adam 2022-03-06]
	Updated net/py-lexicon to 3.9.4 [adam 2022-03-06]
	Updated security/py-josepy to 1.12.0 [adam 2022-03-06]
	Updated chat/eggdrop to 1.9.2 [nia 2022-03-07]
	Updated lang/go117 to 1.17.8 [bsiegert 2022-03-07]
	Updated misc/ocaml-opam-file-format to 2.1.3 [jaapb 2022-03-07]
	Updated lang/rust-analyzer to 0.0.2022.03.07 [adam 2022-03-07]
	Updated devel/py-zope.testing to 4.10 [adam 2022-03-07]
	Updated textproc/py-prettytable to 3.2.0 [fcambus 2022-03-07]
	Updated devel/libuv to 1.44.0 [adam 2022-03-07]
	Updated databases/py-peewee to 3.14.10 [adam 2022-03-07]
	Updated devel/cmake to 3.22.3 [adam 2022-03-07]
	Updated devel/py-ddt to 1.4.4 [adam 2022-03-07]
	Added lang/guile18 [wiz 2022-03-07]
	Removed lang/guile successor lang/guile18 [wiz 2022-03-07]
	Updated databases/ldb to 2.4.2 [thor 2022-03-07]
	Updated net/samba4 to 4.15.4 [thor 2022-03-07]
	Updated news/sfeed to 1.3 [leot 2022-03-07]
	Updated net/samba4 to 4.15.5 [thor 2022-03-07]
	Updated lang/guile20 to 2.0.14nb5 [wiz 2022-03-07]
	Updated lang/guile18 to 1.8.8nb12 [wiz 2022-03-07]
	Added lang/guile30 version 3.0.7 [wiz 2022-03-08]
	Updated x11/xfce4-screenshooter to 1.9.10 [gutteridge 2022-03-08]
	Updated x11/xscreensaver to 6.03 [wiz 2022-03-08]
	Updated editors/Sigil to 1.9.1 [wiz 2022-03-08]
	Updated graphics/ImageMagick to 7.1.0.27 [wiz 2022-03-08]
	Updated www/curl to 7.82.0 [wiz 2022-03-08]
	Updated devel/gopls to 0.8.0 [wiz 2022-03-08]
	Updated net/wget to 1.21.3 [wiz 2022-03-08]
	Updated www/restish to 0.10.0 [wiz 2022-03-08]
	Updated devel/tomlplusplus to 3.0.1 [wiz 2022-03-08]
	Updated textproc/asciidoc to 10.1.4 [wiz 2022-03-08]
	Updated multimedia/libva to 2.14.0 [wiz 2022-03-08]
	Updated fonts/harfbuzz to 4.0.0 [wiz 2022-03-08]
	Updated security/py-cyclonedx-python-lib to 2.0.0 [wiz 2022-03-08]
	Updated graphics/eog to 40.3 [prlw1 2022-03-08]
	Updated net/filezilla to 3.58.0 [wiz 2022-03-08]
	Updated print/texlab to 3.3.2 [wiz 2022-03-08]
	Updated games/hitori to 3.38.3 [prlw1 2022-03-08]
	Updated print/poppler to 22.03.0 [wiz 2022-03-08]
	Updated sysutils/felix to 0.4.2 [pin 2022-03-08]
	Updated audio/spotify-player to 0.6.0 [pin 2022-03-08]
	Updated devel/py-mercurial to 6.1 [wiz 2022-03-08]
	Updated devel/py-hg-evolve to 10.5.0 [wiz 2022-03-08]
	Updated sysutils/dbus to 1.14.0 [wiz 2022-03-08]
	Updated ham/chirp to 20220308 [gdt 2022-03-08]
	Updated devel/mold to 1.1.1 [fcambus 2022-03-08]
	Updated net/unison-snapshot to 2.51.91 [gdt 2022-03-08]
	Updated devel/pango to 1.50.5 [ryoon 2022-03-09]
	Updated devel/pangomm to 2.46.1nb2 [ryoon 2022-03-09]
	Updated devel/pangomm2.48 to 2.48.1nb2 [ryoon 2022-03-09]
	Updated print/qpdf to 10.6.2 [ryoon 2022-03-09]
	Updated www/py-httpie to 3.1.0 [wiz 2022-03-09]
	Updated www/nginx to 1.20.2nb2 [osa 2022-03-09]
	Updated www/nginx-devel to 1.21.6nb1 [osa 2022-03-09]
	Updated sysutils/xfce4-diskperf-plugin to 2.7.0 [gutteridge 2022-03-10]
	Removed sysutils/py-notify-python [gutteridge 2022-03-10]
	Updated www/nginx to 1.20.2nb3 [osa 2022-03-10]
	Updated www/nginx-devel to 1.21.6nb2 [osa 2022-03-10]
	Updated audio/ncspot to 0.9.6 [pin 2022-03-10]
	Updated shells/starship to 1.4.0 [pin 2022-03-10]
	Updated audio/termusic to 0.6.11 [pin 2022-03-10]
	Updated devel/ocaml-dune-configurator to 2.9.3nb2 [jaapb 2022-03-10]
	Updated multimedia/libmediainfo to 21.09 [ryoon 2022-03-10]
	Updated multimedia/mediainfo to 21.09 [ryoon 2022-03-10]
	Updated www/firefox91 to 91.7.0 [nia 2022-03-10]
	Updated www/firefox91-l10n to 91.7.0 [nia 2022-03-10]
	Updated www/nginx to 1.20.2nb4 [osa 2022-03-10]
	Updated www/nginx-devel to 1.21.6nb3 [osa 2022-03-10]
	Updated devel/libhandy to 1.5.91 [prlw1 2022-03-10]
	Updated www/epiphany to 40.6 [prlw1 2022-03-10]
	Added sysutils/py-notify2 version 0.3.1 [gutteridge 2022-03-10]
	Updated pkgtools/pkglint to 21.4.3 [rillig 2022-03-11]
	Updated devel/egypt to 1.11 [gson 2022-03-11]
	Updated shells/starship to 1.4.2 [pin 2022-03-11]
	Updated textproc/jless to 0.8.0 [pin 2022-03-11]
	Updated math/R to 4.1.3 [wen 2022-03-11]
	Updated games/woof to 9.0.0 [micha 2022-03-11]
	Updated x11/xlockmore to 5.69 [micha 2022-03-11]
	Updated www/p5-Session-Storage-Secure to 1.000 [wen 2022-03-11]
	Updated net/remmina to 1.4.25 [ryoon 2022-03-11]
	Updated emulators/xnp2 to 0.86nb13 [ryoon 2022-03-11]
	Updated databases/postgresql-timescaledb to 2.6.0 [tnn 2022-03-11]
	Updated databases/postgresql-promscale_extension to 0.3.2 [tnn 2022-03-11]
	Updated databases/promscale to 0.10.0 [tnn 2022-03-11]
	Updated databases/prometheus to 2.33.5 [tnn 2022-03-11]
	Updated www/varnish to 7.0.2 [tnn 2022-03-11]
	Updated www/grafana to 8.4.3 [tnn 2022-03-11]
	Updated net/synergy to 1.14.3.5 [tnn 2022-03-11]
	Updated math/volk to 2.5.1 [tnn 2022-03-11]
	Updated devel/git-lfs to 3.1.2 [tnn 2022-03-11]
	Updated devel/git-filter-repo to 2.34.0 [tnn 2022-03-11]
	Updated x11/tint2 to 17.0.2 [tnn 2022-03-11]
	Updated security/hitch to 1.7.2 [tnn 2022-03-11]
	Updated cad/kicad to 6.0.2 [tnn 2022-03-11]
	Updated cad/kicad-doc to 6.0.2 [tnn 2022-03-11]
	Updated cad/kicad-footprints to 6.0.2 [tnn 2022-03-11]
	Updated cad/kicad-packages3d to 6.0.2 [tnn 2022-03-11]
	Updated cad/kicad-symbols to 6.0.2 [tnn 2022-03-11]
	Updated cad/kicad-templates to 6.0.2 [tnn 2022-03-11]
	Updated shells/zsh to 5.8.1 [kim 2022-03-12]
	Updated textproc/libxml2 to 2.9.13 [kim 2022-03-12]
	Updated textproc/py-libxml2 to 2.9.13 [kim 2022-03-12]
	Updated devel/libuv to 1.44.1 [adam 2022-03-12]
	Updated www/py-nbclient to 0.5.13 [adam 2022-03-12]
	Updated www/py-nbconvert to 6.4.3 [adam 2022-03-12]
	Updated www/py-uvicorn to 0.17.6 [adam 2022-03-12]
	Updated pkgtools/pkglint to 21.4.4 [rillig 2022-03-12]
	Removed sysutils/u-boot-rockpro64-ayufan successor sysutils/u-boot-rockpro64 [tnn 2022-03-12]
	Updated www/wordpress to 5.9.2 [morr 2022-03-12]
	Updated cad/klayout to 0.27.8 [mef 2022-03-12]
	Updated textproc/lowdown to 0.11.1 [fcambus 2022-03-12]
	Updated wm/jwm to 2.4.1 [tsutsui 2022-03-12]
	Updated ham/gnuradio-channels to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-companion to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-core to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-ctrlport to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-digital to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-doxygen to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-dtv to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-fec to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-network to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-pdu to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-qtgui to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-soapy-sdr to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-trellis to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-uhd to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-utils to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-video-sdl to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-vocoder to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-wavelet to 3.10.1.1 [tnn 2022-03-12]
	Updated ham/gnuradio-zeromq to 3.10.1.1 [tnn 2022-03-12]
	Updated meta-pkgs/gnuradio to 3.10.1.1 [tnn 2022-03-12]
	Updated print/hplip to 3.19.12nb14 [gutteridge 2022-03-13]
	Removed graphics/aqsis [nia 2022-03-13]
	Updated devel/MoarVM to 2022.02 [mef 2022-03-13]
	Updated lang/nqp to 2022.02 [mef 2022-03-13]
	Updated lang/rakudo to 2022.02 [mef 2022-03-13]
	Updated converters/erlang-iconv to 1.0.13 [mef 2022-03-13]
	Updated converters/opencc to 1.1.3 [mef 2022-03-13]
	Updated biology/minimap2 to 2.24 [mef 2022-03-13]
	Updated devel/R-brio to 1.1.3 [mef 2022-03-13]
	Added lang/gcc10-aux version 10.3.0 [nia 2022-03-13]
	Updated geography/geos to 3.10.2 [gdt 2022-03-13]
	Updated net/unison2.51 to 2.52.0 [gdt 2022-03-13]
	Updated devel/ruby-activesupport52 to 5.2.6.3 [taca 2022-03-13]
	Updated devel/ruby-activemodel52 to 5.2.6.3 [taca 2022-03-13]
	Updated devel/ruby-activejob52 to 5.2.6.3 [taca 2022-03-13]
	Updated www/ruby-actionview52 to 5.2.6.3 [taca 2022-03-13]
	Updated www/ruby-actionpack52 to 5.2.6.3 [taca 2022-03-13]
	Updated www/ruby-actioncable52 to 5.2.6.3 [taca 2022-03-13]
	Updated databases/ruby-activerecord52 to 5.2.6.3 [taca 2022-03-13]
	Updated devel/ruby-activestorage52 to 5.2.6.3 [taca 2022-03-13]
	Updated mail/ruby-actionmailer52 to 5.2.6.3 [taca 2022-03-13]
	Updated devel/ruby-railties52 to 5.2.6.3 [taca 2022-03-13]
	Updated www/ruby-rails52 to 5.2.6.3 [taca 2022-03-13]
	Added net/unison version 2.52.0 [gdt 2022-03-13]
	Removed net/unison2.51 successor net/unison [gdt 2022-03-13]
	Updated devel/ruby-activesupport60 to 6.0.4.7 [taca 2022-03-13]
	Updated devel/ruby-activemodel60 to 6.0.4.7 [taca 2022-03-13]
	Updated devel/ruby-activejob60 to 6.0.4.7 [taca 2022-03-13]
	Updated www/ruby-actionview60 to 6.0.4.7 [taca 2022-03-13]
	Updated www/ruby-actionpack60 to 6.0.4.7 [taca 2022-03-13]
	Updated databases/ruby-activerecord60 to 6.0.4.7 [taca 2022-03-13]
	Updated mail/ruby-actionmailer60 to 6.0.4.7 [taca 2022-03-13]
	Updated devel/ruby-activestorage60 to 6.0.4.7 [taca 2022-03-13]
	Updated mail/ruby-actionmailbox60 to 6.0.4.7 [taca 2022-03-13]
	Updated www/ruby-actioncable60 to 6.0.4.7 [taca 2022-03-13]
	Updated devel/ruby-railties60 to 6.0.4.7 [taca 2022-03-13]
	Updated textproc/ruby-actiontext60 to 6.0.4.7 [taca 2022-03-13]
	Updated www/ruby-rails60 to 6.0.4.7 [taca 2022-03-13]
	Updated devel/ruby-activesupport61 to 6.1.4.7 [taca 2022-03-13]
	Updated devel/ruby-activemodel61 to 6.1.4.7 [taca 2022-03-13]
	Updated devel/ruby-activejob61 to 6.1.4.7 [taca 2022-03-13]
	Updated www/ruby-actionview61 to 6.1.4.7 [taca 2022-03-13]
	Updated www/ruby-actionpack61 to 6.1.4.7 [taca 2022-03-13]
	Updated databases/ruby-activerecord61 to 6.1.4.7 [taca 2022-03-13]
	Updated devel/ruby-activestorage61 to 6.1.4.7 [taca 2022-03-13]
	Updated mail/ruby-actionmailer61 to 6.1.4.7 [taca 2022-03-13]
	Updated mail/ruby-actionmailbox61 to 6.1.4.7 [taca 2022-03-13]
	Updated www/ruby-actioncable61 to 6.1.4.7 [taca 2022-03-13]
	Updated devel/ruby-railties61 to 6.1.4.7 [taca 2022-03-13]
	Updated textproc/ruby-actiontext61 to 6.1.4.7 [taca 2022-03-13]
	Updated www/ruby-rails61 to 6.1.4.7 [taca 2022-03-13]
	Removed net/unison-snapshot [gdt 2022-03-13]
	Updated devel/ruby-activesupport70 to 7.0.2.3 [taca 2022-03-13]
	Updated devel/ruby-activemodel70 to 7.0.2.3 [taca 2022-03-13]
	Updated devel/ruby-activejob70 to 7.0.2.3 [taca 2022-03-13]
	Updated www/ruby-actionview70 to 7.0.2.3 [taca 2022-03-13]
	Updated www/ruby-actionpack70 to 7.0.2.3 [taca 2022-03-13]
	Updated databases/ruby-activerecord70 to 7.0.2.3 [taca 2022-03-13]
	Updated devel/ruby-activestorage70 to 7.0.2.3 [taca 2022-03-13]
	Updated mail/ruby-actionmailer70 to 7.0.2.3 [taca 2022-03-13]
	Updated mail/ruby-actionmailbox70 to 7.0.2.3 [taca 2022-03-13]
	Updated www/ruby-actioncable70 to 7.0.2.3 [taca 2022-03-13]
	Updated devel/ruby-railties70 to 7.0.2.3 [taca 2022-03-13]
	Updated textproc/ruby-actiontext70 to 7.0.2.3 [taca 2022-03-13]
	Updated www/ruby-rails70 to 7.0.2.3 [taca 2022-03-13]
	Updated net/isc-dhcp4 to 4.4.3 [taca 2022-03-13]
	Updated net/isc-dhclient4 to 4.4.3 [taca 2022-03-13]
	Updated net/isc-dhcpd4 to 4.4.3 [taca 2022-03-13]
	Updated net/isc-dhcrelay4 to 4.4.3 [taca 2022-03-13]
	Updated x11/libdrm to 2.4.110 [tnn 2022-03-13]
	Updated lang/libLLVM to 13.0.1 [tnn 2022-03-13]
	Updated graphics/MesaLib to 21.3.7 [tnn 2022-03-13]
	Updated sysutils/auto-admin to 0.7.10 [bacon 2022-03-13]
	Updated lang/go-bin to 1.17.8 [tnn 2022-03-13]
	Updated www/nginx to 1.20.2nb5 [osa 2022-03-13]
	Updated www/nginx-devel to 1.21.6nb4 [osa 2022-03-13]
	Added lang/njs version 0.7.2 [osa 2022-03-13]
	Updated databases/sqlite3 to 3.38.1 [adam 2022-03-14]
	Updated databases/sqlite3-docs to 3.38.1 [adam 2022-03-14]
	Updated databases/sqlite3-tcl to 3.38.1 [adam 2022-03-14]
	Updated devel/lemon to 1.0.3.38.1 [adam 2022-03-14]
	Updated sysutils/bkt to 0.5.3 [pin 2022-03-14]
	Updated x11/citron to 0.14.2 [pin 2022-03-14]
	Updated devel/git-cliff to 0.6.1 [pin 2022-03-14]
	Updated wm/shod to 2.4.0 [pin 2022-03-14]
	Updated www/guile-haunt to 0.2.5nb1 [nikita 2022-03-14]
	Updated fonts/harfbuzz to 4.0.1 [adam 2022-03-14]
	Updated fonts/harfbuzz-icu to 4.0.1 [adam 2022-03-14]
	Updated multimedia/mkvtoolnix to 66.0.0 [adam 2022-03-14]
	Updated lang/rust-analyzer to 0.0.2022.03.14 [adam 2022-03-14]
	Updated www/guile-haunt to 0.2.6 [nikita 2022-03-14]
	Updated sysutils/R-unix to 1.5.4 [mef 2022-03-14]
	Updated devel/R-Rcpp to 1.0.8.2 [mef 2022-03-14]
	Updated textproc/guile-commonmark to 0.1.2nb1 [nikita 2022-03-14]
	Updated geography/libgeotiff to 1.7.1 [gdt 2022-03-14]
	Updated x11/xterm to 372 [pin 2022-03-14]
	Updated x11/kitty to 0.24.4 [pin 2022-03-14]
	Added devel/guile30-slib version 3.2.6 [wiz 2022-03-14]
	Updated net/php-baikal to 0.9.1 [wiz 2022-03-14]
	Updated editors/Sigil to 1.9.2 [wiz 2022-03-14]
	Updated textproc/git-delta to 0.12.1 [wiz 2022-03-14]
	Updated textproc/ispell to 3.4.05 [wiz 2022-03-14]
	Updated multimedia/libbluray to 1.3.1 [wiz 2022-03-14]
	Updated devel/py-pip-api to 0.0.29 [wiz 2022-03-14]
	Updated security/py-pip-audit to 2.1.0 [wiz 2022-03-14]
	Updated fonts/unifont to 14.0.02 [wiz 2022-03-14]
	Updated fonts/fontforge to 20220308 [wiz 2022-03-14]
	Updated geography/gdal-lib to 3.4.2 [gdt 2022-03-14]
	Updated geography/py-gdal to 3.4.2 [gdt 2022-03-14]
	Updated devel/guile-gcrypt to 0.3.0nb1 [nikita 2022-03-14]
	Updated textproc/guile-json to 4.7.0nb1 [nikita 2022-03-14]
	Updated textproc/guile-syntax-highlight to 0.1nb1 [nikita 2022-03-14]
	Updated shells/guile-gash to 0.3.0 [nikita 2022-03-14]
	Updated devel/guile-bytestructures to 1.0.10nb1 [nikita 2022-03-14]
	Updated devel/guile-git to 0.5.2nb1 [nikita 2022-03-14]
	Updated databases/guile-sqlite3 to 0.1.3nb1 [nikita 2022-03-14]
	Updated devel/pangomm to 2.46.2 [adam 2022-03-14]
	Updated x11/gtk3 to 3.24.33 [adam 2022-03-14]
	Updated lang/zig to 0.9.1 [adam 2022-03-15]
	Updated archivers/unrar to 6.1.6 [adam 2022-03-15]
	Updated devel/meson to 0.61.3 [adam 2022-03-15]
	Updated www/apache24 to 2.4.53 [adam 2022-03-15]
	Updated devel/py-ipykernel to 6.9.2 [adam 2022-03-15]
	Updated lang/py-mypy to 0.941 [adam 2022-03-15]
	Updated finance/py-stripe to 2.67.0 [adam 2022-03-15]
	Updated devel/py-click to 8.0.4 [adam 2022-03-15]
	Updated textproc/ugrep to 3.7.5 [adam 2022-03-15]
	Updated net/py-minio to 7.1.5 [adam 2022-03-15]
	Updated textproc/unicode-character-database to 14.0.0 [tsutsui 2022-03-15]
	Updated textproc/unicode-emoji to 14.0 [tsutsui 2022-03-15]
	Updated inputmethod/ibus to 1.5.26 [tsutsui 2022-03-15]
	Updated lang/wasi-libc to 0.0.0pre20220311 [wiz 2022-03-15]
	Updated finance/gnucash to 4.9nb2 [wiz 2022-03-15]
	Updated misc/kdeartwork4 to 15.08.3nb31 [gutteridge 2022-03-15]
	Updated textproc/split-thai to 2.15 [scole 2022-03-15]
	Removed security/libglobalplatform [nia 2022-03-15]
	Removed security/gpshell [nia 2022-03-15]
	Updated security/openssl to 1.1.1n [wiz 2022-03-15]
	Updated x11/xf86-video-intel to 2.99.917.20210115 [tnn 2022-03-15]
	Added lang/go118 version 1.18 [bsiegert 2022-03-15]
	Updated devel/libxtend to 0.1.5 [bacon 2022-03-15]
	Updated biology/biolibc to 0.2.2 [bacon 2022-03-15]
	Updated biology/ad2vcf to 0.1.5 [bacon 2022-03-15]
	Updated biology/biolibc-tools to 0.1.2 [bacon 2022-03-15]
	Updated biology/peak-classifier to 0.1.3 [bacon 2022-03-15]
	Updated biology/vcf-split to 0.1.4 [bacon 2022-03-15]
	Updated biology/vcf2hap to 0.1.5 [bacon 2022-03-15]
	Updated devel/py-pip to 21.3.1nb3 [wiz 2022-03-15]
	Updated devel/py-dict2xml to 1.7.1 [adam 2022-03-16]
	Updated devel/py-faker to 13.3.2 [adam 2022-03-16]
	Updated audio/fasttracker2 to 1.52 [fox 2022-03-16]
	Added textproc/csvlens version 0.1.4 [pin 2022-03-16]
	Updated audio/libopenmpt to 0.6.2 [fcambus 2022-03-16]
	Updated net/gh to 2.6.0 [bsiegert 2022-03-16]
	Updated devel/cmake to 3.22.3nb1 [jperkin 2022-03-16]
	Updated net/bind911 to 9.11.37 [taca 2022-03-17]
	Updated net/bind916 to 9.16.27 [taca 2022-03-17]
	Updated www/nginx to 1.20.2nb6 [osa 2022-03-17]
	Updated www/nginx-devel to 1.21.6nb5 [osa 2022-03-17]
	Updated net/openvpn to 2.5.6 [adam 2022-03-17]
	Updated www/py-urllib3 to 1.26.9 [adam 2022-03-17]
	Updated security/py-josepy to 1.13.0 [adam 2022-03-17]
	Updated devel/py-jupyter-console to 6.4.3 [adam 2022-03-17]
	Updated security/py-acme to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-apache to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-digitalocean to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-dnsimple to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-dnsmadeeasy to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-gehirn to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-google to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-linode to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-luadns to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-nsone to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-ovh to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-rfc2136 to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-route53 to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-dns-sakuracloud to 1.25.0 [adam 2022-03-17]
	Updated security/py-certbot-nginx to 1.25.0 [adam 2022-03-17]
	Updated net/py-zeroconf to 0.38.4 [adam 2022-03-17]
	Updated www/py-curl to 7.45.1 [adam 2022-03-17]
	Updated net/py-python-socks to 2.0.3 [adam 2022-03-17]
	Updated www/py-aiohttp-socks to 0.7.1 [adam 2022-03-17]
	Updated www/py-httpx-socks to 0.7.3 [adam 2022-03-17]
	Updated biology/hisat2 to 2.2.1 [bacon 2022-03-17]
	Updated security/gnutls to 3.7.4 [adam 2022-03-17]
	Updated textproc/ugrep to 3.7.6 [adam 2022-03-17]
	Updated geography/qgis to 3.22.4 [gdt 2022-03-17]
	Updated biology/stacks to 2.60 [bacon 2022-03-17]
	Updated chat/matrix-synapse to 1.54.0 [gdt 2022-03-18]
	Updated lang/php80 to 8.0.17 [taca 2022-03-18]
	Updated lang/php81 to 8.1.4 [taca 2022-03-18]
	Updated graphics/librsvg to 2.52.8 [gutteridge 2022-03-19]
	Updated devel/libdwarf to 0.3.4 [wiz 2022-03-19]
	Updated www/kore to 4.2.0 [fcambus 2022-03-19]
	Updated filesystems/openafs to 1.8.8.1 [jakllsch 2022-03-19]
	Updated devel/acme to 0.97.0.0.323 [rhialto 2022-03-19]
	Updated lang/python37 to 3.7.13 [adam 2022-03-19]
	Updated lang/python38 to 3.8.13 [adam 2022-03-19]
	Updated lang/python39 to 3.9.11 [adam 2022-03-19]
	Updated lang/python310 to 3.10.3 [adam 2022-03-19]
	Updated lang/py37-html-docs to 3.7.13 [adam 2022-03-19]
	Updated lang/py38-html-docs to 3.8.13 [adam 2022-03-19]
	Updated lang/py39-html-docs to 3.9.11 [adam 2022-03-19]
	Updated lang/py310-html-docs to 3.10.3 [adam 2022-03-19]
	Updated net/p5-Geo-IPfree to 1.160000 [wen 2022-03-19]
	Updated net/p5-IO-Socket-INET6 to 2.73 [wen 2022-03-19]