summaryrefslogtreecommitdiff
path: root/doc/CHANGES-2020
blob: 2fed67bcce388f26429df2b5f7cb6d8f36a9db2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
$NetBSD: CHANGES-2020,v 1.1962 2020/03/29 05:22:29 taca Exp $

Changes to the packages collection and infrastructure in 2020:

	Updated devel/p5-Date-Manip to 6.79 [mef 2020-01-01]
	Updated devel/p5-IO-Async to 0.75 [mef 2020-01-01]
	Updated devel/samurai to 1.0 [ng0 2020-01-01]
	Updated www/nsm to 1.25 [ng0 2020-01-01]
	Updated textproc/json-yaml to 1.2.1 [sjmulder 2020-01-01]
	Updated security/doas to 6.2p4 [ng0 2020-01-01]
	Updated devel/p5-B-Keywords to 1.21 [mef 2020-01-01]
	Updated devel/p5-EV to 4.31 [mef 2020-01-01]
	Updated security/sudo to 1.8.30 [kim 2020-01-01]
	Removed graphics/qiviewer [kamil 2020-01-01]
	Removed math/extcalc [kamil 2020-01-01]
	Added devel/hs-uuid-types version 1.0.3 [pho 2020-01-01]
	Updated devel/hs-stm to 2.5.0.0 [pho 2020-01-01]
	Added devel/hs-StateVar version 1.2 [pho 2020-01-01]
	Updated devel/p5-ExtUtils-MakeMaker to 7.42 [mef 2020-01-01]
	Added math/hs-contravariant version 1.5.2 [pho 2020-01-01]
	Updated devel/p5-Alien-Build to 1.94 [mef 2020-01-01]
	Updated devel/hs-vector to 0.12.0.3 [pho 2020-01-01]
	Updated converters/hs-aeson to 1.4.6.0 [pho 2020-01-01]
	Updated devel/hs-mtl to 2.2.2 [pho 2020-01-01]
	Updated devel/hs-cmdargs to 0.10.20 [pho 2020-01-01]
	Updated devel/p5-CPAN-Perl-Releases to 5.20191220 [mef 2020-01-01]
	Updated devel/p5-Compress-Raw-Bzip2 to 2.093 [mef 2020-01-01]
	Updated devel/p5-Compress-Raw-Zlib to 2.093 [mef 2020-01-01]
	Updated net/hs-network to 3.1.1.1 [pho 2020-01-01]
	Updated devel/hs-syb to 0.7.1 [pho 2020-01-01]
	Updated devel/hdevtools to 0.1.8.0 [pho 2020-01-01]
	Updated devel/hs-MonadRandom to 0.3nb1 [pho 2020-01-01]
	Added devel/hs-splitmix version 0.0.3 [pho 2020-01-01]
	Updated devel/hs-QuickCheck to 2.13.2 [pho 2020-01-01]
	Updated devel/p5-Glib-Object-Introspection to 0.048 [mef 2020-01-01]
	Updated devel/hs-exceptions to 0.10.4 [pho 2020-01-01]
	Updated devel/hs-mmorph to 1.1.3 [pho 2020-01-01]
	Updated devel/p5-Module-Compile to 0.38 [mef 2020-01-01]
	Updated devel/p5-Module-CoreList to 5.20191220 [mef 2020-01-01]
	Updated devel/p5-Module-Find to 0.14 [mef 2020-01-01]
	Updated devel/p5-MooX-late to 0.016 [mef 2020-01-01]
	Updated devel/hs-transformers-base to 0.4.5.2 [pho 2020-01-01]
	Updated devel/hs-monad-control to 1.0.2.3 [pho 2020-01-01]
	Added devel/hs-unliftio-core version 0.1.2.0 [pho 2020-01-01]
	Updated devel/p5-Moose to 2.2012 [mef 2020-01-01]
	Updated devel/hs-lifted-base to 0.2.3.12 [pho 2020-01-01]
	Updated devel/p5-MooseX-Daemonize to 0.22 [mef 2020-01-01]
	Updated devel/hs-resourcet to 1.1.11 [pho 2020-01-01]
	Updated devel/p5-Parse-PMFile to 0.42 [mef 2020-01-01]
	Updated math/hs-distributive to 0.6.1 [pho 2020-01-01]
	Updated sysutils/hs-temporary to 1.3 [pho 2020-01-01]
	Updated devel/alex to 3.2.5 [pho 2020-01-01]
	Updated devel/happy to 1.19.12 [pho 2020-01-01]
	Updated devel/p5-Perl-Critic to 1.136 [mef 2020-01-01]
	Updated devel/hs-blaze-builder to 0.4.1.0 [pho 2020-01-01]
	Removed x11/grandr_applet [nia 2020-01-01]
	Removed x11/fast-user-switch-applet [nia 2020-01-01]
	Removed net/gnome-netstatus [nia 2020-01-01]
	Updated misc/tmux to 3.0a [leot 2020-01-01]
	Added wm/herbstluftwm version 0.7.2 [nia 2020-01-01]
	Updated security/sqlmap to 1.4 [leot 2020-01-01]
	Updated net/aria2 to 1.35.0 [leot 2020-01-01]
	Added math/py-Keras-Preprocessing version 1.1.0 [minskim 2020-01-01]
	Added math/py-Keras-Applications version 1.0.8 [minskim 2020-01-01]
	Added devel/go-xerrors version 20190719 [bsiegert 2020-01-01]
	Updated sysutils/py-borgbackup to 1.1.10 [bsiegert 2020-01-01]
	Updated sysutils/augeas to 1.12.0 [bsiegert 2020-01-01]
	Updated mail/fetchmail to 6.4.1 [triaxx 2020-01-01]
	Updated graphics/libepoxy to 1.5.4 [adam 2020-01-01]
	Updated net/haproxy to 2.1.2 [adam 2020-01-01]
	Updated net/mitmproxy to 5.0.1 [leot 2020-01-01]
	Updated editors/le to 1.16.7 [fcambus 2020-01-01]
	Updated graphics/libansilove to 1.1.7 [fcambus 2020-01-01]
	Updated lang/yabasic to 2.86.3 [fcambus 2020-01-01]
	Added fonts/unscii version 1.1 [ng0 2020-01-02]
	Updated devel/hs-MonadRandom to 0.5.1.1 [pho 2020-01-02]
	Added time/hs-old-time version 1.1.0.3 [pho 2020-01-02]
	Updated textproc/hs-polyparse to 1.13 [pho 2020-01-02]
	Updated devel/hs-cpphs to 1.20.8 [pho 2020-01-02]
	Updated devel/hs-haskell-src-exts to 1.22.0 [pho 2020-01-02]
	Updated devel/hs-hint to 0.7.0 [pho 2020-01-02]
	Updated devel/hs-reflection to 2.1.5 [pho 2020-01-02]
	Updated devel/hs-safe to 0.3.18 [pho 2020-01-02]
	Updated devel/hs-setlocale to 1.0.0.9 [pho 2020-01-02]
	Updated devel/hs-split to 0.2.3.3 [pho 2020-01-02]
	Updated audio/libopenmpt to 0.4.11 [fcambus 2020-01-02]
	Updated devel/hs-vault to 0.3.1.3 [pho 2020-01-02]
	Added games/xkanon version 090830 [tsutsui 2020-01-02]
	Updated devel/py-ipython to 7.11.1 [adam 2020-01-02]
	Updated multimedia/ffmpeg4 to 4.2.2 [adam 2020-01-02]
	Updated devel/hs-vector-algorithms to 0.8.0.3 [pho 2020-01-02]
	Updated x11/xscreensaver to 5.43 [hauke 2020-01-02]
	Updated x11/xscreensaver-demo to 5.43 [hauke 2020-01-02]
	Updated devel/hs-void to 0.7.3 [pho 2020-01-02]
	Added devel/hs-vector-th-unbox version 0.2.1.7 [pho 2020-01-02]
	Added math/hs-math-functions version 0.3.3.0 [pho 2020-01-02]
	Updated math/hs-mwc-random to 0.14.0.0 [pho 2020-01-02]
	Updated textproc/hs-blaze-markup to 0.8.2.3 [pho 2020-01-02]
	Updated textproc/hs-blaze-html to 0.9.1.2 [pho 2020-01-02]
	Updated net/hub to 2.13.0 [leot 2020-01-02]
	Updated graphics/leptonica to 1.79.0 [adam 2020-01-02]
	Updated textproc/hs-case-insensitive to 1.2.1.0 [pho 2020-01-02]
	Updated textproc/hs-xml to 1.3.14 [pho 2020-01-02]
	Updated textproc/hs-hscolour to 1.24.4 [pho 2020-01-02]
	Updated textproc/hs-pandoc-types to 1.17.6.1 [pho 2020-01-02]
	Updated textproc/hs-parsec to 3.1.14.0 [pho 2020-01-02]
	Updated textproc/hs-regex-base to 0.94.0.0 [pho 2020-01-02]
	Updated textproc/hs-regex-posix to 0.96.0.0 [pho 2020-01-02]
	Updated textproc/hs-stringsearch to 0.3.6.6 [pho 2020-01-02]
	Updated textproc/hs-tagsoup to 0.14.8 [pho 2020-01-02]
	Updated print/cups to 2.3.1 [leot 2020-01-02]
	Updated print/cups-base to 2.3.1 [leot 2020-01-02]
	Added net/hs-network-uri version 2.6.1.0 [pho 2020-01-02]
	Updated sysutils/entr to 4.3 [leot 2020-01-02]
	Updated textproc/hs-texmath to 0.11.3 [pho 2020-01-02]
	Updated time/hs-timezone-series to 0.1.9 [pho 2020-01-02]
	Updated net/py-rt to 1.0.12 [leot 2020-01-02]
	Updated www/hs-HTTP to 4000.3.14 [pho 2020-01-02]
	Updated x11/hs-X11 to 1.9.1 [pho 2020-01-02]
	Updated wm/xmonad to 0.14 [pho 2020-01-02]
	Updated net/py-gcs-oauth2-boto-plugin to 2.5 [bsiegert 2020-01-02]
	Added devel/hs-async version 2.2.2 [pho 2020-01-02]
	Updated x11/mate-terminal to 1.22.1nb3 [gutteridge 2020-01-02]
	Updated net/py-gsutil to 4.45 [bsiegert 2020-01-02]
	Updated sysutils/di to 4.47.3 [bsiegert 2020-01-02]
	Updated devel/gradle to 4.10.3 [abs 2020-01-02]
	Updated security/openssl to 1.0.2u [sevan 2020-01-02]
	Updated multimedia/nostt to 1.2 [sjmulder 2020-01-02]
	Updated mail/fetchmailconf to 6.4.1 [wiz 2020-01-02]
	Updated devel/ruby-delayer to 1.1.0 [tsutsui 2020-01-03]
	Updated graphics/libsixel to 1.8.5 [tsutsui 2020-01-03]
	Added games/xclannad version 0.07hc [tsutsui 2020-01-03]
	Added math/hs-comonad version 5.0.6 [pho 2020-01-03]
	Added math/hs-bifunctors version 5.5.6 [pho 2020-01-03]
	Added math/hs-profunctors version 5.5.1 [pho 2020-01-03]
	Added math/hs-semigroupoids version 5.3.4 [pho 2020-01-03]
	Added devel/hs-either version 5.0.1.1 [pho 2020-01-03]
	Added time/hs-clock version 0.8 [pho 2020-01-03]
	Added misc/hs-extra version 1.6.18 [pho 2020-01-03]
	Added textproc/hs-regex-pcre version 0.95.0.0 [pho 2020-01-03]
	Added textproc/hs-unicode-show version 0.1.0.4 [pho 2020-01-03]
	Added devel/hs-unix-compat version 0.5.2 [pho 2020-01-03]
	Added devel/hs-mono-traversable version 1.0.8.1 [pho 2020-01-03]
	Added textproc/hs-yaml version 0.8.30 [pho 2020-01-03]
	Updated net/grpc to 1.26.0 [adam 2020-01-03]
	Updated net/py-grpcio to 1.26.0 [adam 2020-01-03]
	Updated net/py-grpcio-tools to 1.26.0 [adam 2020-01-03]
	Added net/py-grpcio-testing version 1.26.0 [adam 2020-01-03]
	Updated devel/py-ruamel-ordereddict to 0.4.14 [adam 2020-01-03]
	Updated databases/py-multidict to 4.7.3 [adam 2020-01-03]
	Updated textproc/py-jellyfish to 0.7.2 [adam 2020-01-03]
	Updated audio/py-beets to 1.4.9nb1 [adam 2020-01-03]
	Updated net/dhcpcd to 8.1.5 [roy 2020-01-03]
	Updated misc/mdp to 1.0.15 [nia 2020-01-03]
	Updated devel/py-test-xdist to 1.31.0 [adam 2020-01-03]
	Updated textproc/py-parse to 1.14.0 [adam 2020-01-03]
	Updated devel/py-logbook to 1.5.3 [adam 2020-01-03]
	Updated lang/py-mypy to 0.761 [adam 2020-01-03]
	Updated net/py-gsutil to 4.46 [adam 2020-01-03]
	Updated math/py-simpleeval to 0.9.10 [adam 2020-01-03]
	Updated devel/py-py to 1.8.1 [adam 2020-01-03]
	Updated devel/py-fakefs to 3.7.1 [adam 2020-01-03]
	Updated textproc/py-pallets-sphinx-themes to 1.2.3 [adam 2020-01-03]
	Updated devel/py-pyparsing to 2.4.6 [adam 2020-01-03]
	Updated devel/py-coverage to 5.0.1 [adam 2020-01-03]
	Updated devel/py-pebble to 4.4.1 [adam 2020-01-03]
	Updated print/cups-filters to 1.26.1 [leot 2020-01-03]
	Updated www/vimb to 3.6.0 [leot 2020-01-03]
	Added lang/ghc80 version 8.0.2 [pho 2020-01-03]
	Updated devel/guile-gcrypt to 0.2.1 [ng0 2020-01-03]
	Updated graphics/hugin to 2019.2.0 [adam 2020-01-03]
	Updated lang/rust to 1.40.0 [jperkin 2020-01-03]
	Updated meta-pkgs/mate to 1.22.2 [gutteridge 2020-01-04]
	Updated print/hplip to 3.19.12 [khorben 2020-01-04]
	Updated net/bind911 to 9.11.14 [taca 2020-01-04]
	Updated net/bind914 to 9.14.9 [taca 2020-01-04]
	Added www/squid4 version 4.9 [taca 2020-01-04]
	Updated audio/libmysofa to 0.9.1 [nia 2020-01-04]
	Updated emulators/dosbox-x to 0.82.25 [nia 2020-01-04]
	Updated net/get_iplayer to 3.24 [nia 2020-01-04]
	Updated emulators/sameboy to 0.12.3 [nia 2020-01-04]
	Updated emulators/libretro-sameboy to 0.12.3 [nia 2020-01-04]
	Updated www/gitea to 1.10.2 [nia 2020-01-04]
	Updated games/devilutionx to 1.0.0 [nia 2020-01-04]
	Updated emulators/nestopia to 1.50 [nia 2020-01-04]
	Updated emulators/libretro-nestopia to 1.50 [nia 2020-01-04]
	Removed lang/go111 [bsiegert 2020-01-04]
	Removed misc/deskbar-applet [nia 2020-01-04]
	Removed time/hamster-applet [nia 2020-01-04]
	Removed comms/gnome-pilot [nia 2020-01-04]
	Removed devel/libgail-gnome [nia 2020-01-04]
	Updated emulators/qemu to 4.2.0nb1 [ryoon 2020-01-04]
	Removed x11/gnopernicus [nia 2020-01-04]
	Removed x11/gnome-mag [nia 2020-01-04]
	Removed security/seahorse-plugins [nia 2020-01-04]
	Removed net/logjam [nia 2020-01-04]
	Updated games/redeclipse to 2.0.0 [nia 2020-01-04]
	Updated net/libtorrent-rasterbar to 1.2.3 [nia 2020-01-04]
	Updated net/qbittorrent to 4.2.1 [nia 2020-01-04]
	Updated graphics/ImageMagick to 7.0.9.13 [wiz 2020-01-04]
	Updated net/glib-networking to 2.62.2 [wiz 2020-01-04]
	Updated www/py-httplib2 to 0.15.0 [wiz 2020-01-04]
	Updated textproc/py-uritemplate to 3.0.1 [wiz 2020-01-04]
	Updated mail/thunderbird-enigmail to 2.1.5 [wiz 2020-01-04]
	Updated pkgtools/pkglint to 19.4.1 [rillig 2020-01-04]
	Updated devel/py-mercurial to 5.2.1 [wiz 2020-01-04]
	Updated www/liferea to 1.12.7 [leot 2020-01-04]
	Updated wm/cwm to 6.6 [ng0 2020-01-04]
	Updated emulators/mame to 0.217 [wiz 2020-01-04]
	Updated devel/py-mercurial to 5.2.1nb1 [wiz 2020-01-04]
	Updated www/firefox60 to 60.9.0nb1 [ryoon 2020-01-05]
	Updated mail/thunderbird60 to 60.9.1nb1 [ryoon 2020-01-05]
	Updated graphics/darktable to 3.0.0 [ryoon 2020-01-05]
	Updated multimedia/gpac to 0.8.0 [ryoon 2020-01-05]
	Removed multimedia/totem-browser-plugin [nia 2020-01-05]
	Added devel/py-Deprecated version 1.2.7 [minskim 2020-01-05]
	Updated net/cisco-mibs to 20170101nb1 [kim 2020-01-05]
	Updated textproc/docbook-xsl to 1.79.1nb5 [adam 2020-01-05]
	Updated multimedia/mkvtoolnix to 42.0.0 [adam 2020-01-05]
	Updated sysutils/caja to 1.22.3 [gutteridge 2020-01-05]
	Updated x11/xfce4-exo to 0.12.11 [gutteridge 2020-01-05]
	Removed www/wml [kim 2020-01-05]
	Removed net/stripes [kim 2020-01-05]
	Added lang/gcc9 version 9.2.0 [rillig 2020-01-05]
	Updated x11/xfce4-terminal to 0.8.9 [gutteridge 2020-01-05]
	Updated net/gallery-dl to 1.12.2 [leot 2020-01-05]
	Updated devel/wayland-protocols to 1.18 [nia 2020-01-05]
	Updated x11/xfce4-tumbler to 0.2.8 [gutteridge 2020-01-05]
	Updated devel/mk-configure to 0.32.1 [cheusov 2020-01-05]
	Updated x11/xfce4-terminal to 0.8.9.1 [gutteridge 2020-01-06]
	Updated devel/p5-Pegex to 0.72 [schmonz 2020-01-06]
	Added sysutils/arm-trusted-firmware-rk3399 version v2.2 [mrg 2020-01-06]
	Added sysutils/u-boot-pinebook-pro version 2020.01-rc5 [mrg 2020-01-06]
	Updated pkgtools/pkgin to 0.15.0 [jperkin 2020-01-06]
	Updated graphics/girara to 0.3.4 [leot 2020-01-06]
	Removed time/xcal [kim 2020-01-06]
	Updated graphics/zathura-djvu to 0.2.9 [leot 2020-01-06]
	Updated misc/py-anita to 2.2 [gson 2020-01-06]
	Updated mail/rspamd to 2.2nb1 [jperkin 2020-01-06]
	Updated converters/help2man to 1.47.12 [adam 2020-01-06]
	Updated devel/ccache to 3.7.7 [adam 2020-01-06]
	Added devel/remake version 1.4 [ng0 2020-01-06]
	Updated pkgtools/pkglint to 19.4.2 [rillig 2020-01-06]
	Updated lang/python38 to 3.8.1nb1 [leot 2020-01-06]
	Updated sysutils/xfce4-thunar to 1.8.11 [gutteridge 2020-01-06]
	Updated security/lua-sec to 0.9 [mef 2020-01-06]
	Added mail/qsmtp version 0.37 [schmonz 2020-01-07]
	Updated devel/py-test-timeout to 1.3.4 [adam 2020-01-07]
	Updated misc/py-tqdm to 4.41.1 [adam 2020-01-07]
	Updated time/remind to 3.2.0 [kim 2020-01-07]
	Updated net/tcptraceroute6 to 1.0.4 [kim 2020-01-07]
	Updated sysutils/rsnapshot to 1.4.3 [kim 2020-01-07]
	Updated games/doom-pwad-sigil to 1.21 [micha 2020-01-07]
	Updated news/libcanlock to 3.1.1 [micha 2020-01-07]
	Updated news/canlock-hp to 3.1.1 [micha 2020-01-07]
	Updated devel/p5-Perl-PrereqScanner-NotQuiteLite to 0.9909 [wen 2020-01-07]
	Updated math/xylib to 1.5 [nros 2020-01-07]
	Updated devel/p5-Test-Warnings to 0.028 [wen 2020-01-07]
	Updated net/md-whois to 5.5.4 [otis 2020-01-07]
	Added math/xyconvert version 1.5 [nros 2020-01-07]
	Updated devel/p5-Perl-Tidy to 20191203 [wen 2020-01-07]
	Updated mail/thunderbird to 68.3.1nb1 [wiz 2020-01-07]
	Added filesystems/fuse-gstfs-ng version 1.1 [nia 2020-01-07]
	Removed filesystems/fuse-gstfs successor filesystems/fuse-gstfs-ng [nia 2020-01-07]
	Added lang/ghc84 version 8.4.4 [pho 2020-01-07]
	Updated www/awstats to 7.7 [adam 2020-01-07]
	Updated graphics/giflib to 5.2.1 [sevan 2020-01-07]
	Updated graphics/giflib-util to 5.2.1 [sevan 2020-01-07]
	Updated math/py-statsmodels to 0.10.2 [minskim 2020-01-08]
	Updated finance/py-stripe to 2.41.1 [adam 2020-01-08]
	Updated www/py-django-cors-headers to 3.2.1 [adam 2020-01-08]
	Updated security/py-asn1crypto to 1.3.0 [adam 2020-01-08]
	Updated security/py-google-auth to 1.10.0 [adam 2020-01-08]
	Updated games/afternoonstalker to 1.1.6 [nia 2020-01-08]
	Updated games/quadrupleback to 0.1.1 [nia 2020-01-08]
	Updated games/cosmosmash to 1.4.8 [nia 2020-01-08]
	Updated games/batrachians to 0.1.7 [nia 2020-01-08]
	Updated graphics/feh to 3.3 [nia 2020-01-08]
	Updated www/curl to 7.68.0 [leot 2020-01-08]
	Updated net/GeoIP to 1.6.12 [nia 2020-01-08]
	Updated graphics/GraphicsMagick to 1.3.34 [nia 2020-01-08]
	Updated graphics/p5-GraphicsMagick to 1.3.34 [nia 2020-01-08]
	Updated x11/kitty to 0.15.1 [nia 2020-01-08]
	Updated devel/hdf5 to 1.10.6 [nia 2020-01-08]
	Updated devel/hdf5-c++ to 1.10.6 [nia 2020-01-08]
	Updated net/lftp to 4.9.0 [nia 2020-01-08]
	Updated graphics/libwebp to 1.1.0 [nia 2020-01-08]
	Removed wm/metacity successor wm/marco [nia 2020-01-08]
	Updated games/quakespasm to 0.93.2 [nia 2020-01-08]
	Updated devel/waf to 2.0.19 [wiz 2020-01-08]
	Updated sysutils/screenfetch to 3.9.1 [nia 2020-01-08]
	Updated games/simutrans to 121.0 [nia 2020-01-08]
	Updated games/teeworlds to 0.7.4 [nia 2020-01-08]
	Updated multimedia/ffmpeg3 to 3.4.7 [wiz 2020-01-08]
	Updated multimedia/ffplay3 to 3.4.7 [wiz 2020-01-08]
	Updated www/p5-Dancer2 to 0.300000 [wen 2020-01-08]
	Updated textproc/p5-Text-Xslate to 3.5.7 [wen 2020-01-08]
	Removed chat/climm [nia 2020-01-08]
	Removed chat/vicq [nia 2020-01-08]
	Removed chat/icqlib [nia 2020-01-08]
	Removed chat/p5-Net-ICQ2000 [nia 2020-01-08]
	Updated lang/py-uncompyle6 to 3.6.2 [adam 2020-01-08]
	Updated devel/py-pathspec to 0.7.0 [adam 2020-01-08]
	Added fonts/UnifrakturMaguntia-ttf version 0.20170319 [wiz 2020-01-08]
	Updated games/7kaa to 2.15.3 [nia 2020-01-08]
	Added net/py-asyncio-nats-client version 0.10.0 [minskim 2020-01-08]
	Updated finance/gnucash to 3.8b [wiz 2020-01-08]
	Updated devel/py-setuptools to 44.0.0 [wiz 2020-01-08]
	Updated www/py-mechanize to 0.4.5 [wiz 2020-01-08]
	Updated www/py-h2 to 3.1.1 [adam 2020-01-08]
	Updated www/py-django-treebeard to 4.3.1 [adam 2020-01-08]
	Added www/py-rfc3986 version 1.3.2 [adam 2020-01-08]
	Added misc/py-immutables version 0.11 [adam 2020-01-08]
	Added devel/py-contextvars version 2.4 [adam 2020-01-08]
	Added misc/py-sniffio version 1.1.0 [adam 2020-01-08]
	Added www/py-hstspreload version 2020.1.7 [adam 2020-01-08]
	Added www/py-httpx version 0.10.1 [adam 2020-01-08]
	Added www/py-uvicorn version 0.11.1 [adam 2020-01-08]
	Updated www/py-sanic to 19.12.2 [adam 2020-01-08]
	Updated www/py-websocket-client to 0.57.0 [adam 2020-01-08]
	Updated www/py-beautifulsoup4 to 4.8.2 [adam 2020-01-08]
	Updated devel/py-anytree to 2.7.3 [adam 2020-01-08]
	Updated textproc/py-elementpath to 1.4.0 [adam 2020-01-08]
	Updated www/py-nevow to 0.14.5 [adam 2020-01-08]
	Updated devel/py-macholib to 1.13 [adam 2020-01-08]
	Updated www/firefox68 to 68.4.0 [nia 2020-01-08]
	Updated lang/nodejs12 to 12.14.1 [adam 2020-01-08]
	Updated lang/nodejs to 13.6.0 [adam 2020-01-08]
	Updated databases/prometheus to 2.15.2 [adam 2020-01-08]
	Updated www/nsm to 2.0.1 [ng0 2020-01-09]
	Updated net/hub to 2.13.0nb1 [leot 2020-01-09]
	Updated devel/scons to 3.1.2 [adam 2020-01-09]
	Updated time/py-arrow to 0.15.5 [adam 2020-01-09]
	Added devel/halfempty version 0.30 [wiz 2020-01-09]
	Updated math/bcal to 2.2 [sjmulder 2020-01-09]
	Updated devel/py-angr to 8.20.1.7 [wiz 2020-01-09]
	Updated devel/py-archinfo to 8.20.1.7 [wiz 2020-01-09]
	Updated devel/py-cle to 8.20.1.7 [wiz 2020-01-09]
	Updated devel/py-pyvex to 8.20.1.7 [wiz 2020-01-09]
	Updated math/py-claripy to 8.20.1.7 [wiz 2020-01-09]
	Updated devel/py-cachetools to 4.0.0 [wiz 2020-01-09]
	Updated devel/cbindgen to 0.12.1 [ryoon 2020-01-09]
	Updated www/firefox to 72.0.1 [ryoon 2020-01-09]
	Updated www/firefox-l10n to 72.0.1 [ryoon 2020-01-09]
	Updated lang/mono6 to 6.6.0.161 [ryoon 2020-01-09]
	Updated graphics/giflib to 5.2.1nb1 [ryoon 2020-01-09]
	Updated net/6tunnel to 0.13 [nia 2020-01-09]
	Updated www/firefox68 to 68.4.1 [nia 2020-01-09]
	Updated devel/nss to 3.49 [ryoon 2020-01-10]
	Removed emulators/zsnes [nia 2020-01-10]
	Removed graphics/libglvnd [nia 2020-01-10]
	Updated devel/smake to 1.3nb8 [micha 2020-01-10]
	Updated pkgtools/pkg_alternatives to 1.7 [leot 2020-01-10]
	Updated textproc/p5-Swim to 0.1.48 [schmonz 2020-01-10]
	Updated archivers/star to 1.6.1nb4 [micha 2020-01-10]
	Updated lang/go113 to 1.13.6 [bsiegert 2020-01-10]
	Updated shells/bosh to 20192105 [micha 2020-01-10]
	Updated shells/pbosh to 20192105 [micha 2020-01-10]
	Updated multimedia/gst-plugins1-bad to 1.16.2 [wiz 2020-01-10]
	Updated multimedia/gst-plugins1-base to 1.16.2 [wiz 2020-01-10]
	Updated multimedia/gst-plugins1-editing-services to 1.16.2 [wiz 2020-01-10]
	Updated multimedia/gst-plugins1-good to 1.16.2 [wiz 2020-01-10]
	Updated multimedia/gst-plugins1-libav to 1.16.2 [wiz 2020-01-10]
	Updated multimedia/gst-plugins1-ugly to 1.16.2 [wiz 2020-01-10]
	Updated multimedia/gstreamer1 to 1.16.2 [wiz 2020-01-10]
	Updated multimedia/py-gstreamer1 to 1.16.2 [wiz 2020-01-10]
	Updated lang/go112 to 1.12.15 [bsiegert 2020-01-10]
	Updated print/poppler to 0.84.0 [wiz 2020-01-10]
	Updated print/poppler-cpp to 0.84.0 [wiz 2020-01-10]
	Updated print/poppler-glib to 0.84.0 [wiz 2020-01-10]
	Updated print/poppler-includes to 0.84.0 [wiz 2020-01-10]
	Updated print/poppler-qt5 to 0.84.0 [wiz 2020-01-10]
	Updated print/poppler-utils to 0.84.0 [wiz 2020-01-10]
	Added databases/libtcd version 2.2.7r2 [plunky 2020-01-10]
	Updated time/xtide to 2.15.2 [plunky 2020-01-10]
	Added games/vvvvvv version 0.0.0.20200110 [nia 2020-01-10]
	Updated x11/slim to 1.3.6nb3 [maya 2020-01-10]
	Updated x11/deforaos-libdesktop to 0.4.0 [khorben 2020-01-10]
	Updated sysutils/deforaos-browser to 0.5.3 [khorben 2020-01-10]
	Updated x11/deforaos-panel to 0.4.0 [khorben 2020-01-10]
	Updated x11/deforaos-locker to 0.4.1 [khorben 2020-01-10]
	Updated www/deforaos-surfer to 0.3.0 [khorben 2020-01-10]
	Updated comms/deforaos-phone to 0.6.0 [khorben 2020-01-11]
	Updated www/firefox68-l10n to 68.4.1 [ryoon 2020-01-11]
	Updated biology/chemtool to 1.6.14nb12 [ryoon 2020-01-11]
	Updated devel/dejagnu to 1.6.2 [mef 2020-01-11]
	Added devel/R-RUnit version 0.4.32 [mef 2020-01-11]
	Updated editors/deforaos-editor to 0.4.1 [khorben 2020-01-11]
	Updated devel/hs-hint to 0.9.0.2 [pho 2020-01-11]
	Updated devel/hs-resourcet to 1.2.2 [pho 2020-01-11]
	Updated multimedia/deforaos-player to 0.2.0 [khorben 2020-01-11]
	Updated comms/asterisk16 to 16.7.0 [ryoon 2020-01-11]
	Updated devel/hs-mono-traversable to 1.0.15.1 [pho 2020-01-11]
	Updated textproc/hs-pandoc-types to 1.20 [pho 2020-01-11]
	Updated textproc/hs-texmath to 0.12 [pho 2020-01-11]
	Removed textproc/hs-parsec [pho 2020-01-11]
	Added textproc/hs-libyaml version 0.1.1.1 [pho 2020-01-11]
	Updated textproc/hs-yaml to 0.11.2.0 [pho 2020-01-11]
	Removed devel/hs-text [pho 2020-01-11]
	Updated devel/hs-colour to 2.3.5 [pho 2020-01-11]
	Updated time/hs-timezone-olson to 0.1.9 [pho 2020-01-11]
	Removed devel/hs-stm [pho 2020-01-11]
	Added graphics/numix-gtk-theme version 2.6.7 [nia 2020-01-11]
	Updated wm/xmonad to 0.15 [pho 2020-01-11]
	Updated devel/R-Rcpp to 1.0.3 [mef 2020-01-11]
	Removed devel/hs-mtl [pho 2020-01-11]
	Updated graphics/freeimage to 3.18.0 [nia 2020-01-11]
	Added graphics/imv version 4.1.0 [nia 2020-01-11]
	Updated pkgtools/pkglint to 19.4.3 [rillig 2020-01-11]
	Added sysutils/dmenu-wld version 4.6.0.20191014 [nia 2020-01-11]
	Updated textproc/py-yaml to 5.3 [adam 2020-01-11]
	Updated net/py-lexicon to 3.3.16 [adam 2020-01-11]
	Updated devel/py-wcwidth to 0.1.8 [adam 2020-01-11]
	Updated devel/py-pygit2 to 1.0.2 [adam 2020-01-11]
	Updated wm/velox to 0.0.3.20200111 [nia 2020-01-11]
	Updated wm/swc to 0.0.0.20200111 [nia 2020-01-11]
	Updated x11/deforaos-keyboard to 0.4.0 [khorben 2020-01-12]
	Updated mail/deforaos-mailer to 0.2.0 [khorben 2020-01-12]
	Updated devel/boost-build to 1.72.0 [adam 2020-01-12]
	Updated devel/boost-docs to 1.72.0 [adam 2020-01-12]
	Updated devel/boost-headers to 1.72.0 [adam 2020-01-12]
	Updated devel/boost-jam to 1.72.0 [adam 2020-01-12]
	Updated devel/boost-libs to 1.72.0 [adam 2020-01-12]
	Updated devel/boost-mpi to 1.72.0 [adam 2020-01-12]
	Updated devel/py-boost to 1.72.0 [adam 2020-01-12]
	Updated meta-pkgs/boost to 1.72.0 [adam 2020-01-12]
	Updated fonts/public-sans to 1.008 [mef 2020-01-12]
	Updated net/sayaka to 3.4.1 [tsutsui 2020-01-12]
	Updated devel/R-callr to 3.4.0 [mef 2020-01-12]
	Updated net/deforaos-vncviewer to 0.1.0 [khorben 2020-01-12]
	Updated audio/grip to 4.0.1 [triaxx 2020-01-12]
	Updated mail/mutt to 1.13.3 [tron 2020-01-12]
	Updated devel/deforaos-coder to 0.3.0 [khorben 2020-01-13]
	Updated audio/deforaos-mixer to 0.4.0 [khorben 2020-01-13]
	Added lang/adoptopenjdk11-bin version 11.0.5.10 [ryoon 2020-01-13]
	Added devel/R-cliapp version 0.1.0 [mef 2020-01-13]
	Added devel/R-prettycode version 1.1.0 [mef 2020-01-13]
	Added textproc/R-selectr version 0.4.2 [mef 2020-01-13]
	Updated emulators/qemu to 4.2.0nb3 [gutteridge 2020-01-13]
	Updated www/apache-tomcat7 to 7.0.99 [ryoon 2020-01-13]
	Updated www/apache-tomcat85 to 8.5.50 [ryoon 2020-01-13]
	Updated www/apache-tomcat9 to 9.0.30 [ryoon 2020-01-13]
	Added devel/R-mockery version 0.4.2 [mef 2020-01-13]
	Added textproc/R-rmarkdown version 2.0 [mef 2020-01-13]
	Added textproc/R-crosstalk version 1.0.0 [mef 2020-01-13]
	Added textproc/R-DT version 0.11 [mef 2020-01-13]
	Added print/R-tinytex version 0.18 [mef 2020-01-13]
	Updated devel/R-covr to 3.4.0 [mef 2020-01-13]
	Updated graphics/py-Pillow to 6.2.2 [adam 2020-01-13]
	Updated databases/py-multidict to 4.7.4 [adam 2020-01-13]
	Updated comms/gammu to 1.41.0 [leot 2020-01-13]
	Updated games/xboard to 4.9.1 [hauke 2020-01-13]
	Updated pkgtools/R2pkg to 0.6.4 [rillig 2020-01-13]
	Added security/pius version 3.0.0 [schmonz 2020-01-13]
	Added misc/hexd version 1.0.0 [nia 2020-01-13]
	Added misc/pixd version 1.0.0 [nia 2020-01-13]
	Updated games/eboard to 1.1.1 [hauke 2020-01-14]
	Updated cad/ng-spice to 31 [hauke 2020-01-14]
	Updated devel/py-absl-py to 0.9.0 [bsiegert 2020-01-14]
	Updated devel/nss to 3.49.1 [ryoon 2020-01-14]
	Added games/jumpnbump version 1.61 [nia 2020-01-14]
	Updated mail/thunderbird to 68.4.1 [ryoon 2020-01-14]
	Updated mail/thunderbird-l10n to 68.4.1 [ryoon 2020-01-14]
	Updated mail/roundcube to 1.4.2 [taca 2020-01-14]
	Updated mail/roundcube-plugin-enigma to 1.4.2 [taca 2020-01-14]
	Updated mail/roundcube-plugin-password to 1.4.2 [taca 2020-01-14]
	Updated mail/roundcube-plugin-zipdownload to 1.4.2 [taca 2020-01-14]
	Updated www/py-test-django to 3.8.0 [adam 2020-01-14]
	Updated www/py-paste to 3.2.6 [adam 2020-01-14]
	Updated devel/py-freezegun to 0.3.13 [adam 2020-01-14]
	Updated www/py-httpx to 0.11.0 [adam 2020-01-14]
	Updated devel/py-llvmlite to 0.31.0 [adam 2020-01-14]
	Updated math/py-numba to 0.47.0 [adam 2020-01-14]
	Updated net/glib-networking to 2.62.3 [wiz 2020-01-14]
	Updated lang/ocaml to 4.09.0 [jaapb 2020-01-14]
	Updated databases/pgocaml to 4.2 [jaapb 2020-01-14]
	Updated net/youtube-dl to 20200115 [leot 2020-01-14]
	Updated devel/ocaml-ppxlib to 0.12.0 [jaapb 2020-01-14]
	Updated devel/js_of_ocaml to 3.5.2 [jaapb 2020-01-14]
	Updated textproc/py-poyo to 0.5.0 [adam 2020-01-14]
	Updated devel/py-cookiecutter to 1.7.0 [adam 2020-01-14]
	Updated devel/menhir to 20190924 [jaapb 2020-01-14]
	Updated devel/ocaml-compiler-libs to 0.12.1 [jaapb 2020-01-14]
	Updated security/keepassxc to 2.5.2 [wiz 2020-01-14]
	Updated lang/py-asttokens to 2.0.3 [wiz 2020-01-14]
	Updated devel/py-more-itertools to 8.1.0 [wiz 2020-01-14]
	Updated shells/zsh-autosuggestions to 0.6.4 [wiz 2020-01-14]
	Updated devel/bmkdep to 20140112 [cheusov 2020-01-14]
	Updated net/gssdp12 to 1.2.2 [wiz 2020-01-15]
	Updated net/gupnp12 to 1.2.2 [wiz 2020-01-15]
	Added converters/hs-aeson-pretty version 0.8.8 [pho 2020-01-15]
	Added textproc/cmark-gfm version 0.29.0.gfm.0 [pho 2020-01-15]
	Added textproc/hs-cmark-gfm version 0.2.1 [pho 2020-01-15]
	Added textproc/hs-doclayout version 0.3 [pho 2020-01-15]
	Added textproc/hs-HsYAML version 0.2.1.0 [pho 2020-01-15]
	Added converters/hs-base16-bytestring version 0.1.1.6 [pho 2020-01-15]
	Added devel/hs-errors version 2.3.0 [pho 2020-01-15]
	Updated security/py-google-auth to 1.10.1 [adam 2020-01-15]
	Updated devel/py-anytree to 2.8.0 [adam 2020-01-15]
	Updated www/firefox to 72.0.1nb1 [ryoon 2020-01-15]
	Added converters/hs-text-conversions version 0.3.0 [pho 2020-01-15]
	Added textproc/hs-doctemplates version 0.8.1 [pho 2020-01-15]
	Added converters/hs-emojis version 0.1 [pho 2020-01-15]
	Added textproc/hs-Glob version 0.10.0 [pho 2020-01-15]
	Added textproc/hs-haddock-library version 1.8.0 [pho 2020-01-15]
	Added lang/hs-hslua version 1.0.3.2 [pho 2020-01-15]
	Updated security/pius to 3.0.0nb1 [wiz 2020-01-15]
	Updated multimedia/adobe-flash-player to 32.0.0.314 [tsutsui 2020-01-15]
	Added devel/hs-hslua-module-system version 0.2.1 [pho 2020-01-15]
	Updated x11/modular-xorg-server to 1.20.7 [wiz 2020-01-15]
	Updated textproc/libxlsxwriter to 0.9.3 [sjmulder 2020-01-15]
	Updated math/sc-im to 0.7.0nb9 [sjmulder 2020-01-15]
	Added misc/lr version 1.5 [nia 2020-01-15]
	Updated graphics/libsixel to 1.8.6 [tsutsui 2020-01-15]
	Updated net/rdesktop to 1.9.0 [wiz 2020-01-15]
	Added textproc/hs-hslua-module-text version 0.2.1 [pho 2020-01-15]
	Updated security/acmesh to 2.8.5 [ryoon 2020-01-15]
	Added www/hs-cookie version 0.4.5 [pho 2020-01-15]
	Updated devel/py-importlib-metadata to 1.4.0 [adam 2020-01-15]
	Updated devel/py-faker to 4.0.0 [adam 2020-01-15]
	Added www/hs-http-types version 0.12.3 [pho 2020-01-15]
	Updated math/py-sympy to 1.4 [minskim 2020-01-15]
	Added www/firefox-esr version 68 [nia 2020-01-15]
	Added devel/hs-basement version 0.0.11 [pho 2020-01-16]
	Added devel/hs-memory version 0.15.0 [pho 2020-01-16]
	Updated audio/picard to 2.2.3 [nia 2020-01-16]
	Updated archivers/engrampa to 1.22.3 [gutteridge 2020-01-16]
	Updated devel/kdiff3 to 1.8.1nb2 [gutteridge 2020-01-16]
	Updated archivers/py-zipp to 1.0.0 [adam 2020-01-16]
	Updated net/py-pypiserver to 1.3.2 [adam 2020-01-16]
	Updated lang/py-six to 1.14.0 [adam 2020-01-16]
	Updated devel/py-typed-ast to 1.4.1 [adam 2020-01-16]
	Updated devel/ocaml-ppx_compare to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_enumerate to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_sexp_conv to 0.13.0 [jaapb 2020-01-16]
	Updated devel/py-iso3166 to 1.0.1 [adam 2020-01-16]
	Updated devel/py-limits to 1.4.1 [adam 2020-01-16]
	Updated devel/ocaml-ppx_hash to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_let to 0.13.0 [jaapb 2020-01-16]
	Updated devel/snappy to 1.1.8 [adam 2020-01-16]
	Updated lang/npm to 6.13.6 [adam 2020-01-16]
	Added net/hs-mime-types version 0.1.0.9 [pho 2020-01-16]
	Updated devel/ocaml-base to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-stdio to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_fields_conv to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_here to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_sexp_message to 0.13.0 [jaapb 2020-01-16]
	Added devel/hs-streaming-commons version 0.2.1.2 [pho 2020-01-16]
	Added devel/ocaml-ppx_cold version 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_assert to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_inline_test to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_bench to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-splittable_random to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-fieldslib to 0.13.0 [jaapb 2020-01-16]
	Updated security/openssl to 1.1.1d [jperkin 2020-01-16]
	Updated devel/ocaml-base_quickcheck to 0.13.0 [jaapb 2020-01-16]
	Added www/hs-http-client version 0.6.4 [pho 2020-01-16]
	Updated devel/ocaml-ppx_variants_conv to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_bin_prot to 0.13.0 [jaapb 2020-01-16]
	Removed chat/gossip [nia 2020-01-16]
	Added devel/hs-ipynb version 0.1 [pho 2020-01-16]
	Updated graphics/ImageMagick to 7.0.9.14 [wiz 2020-01-16]
	Added devel/ruby-deep_merge version 1.2.1 [taca 2020-01-16]
	Updated devel/ocaml-ppx_optcomp to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_optional to 0.13.0 [jaapb 2020-01-16]
	Removed devel/ptlib [nia 2020-01-16]
	Removed devel/opal [nia 2020-01-16]
	Removed net/ekiga [nia 2020-01-16]
	Updated devel/ocaml-ppx_typerep_conv to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_jane to 0.13.0 [jaapb 2020-01-16]
	Removed misc/gnome-utils [nia 2020-01-16]
	Updated devel/ocaml-ppx_expect to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-typerep to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ocaml-ppx_module_timer to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ruby-curses to 1.3.2 [taca 2020-01-16]
	Updated devel/py-mercurial to 5.2.2 [wiz 2020-01-16]
	Added devel/ruby-ffi-compiler version 1.0.1 [taca 2020-01-16]
	Removed sysutils/gnome-system-tools [nia 2020-01-16]
	Updated audio/ruby-taglib to 1.0.0 [taca 2020-01-16]
	Removed sysutils/gnome-volume-manager [nia 2020-01-16]
	Updated databases/ruby-moneta to 1.2.1 [taca 2020-01-16]
	Updated databases/ruby-mysql2 to 0.5.3 [taca 2020-01-16]
	Updated databases/ruby-pg to 1.2.2 [taca 2020-01-16]
	Updated databases/ruby-postgres_ext to 3.0.1 [taca 2020-01-16]
	Removed sysutils/gnome-mount [nia 2020-01-16]
	Updated databases/ruby-sequel to 5.28.0 [taca 2020-01-16]
	Updated databases/ruby-sqlite3 to 1.4.2 [taca 2020-01-16]
	Updated devel/hoe to 3.21.0 [taca 2020-01-16]
	Updated devel/ruby-gettext to 3.3.2 [taca 2020-01-16]
	Updated devel/ocaml-core_kernel to 0.13.0 [jaapb 2020-01-16]
	Updated devel/ruby-hocon to 1.3.0 [taca 2020-01-16]
	Updated devel/ruby-kgio to 2.11.3 [taca 2020-01-16]
	Updated net/gnome-nettool to 3.8.1 [nia 2020-01-16]
	Updated devel/ruby-minitest to 5.14.0 [taca 2020-01-16]
	Updated devel/ruby-mocha to 1.11.2 [taca 2020-01-16]
	Updated devel/ruby-necromancer to 0.5.1 [taca 2020-01-16]
	Updated devel/ruby-rspec-support to 3.9.2 [taca 2020-01-16]
	Updated devel/ruby-rspec-core to 3.9.1 [taca 2020-01-16]
	Removed sysutils/gnome-pkgview [nia 2020-01-16]
	Updated devel/ruby-rspec-mocks to 3.9.1 [taca 2020-01-16]
	Removed sysutils/gnome-device-manager [nia 2020-01-16]
	Added graphics/hs-JuicyPixels version 3.3.4 [pho 2020-01-16]
	Added devel/ruby-ruby2_keywords version 0.0.1 [taca 2020-01-16]
	Updated devel/ruby-ruby2_keywords to 0.0.2 [taca 2020-01-16]
	Updated devel/ruby-stomp to 1.4.9 [taca 2020-01-16]
	Updated devel/ruby-test-unit to 3.3.5 [taca 2020-01-16]
	Updated fonts/ruby-ttfunk to 1.6.1 [taca 2020-01-16]
	Added devel/hs-cereal version 0.5.8.1 [pho 2020-01-16]
	Updated pkgtools/rc.d-boot to 20200116 [schmonz 2020-01-16]
	Updated security/openssl to 1.1.1dnb1 [wiz 2020-01-16]
	Added net/hs-socks version 0.6.1 [pho 2020-01-16]
	Added time/hs-hourglass version 0.2.12 [pho 2020-01-16]
	Added devel/hs-asn1-types version 0.3.3 [pho 2020-01-16]
	Added devel/hs-asn1-encoding version 0.9.6 [pho 2020-01-17]
	Added security/hs-cryptonite version 0.26 [pho 2020-01-17]
	Added devel/hs-asn1-parse version 0.9.5 [pho 2020-01-17]
	Added security/hs-pem version 0.2.4 [pho 2020-01-17]
	Added security/hs-x509 version 1.7.5 [pho 2020-01-17]
	Added audio/py-music21 version 5.7.2 [gutteridge 2020-01-17]
	Updated print/deforaos-pdfviewer to 0.1.0 [khorben 2020-01-17]
	Updated devel/ocaml-jane-street-headers to 0.13.0 [jaapb 2020-01-17]
	Updated devel/ocaml-dune to 2.1.3 [jaapb 2020-01-17]
	Updated devel/ocaml-jane-street-headers to 0.13.0nb1 [jaapb 2020-01-17]
	Updated devel/ocaml-ppx_derivers to 1.2.1 [jaapb 2020-01-17]
	Updated devel/ocaml-dune to 2.1.3nb1 [jaapb 2020-01-17]
	Updated devel/pcre-ocaml to 7.4.3 [jaapb 2020-01-17]
	Updated net/ocamlnet to 4.1.6nb13 [jaapb 2020-01-17]
	Updated audio/fasttracker2 to 1.06 [fox 2020-01-17]
	Added security/hs-x509-store version 1.6.7 [pho 2020-01-17]
	Added security/hs-x509-validation version 1.6.11 [pho 2020-01-17]
	Added security/hs-tls version 1.5.3 [pho 2020-01-17]
	Removed multimedia/totem-nautilus [nia 2020-01-17]
	Removed sysutils/nautilus-sendto [nia 2020-01-17]
	Removed sysutils/nautilus successor sysutils/caja [nia 2020-01-17]
	Added security/hs-x509-system version 1.6.6 [pho 2020-01-17]
	Updated editors/ghex to 3.18.4 [nia 2020-01-17]
	Added net/hs-connection version 0.3.1 [pho 2020-01-17]
	Removed games/gtetrinet [nia 2020-01-17]
	Added www/hs-http-client-tls version 0.3.5.3 [pho 2020-01-17]
	Added security/hs-SHA version 1.6.4.4 [pho 2020-01-17]
	Added textproc/hs-hxt-charproperties version 9.4.0.0 [pho 2020-01-17]
	Removed net/twitux [nia 2020-01-17]
	Added textproc/hs-hxt-regex-xmlschema version 9.2.0.3 [pho 2020-01-17]
	Added textproc/hs-hxt-unicode version 9.0.2.4 [pho 2020-01-17]
	Added fonts/recursive-ttf version 1.030 [ng0 2020-01-17]
	Added textproc/hs-hxt version 9.3.1.18 [pho 2020-01-17]
	Updated geography/gpsd to 3.20 [gdt 2020-01-17]
	Added textproc/hs-skylighting-core version 0.8.3 [pho 2020-01-17]
	Added devel/hs-haskell-lexer version 1.0.2 [pho 2020-01-17]
	Added devel/hs-pretty-show version 1.9.5 [pho 2020-01-17]
	Added textproc/hs-skylighting version 0.8.3 [pho 2020-01-17]
	Updated textproc/py-html2text to 2020.1.16 [schmonz 2020-01-17]
	Added devel/hs-bitarray version 0.0.1.1 [pho 2020-01-17]
	Added textproc/hs-unicode-transforms version 0.3.6 [pho 2020-01-17]
	Added archivers/hs-zip-archive version 0.4.1 [pho 2020-01-17]
	Updated devel/protobuf-c to 1.3.2 [adam 2020-01-17]
	Added converters/pandoc version 2.9.1.1 [pho 2020-01-18]
	Removed editors/tomboy [nia 2020-01-18]
	Updated archivers/ruby-ffi-libarchive to 1.0.0 [taca 2020-01-18]
	Updated archivers/ruby-mixlib-archive to 1.0.5 [taca 2020-01-18]
	Updated converters/ruby-unf_ext to 0.0.7.6 [taca 2020-01-18]
	Updated databases/ruby-arel-helpers to 2.11.0 [taca 2020-01-18]
	Updated databases/ruby-awesome_nested_set to 3.2.0 [taca 2020-01-18]
	Updated devel/ruby-cucumber-core to 5.0.2 [taca 2020-01-18]
	Updated devel/ruby-cucumber-expressions to 8.3.0 [taca 2020-01-18]
	Updated devel/ruby-cucumber-messages to 9.0.3 [taca 2020-01-18]
	Added security/hs-cryptohash-sha256 version 0.11.101.0 [pho 2020-01-18]
	Updated devel/ruby-cucumber-tag_expressions to 2.0.2 [taca 2020-01-18]
	Updated devel/ruby-cucumber-wire to 1.1.0 [taca 2020-01-18]
	Updated www/gitea to 1.10.3 [nia 2020-01-18]
	Updated graphics/sxiv to 26 [leot 2020-01-18]
	Added devel/ruby-middleware version 0.1.0 [taca 2020-01-18]
	Added devel/ruby-protobuf-cucumber version 3.10.4 [taca 2020-01-18]
	Updated textproc/ruby-json-pure to 2.2.0 [taca 2020-01-18]
	Updated textproc/ruby-json to 2.3.0 [taca 2020-01-18]
	Updated devel/ruby-cucumber-messages to 9.0.3nb1 [taca 2020-01-18]
	Updated lang/ruby-gherkin to 9.0.0 [taca 2020-01-18]
	Updated devel/ruby-c21e to 2.0.0 [taca 2020-01-18]
	Updated devel/mk-configure to 0.33.0 [cheusov 2020-01-18]
	Updated graphics/MesaLib to 19.2.7nb2 [triaxx 2020-01-18]
	Updated emulators/atari800 to 4.2.0 [nia 2020-01-18]
	Updated wm/9wm to 1.4.1 [nia 2020-01-18]
	Updated wm/bspwm to 0.9.9 [nia 2020-01-18]
	Updated devel/cdk to 5.0.20191231 [nia 2020-01-18]
	Updated editors/neatvi to 07 [nia 2020-01-18]
	Updated pkgtools/pkglint to 19.4.4 [rillig 2020-01-18]
	Updated audio/liblo to 0.30 [nia 2020-01-18]
	Added textproc/hs-edit-distance version 0.2.2.1 [pho 2020-01-18]
	Updated games/tileworld to 1.3.2 [nia 2020-01-18]
	Updated audio/musicpd to 0.21.19 [nia 2020-01-18]
	Updated chat/emech to 3.0.3 [nia 2020-01-18]
	Added security/hs-ed25519 version 0.0.5.0 [pho 2020-01-18]
	Updated textproc/multimarkdown to 6.5.1 [nia 2020-01-19]
	Updated security/snow to 20130616 [nia 2020-01-19]
	Updated games/freeciv-share to 2.6.1 [nia 2020-01-19]
	Updated games/freeciv-server to 2.6.1 [nia 2020-01-19]
	Updated games/freeciv-client to 2.6.1 [nia 2020-01-19]
	Removed games/gturing [nia 2020-01-19]
	Removed editors/mlview [nia 2020-01-19]
	Added archivers/hs-tar version 0.5.1.1 [pho 2020-01-19]
	Removed audio/albumplayer [nia 2020-01-19]
	Added devel/hs-lukko version 0.1.1.1 [pho 2020-01-19]
	Added security/hs-hackage-security version 0.6.0.0 [pho 2020-01-19]
	Added net/hs-resolv version 0.1.1.3 [pho 2020-01-19]
	Updated pkgtools/pkgclean to 20200119 [gutteridge 2020-01-19]
	Added misc/cabal-install version 3.0.0.0 [pho 2020-01-19]
	Added www/ruby-http-accept version 2.1.1 [taca 2020-01-19]
	Added www/ruby-http-parser version 1.2.1 [taca 2020-01-19]
	Added textproc/ruby-gyoku version 1.3.1 [taca 2020-01-19]
	Added textproc/ruby-nori version 2.6.0 [taca 2020-01-19]
	Added textproc/ruby-strings version 0.1.8 [taca 2020-01-19]
	Added textproc/hs-annotated-wl-pprint version 0.7.0 [pho 2020-01-19]
	Added textproc/hs-ansi-wl-pprint version 0.6.9 [pho 2020-01-19]
	Added textproc/hs-css-text version 0.1.3.0 [pho 2020-01-19]
	Added www/hs-xss-sanitize version 0.3.6 [pho 2020-01-19]
	Updated audio/exaile to 4.0.2 [nia 2020-01-19]
	Added textproc/hs-cheapskate version 0.1.1.1 [pho 2020-01-19]
	Removed misc/gok [nia 2020-01-19]
	Added devel/hs-code-page version 0.2 [pho 2020-01-19]
	Removed www/drivel [nia 2020-01-19]
	Added devel/hs-fingertree version 0.1.4.2 [pho 2020-01-19]
	Added devel/hs-fsnotify version 0.3.0.1 [pho 2020-01-19]
	Updated wm/velox to 0.0.3.20200119 [nia 2020-01-19]
	Added math/hs-ieee754 version 0.8.0 [pho 2020-01-19]
	Added textproc/ruby-strings-ansi version 0.2.0 [taca 2020-01-19]
	Added textproc/ruby-unicode_utils version 1.4.0 [taca 2020-01-19]
	Added security/ruby-ed25519 version 1.2.4 [taca 2020-01-19]
	Added security/ruby-gssapi version 1.3.0 [taca 2020-01-19]
	Added devel/ruby-tty-color version 0.5.0 [taca 2020-01-19]
	Added devel/ruby-pastel version 0.7.3 [taca 2020-01-19]
	Added devel/ruby-tty-cursor version 0.7.0 [taca 2020-01-19]
	Added devel/hs-parser-combinators version 1.2.1 [pho 2020-01-19]
	Added devel/ruby-tty-box version 0.5.0 [taca 2020-01-19]
	Added devel/ruby-tty-screen version 0.7.0 [taca 2020-01-19]
	Added devel/ruby-tty-reader version 0.7.0 [taca 2020-01-19]
	Added devel/ruby-tty-prompt version 0.20.0 [taca 2020-01-19]
	Added textproc/hs-megaparsec version 8.0.0 [pho 2020-01-19]
	Added devel/ruby-wisper version 2.0.1 [taca 2020-01-19]
	Added devel/ruby-zeitwerk version 2.2.2 [taca 2020-01-19]
	Added net/ruby-train-core version 3.2.5 [taca 2020-01-19]
	Added net/ruby-winrm version 2.3.4 [taca 2020-01-19]
	Added net/ruby-winrm-fs version 1.3.4 [taca 2020-01-19]
	Added net/ruby-train-winrm version 0.2.6 [taca 2020-01-19]
	Added misc/ruby-license-acceptance version 1.0.13 [taca 2020-01-19]
	Added devel/hs-optparse-applicative version 0.15.1.0 [pho 2020-01-19]
	Updated devel/ruby-ffi to 1.12.1 [taca 2020-01-19]
	Updated www/logswan to 2.1.3 [fcambus 2020-01-19]
	Updated www/ruby-rouge to 3.15.0 [fcambus 2020-01-19]
	Removed audio/bmpx [nia 2020-01-19]
	Updated graphics/libansilove to 1.1.8 [fcambus 2020-01-19]
	Updated graphics/ansilove to 4.0.7 [fcambus 2020-01-19]
	Added textproc/hs-regex-tdfa version 1.3.1.0 [pho 2020-01-19]
	Added devel/hs-terminal-size version 0.3.2.1 [pho 2020-01-20]
	Added devel/hs-vector-binary-instances version 0.2.5.1 [pho 2020-01-20]
	Added devel/hs-libffi version 0.1 [pho 2020-01-20]
	Updated net/grilo to 0.3.11 [nia 2020-01-20]
	Updated net/grilo-plugins to 0.3.10 [nia 2020-01-20]
	Removed net/grilo-testui [nia 2020-01-20]
	Updated multimedia/totem to 3.34.1 [nia 2020-01-20]
	Updated multimedia/totem-pl-parser to 3.26.4 [nia 2020-01-20]
	Added multimedia/gnome-video-effects version 0.5.0 [nia 2020-01-20]
	Updated graphics/cheese to 3.34.0 [nia 2020-01-20]
	Updated net/etherape to 0.9.18 [nia 2020-01-20]
	Updated net/gallery-dl to 1.12.3 [leot 2020-01-20]
	Updated devel/py-setuptools_scm to 3.4.2 [adam 2020-01-20]
	Updated www/py-httpx to 0.11.1 [adam 2020-01-20]
	Updated multimedia/py-m3u8 to 0.5.4 [adam 2020-01-20]
	Updated devel/py-test5 to 5.3.3 [adam 2020-01-20]
	Updated emulators/haxm to 7.5.6 [kamil 2020-01-20]
	Updated graphics/jpeg to 9d [ryoon 2020-01-20]
	Updated devel/ruby-byebug to 11.1.0 [taca 2020-01-20]
	Updated devel/ruby-ffi-yajl to 2.3.3 [taca 2020-01-20]
	Updated devel/ruby-google-protobuf to 3.8.0 [taca 2020-01-20]
	Updated graphics/libansilove to 1.1.9 [fcambus 2020-01-20]
	Added chat/libgadu version 1.12.2 [adam 2020-01-20]
	Updated chat/ekg to 20200116 [adam 2020-01-20]
	Removed chat/gg2 [adam 2020-01-20]
	Updated www/php-nextcloud to 18.0.0 [ryoon 2020-01-20]
	Updated graphics/py-imagesize to 1.2.0 [adam 2020-01-20]
	Updated devel/py-autopep8 to 1.5 [adam 2020-01-20]
	Updated devel/git to 2.25.0 [adam 2020-01-20]
	Updated devel/gmp to 6.2.0 [adam 2020-01-20]
	Removed audio/bmp-esound [nia 2020-01-20]
	Removed audio/gst-plugins0.10-esound [nia 2020-01-20]
	Removed audio/libao-esound [nia 2020-01-20]
	Removed audio/mpg123-esound [nia 2020-01-20]
	Removed audio/xine-esound [nia 2020-01-20]
	Removed audio/xmms-esound [nia 2020-01-20]
	Removed lang/kaffe-esound [nia 2020-01-20]
	Removed emulators/cygwin_esound [nia 2020-01-20]
	Removed audio/esound [nia 2020-01-20]
	Added lang/idris version 1.3.2 [pho 2020-01-20]
	Updated meta-pkgs/gstreamer0.10-plugins to 1.0nb3 [jperkin 2020-01-21]
	Updated databases/phpmyadmin to 4.9.4 [tm 2020-01-21]
	Updated textproc/p5-Text-Markdown-Discount to 0.12 [schmonz 2020-01-21]
	Added devel/ecb version 2.50 [pho 2020-01-21]
	Updated security/libsecret to 0.20.0 [nia 2020-01-21]
	Updated net/samba4 to 4.11.5 [taca 2020-01-21]
	Updated lang/php74 to 7.4.1nb2 [taca 2020-01-21]
	Updated net/hub to 2.14.0 [leot 2020-01-21]
	Added devel/libdazzle version 3.35.3 [nia 2020-01-21]
	Added devel/libhandy version 0.0.13 [nia 2020-01-21]
	Removed www/epiphany-extensions [nia 2020-01-21]
	Updated www/epiphany to 3.34.3.1 [nia 2020-01-21]
	Updated graphics/shotwell to 0.30.8 [nia 2020-01-21]
	Updated misc/ansiweather to 1.16.0 [fcambus 2020-01-21]
	Updated x11/qt5 to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-mysql to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-odbc to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-psql to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtbase to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtcharts to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtconnectivity to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtdeclarative to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtdoc to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtgraphicaleffects to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtimageformats to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtlocation to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtmacextras to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtmultimedia to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtnetworkauth to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtquickcontrols to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtquickcontrols2 to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtscript to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtscxml to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtsensors to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtserialport to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtspeech to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtsvg to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qttools to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qttranslations to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtvirtualkeyboard to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtwayland to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtwebchannel to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtwebsockets to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtx11extras to 5.14.0 [adam 2020-01-21]
	Updated x11/qt5-qtxmlpatterns to 5.14.0 [adam 2020-01-21]
	Updated net/wireshark to 3.2.1 [adam 2020-01-21]
	Added sysutils/daemontools-encore version 1.11 [schmonz 2020-01-21]
	Added misc/mic-paren version 3.13 [pho 2020-01-22]
	Updated devel/cmake to 3.16.3 [adam 2020-01-22]
	Updated www/py-urllib3 to 1.25.8 [adam 2020-01-22]
	Updated www/cliqz to 1.32.0 [fox 2020-01-22]
	Updated www/firefox to 72.0.2 [ryoon 2020-01-22]
	Updated www/firefox-l10n to 72.0.2 [ryoon 2020-01-22]
	Updated www/firefox68 to 68.4.2 [ryoon 2020-01-22]
	Updated www/firefox68-l10n to 68.4.2 [ryoon 2020-01-22]
	Added devel/amtk version 5.0.1 [nia 2020-01-22]
	Updated devel/devhelp to 3.34.0 [nia 2020-01-22]
	Removed audio/gmpc-wikipedia [nia 2020-01-22]
	Updated misc/mousetweaks to 3.32.0 [nia 2020-01-22]
	Updated devel/memcached to 1.5.21 [adam 2020-01-22]
	Updated devel/py-test5 to 5.3.4 [adam 2020-01-22]
	Updated www/py-uvicorn to 0.11.2 [adam 2020-01-22]
	Updated devel/py-pyrsistent to 0.15.7 [adam 2020-01-22]
	Updated security/py-trustme to 0.6.0 [adam 2020-01-22]
	Updated devel/py-virtualenv to 16.7.9 [adam 2020-01-22]
	Updated security/py-google-auth to 1.10.2 [adam 2020-01-22]
	Updated www/py-httplib2 to 0.16.0 [adam 2020-01-22]
	Updated misc/orca to 3.34.1 [nia 2020-01-22]
	Updated www/webkit-gtk to 2.26.3 [leot 2020-01-22]
	Updated devel/py-babel to 2.8.0 [adam 2020-01-22]
	Updated finance/py-braintree to 3.58.0 [adam 2020-01-22]
	Updated www/py-django-extensions to 2.2.6 [adam 2020-01-22]
	Updated devel/py-pexpect to 4.8.0 [adam 2020-01-22]
	Updated sysutils/pciutils to 3.6.3 [msaitoh 2020-01-23]
	Updated net/bind911 to 9.11.15 [taca 2020-01-23]
	Updated net/bind914 to 9.14.10 [taca 2020-01-23]
	Updated net/isc-dhcp4 to 4.4.2 [taca 2020-01-23]
	Updated net/isc-dhclient4 to 4.4.2 [taca 2020-01-23]
	Updated net/isc-dhcpd4 to 4.4.2 [taca 2020-01-23]
	Updated net/isc-dhcrelay4 to 4.4.2 [taca 2020-01-23]
	Updated www/cliqz to 1.32.1 [fox 2020-01-23]
	Updated chat/ircd-hybrid to 8.2.27 [fox 2020-01-23]
	Updated devel/py-freezegun to 0.3.14 [adam 2020-01-23]
	Updated devel/py-setuptools_scm to 3.4.3 [adam 2020-01-23]
	Updated devel/py-automat to 0.8.0 [adam 2020-01-23]
	Updated devel/ocaml-cppo to 1.6.6 [jaapb 2020-01-23]
	Updated devel/py-txaio to 20.1.1 [adam 2020-01-23]
	Updated www/py-autobahn to 20.1.2 [adam 2020-01-23]
	Updated mail/qmqtool to 1.15nb3 [schmonz 2020-01-23]
	Updated emulators/ski to 1.3.2nb17 [scole 2020-01-23]
	Updated graphics/freeimageplus to 3.18.0 [nia 2020-01-23]
	Added textproc/p5-YAML-PP version 0.018 [schmonz 2020-01-23]
	Added devel/p5-XXX version 0.35 [schmonz 2020-01-23]
	Updated devel/p5-Pegex to 0.74 [schmonz 2020-01-23]
	Updated sysutils/daemontools-encore to 1.11nb1 [schmonz 2020-01-23]
	Updated chat/prosody to 0.11.4 [gdt 2020-01-23]
	Updated pkgtools/pkglint to 19.4.5 [rillig 2020-01-23]
	Updated multimedia/omxplayer to 20170112nb14 [ryoon 2020-01-24]
	Updated net/youtube-dl to 20200124 [adam 2020-01-24]
	Updated textproc/py-xmlschema to 1.1.0 [adam 2020-01-24]
	Updated devel/ocaml-re to 1.9.0 [jaapb 2020-01-24]
	Updated devel/ocaml-result to 1.4 [jaapb 2020-01-24]
	Updated math/ltm to 1.2.0 [wiz 2020-01-24]
	Updated archivers/libzip to 1.6.0 [wiz 2020-01-24]
	Added graphics/ocaml-cairo version 0.6.1 [jaapb 2020-01-24]
	Added games/hengband version 1.6.2 [pho 2020-01-24]
	Added x11/ocaml-lablgtk3 version 3.0beta8 [jaapb 2020-01-24]
	Updated graphics/deforaos-camera to 0.3.0 [khorben 2020-01-24]
	Updated lang/coq to 8.10.2 [jaapb 2020-01-24]
	Updated misc/ocaml-opam to 2.0.6 [jaapb 2020-01-24]
	Updated devel/ocaml-sexplib0 to 0.13.0 [jaapb 2020-01-24]
	Updated math/py-numpy to 1.16.5 [minskim 2020-01-24]
	Updated math/py-sympy to 1.5 [minskim 2020-01-24]
	Added devel/ocaml-bigarray-compat version 1.0.0 [jaapb 2020-01-24]
	Updated devel/ocaml-bigstringaf to 0.6.0 [jaapb 2020-01-24]
	Updated devel/ocaml-stringext to 1.6.0 [jaapb 2020-01-24]
	Updated misc/ocaml-magic-mime to 1.1.2 [jaapb 2020-01-24]
	Updated textproc/ocaml-easy-format to 1.3.2 [jaapb 2020-01-24]
	Updated devel/libuv to 1.34.2 [adam 2020-01-24]
	Updated lang/nodejs to 13.7.0 [adam 2020-01-24]
	Updated lang/nodejs12 to 12.14.1nb1 [adam 2020-01-24]
	Updated lang/nodejs10 to 10.18.1 [adam 2020-01-24]
	Updated sysutils/nbase to 7.0.0.6 [cheusov 2020-01-24]
	Updated sysutils/daemontools-encore to 1.11nb2 [schmonz 2020-01-25]
	Updated www/py-httplib2 to 0.17.0 [adam 2020-01-25]
	Updated security/py-google-auth to 1.11.0 [adam 2020-01-25]
	Updated audio/libmpdclient to 2.18 [nia 2020-01-25]
	Updated audio/openal-soft to 1.20.1 [nia 2020-01-25]
	Updated sysutils/mc to 4.8.24 [nia 2020-01-25]
	Updated lang/php73 to 7.3.14 [taca 2020-01-25]
	Updated lang/php74 to 7.4.2 [taca 2020-01-25]
	Updated lang/php72 to 7.2.27 [taca 2020-01-25]
	Updated emulators/mgba to 0.8.0 [nia 2020-01-25]
	Updated emulators/libretro-mgba to 0.8.0 [nia 2020-01-25]
	Updated games/ioquake3 to 1.36.20200125 [jmcneill 2020-01-25]
	Updated databases/sqlite3 to 3.31.0 [adam 2020-01-26]
	Updated databases/sqlite3-docs to 3.31.0 [adam 2020-01-26]
	Updated databases/sqlite3-tcl to 3.31.0 [adam 2020-01-26]
	Updated devel/lemon to 1.0.3.31.0 [adam 2020-01-26]
	Updated devel/py-coverage to 5.0.3 [adam 2020-01-26]
	Updated fonts/py-fonttools to 4.2.4 [adam 2020-01-26]
	Updated databases/csharp-mysql to 8.0.19 [nia 2020-01-26]
	Updated x11/py-qt5 to 5.13.2nb2 [rhialto 2020-01-26]
	Updated x11/py-qt5-qscintilla to 2.11.2nb3 [rhialto 2020-01-26]
	Updated x11/qt5-qscintilla to 2.11.2nb2 [rhialto 2020-01-26]
	Updated devel/R-callr to 3.4.1 [mef 2020-01-26]
	Updated pkgtools/pkglint to 19.4.6 [rillig 2020-01-26]
	Updated lang/quickjs to 20200119 [he 2020-01-26]
	Updated multimedia/mpv to 0.32.0 [leot 2020-01-26]
	Added graphics/py-OpenGL-accelerate version 3.1.5 [adam 2020-01-27]
	Updated graphics/py-OpenGL to 3.1.5 [adam 2020-01-27]
	Updated sysutils/u-boot-pinebook-pro to 2020.01.rc5nb3 [thorpej 2020-01-27]
	Updated sysutils/u-boot-rock64 to 2017.09nb6 [thorpej 2020-01-27]
	Updated sysutils/u-boot-rockpro64 to 2017.09nb7 [thorpej 2020-01-27]
	Updated textproc/gsed to 4.8 [wiz 2020-01-27]
	Updated misc/lr to 1.5.1 [wiz 2020-01-27]
	Updated mail/mblaze to 0.6 [wiz 2020-01-27]
	Updated sysutils/dbus-python-common to 1.2.16 [wiz 2020-01-27]
	Updated sysutils/py-dbus to 1.2.16 [wiz 2020-01-27]
	Updated textproc/gspell to 1.8.3 [wiz 2020-01-27]
	Updated x11/libxkbcommon to 0.10.0 [wiz 2020-01-27]
	Updated archivers/py-zipp to 1.1.0 [wiz 2020-01-27]
	Updated devel/go-golang-lru to 0.5.4 [wiz 2020-01-27]
	Updated graphics/ImageMagick to 7.0.9.17 [wiz 2020-01-27]
	Updated devel/py-configargparse to 1.0 [adam 2020-01-27]
	Updated devel/py-test-mock to 2.0.0 [adam 2020-01-27]
	Updated mail/pear-Mail_Mime to 1.10.5 [taca 2020-01-27]
	Updated net/samba4 to 4.11.5nb1 [taca 2020-01-27]
	Updated x11/qt5 to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-mysql to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-odbc to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-psql to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtbase to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtcharts to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtconnectivity to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtdeclarative to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtdoc to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtgraphicaleffects to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtimageformats to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtlocation to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtmacextras to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtmultimedia to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtnetworkauth to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtquickcontrols to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtquickcontrols2 to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtscript to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtscxml to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtsensors to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtserialport to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtspeech to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtsvg to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qttools to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qttranslations to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtvirtualkeyboard to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtwayland to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtwebchannel to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtwebsockets to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtx11extras to 5.14.1 [adam 2020-01-27]
	Updated x11/qt5-qtxmlpatterns to 5.14.1 [adam 2020-01-27]
	Updated multimedia/mkvtoolnix to 43.0.0 [adam 2020-01-27]
	Updated games/warzone2100 to 3.3.0 [triaxx 2020-01-27]
	Updated net/dhcpcd to 8.1.6 [roy 2020-01-27]
	Updated net/openresolv to 3.10.0 [roy 2020-01-27]
	Updated audio/py-music21 to 5.7.2nb1 [gutteridge 2020-01-27]
	Updated chat/ircd-hybrid to 8.2.28 [fox 2020-01-27]
	Removed wm/fluxconf [gutteridge 2020-01-27]
	Updated sysutils/pciutils to 3.6.4 [msaitoh 2020-01-28]
	Updated devel/py-prompt_toolkit2 to 3.0.3 [adam 2020-01-28]
	Updated devel/py-ipykernel to 5.1.4 [adam 2020-01-28]
	Updated chat/unrealircd to 5.0.2 [nia 2020-01-28]
	Updated editors/tweak to 3.02 [fcambus 2020-01-28]
	Removed devel/nant [nia 2020-01-28]
	Updated sysutils/nnn to 2.9 [sjmulder 2020-01-28]
	Updated textproc/libxlsxwriter to 0.9.4 [sjmulder 2020-01-28]
	Updated math/sc-im to 0.7.0nb11 [sjmulder 2020-01-28]
	Updated games/wesnoth to 1.14.10 [adam 2020-01-28]
	Updated multimedia/libvpx to 1.8.2 [adam 2020-01-28]
	Updated games/nethack to 3.6.5 [rhialto 2020-01-28]
	Updated x11/xfce4-session to 4.14.1 [gutteridge 2020-01-29]
	Updated x11/xfce4-panel to 4.14.3 [gutteridge 2020-01-29]
	Updated x11/xfce4-settings to 4.14.2 [gutteridge 2020-01-29]
	Updated x11/xfce4-desktop to 4.14.2 [gutteridge 2020-01-29]
	Updated x11/xfce4-whiskermenu-plugin to 2.3.5 [gutteridge 2020-01-29]
	Updated x11/xfce4-screenshooter to 1.9.7 [gutteridge 2020-01-29]
	Updated misc/xfce4-time-out-plugin to 1.1.0 [gutteridge 2020-01-29]
	Updated x11/ocaml-lablgtk to 2.18.10 [jaapb 2020-01-29]
	Updated x11/ocaml-lablgtk3 to 3.1.0 [jaapb 2020-01-29]
	Updated devel/ocaml-migrate-parsetree to 1.5.0 [jaapb 2020-01-29]
	Updated databases/sqlite3 to 3.31.1 [adam 2020-01-29]
	Updated databases/sqlite3-docs to 3.31.1 [adam 2020-01-29]
	Updated databases/sqlite3-tcl to 3.31.1 [adam 2020-01-29]
	Updated devel/lemon to 1.0.3.31.1 [adam 2020-01-29]
	Removed emulators/gcube successor emulators/dolphin-emu [nia 2020-01-29]
	Removed time/cairo-clock [nia 2020-01-29]
	Removed chat/dircproxy [nia 2020-01-29]
	Updated devel/libidn to 1.35 [nia 2020-01-29]
	Updated time/libical to 3.0.7 [nia 2020-01-29]
	Updated x11/redshift to 1.12 [nia 2020-01-29]
	Updated devel/lua-posix to 34.1.1 [nia 2020-01-29]
	Updated devel/extra-cmake-modules to 5.66.0 [markd 2020-01-29]
	Updated archivers/karchive to 5.66.0 [markd 2020-01-29]
	Updated devel/extra-cmake-modules to 5.66.0 [markd 2020-01-29]
	Updated devel/kbookmarks to 5.66.0 [markd 2020-01-29]
	Updated devel/kcmutils to 5.66.0 [markd 2020-01-29]
	Updated devel/kconfig to 5.66.0 [markd 2020-01-29]
	Updated devel/kcoreaddons to 5.66.0 [markd 2020-01-29]
	Updated devel/kcrash to 5.66.0 [markd 2020-01-29]
	Updated devel/kdeclarative to 5.66.0 [markd 2020-01-29]
	Updated devel/kdoctools to 5.66.0 [markd 2020-01-29]
	Updated devel/ki18n to 5.66.0 [markd 2020-01-29]
	Updated devel/kidletime to 5.66.0 [markd 2020-01-29]
	Updated devel/kio to 5.66.0 [markd 2020-01-29]
	Updated devel/kitemmodels to 5.66.0 [markd 2020-01-29]
	Updated devel/knotifications to 5.66.0 [markd 2020-01-29]
	Updated devel/knotifyconfig to 5.66.0 [markd 2020-01-29]
	Updated devel/kpackage to 5.66.0 [markd 2020-01-29]
	Updated devel/kparts to 5.66.0 [markd 2020-01-29]
	Updated devel/kpeople to 5.66.0 [markd 2020-01-29]
	Updated devel/kpty to 5.66.0 [markd 2020-01-29]
	Updated devel/kross to 5.64.0 [markd 2020-01-29]
	Updated devel/krunner to 5.66.0 [markd 2020-01-29]
	Updated devel/kservice to 5.66.0 [markd 2020-01-29]
	Updated devel/ktexteditor to 5.66.0 [markd 2020-01-29]
	Updated devel/kwayland to 5.66.0 [markd 2020-01-29]
	Updated devel/threadweaver to 5.66.0 [markd 2020-01-29]
	Updated graphics/breeze-icons to 5.66.0 [markd 2020-01-29]
	Updated graphics/kiconthemes to 5.66.0 [markd 2020-01-29]
	Updated graphics/kimageformats to 5.66.0 [markd 2020-01-29]
	Updated graphics/kplotting to 5.66.0 [markd 2020-01-29]
	Updated graphics/oxygen-icons to 5.66.0 [markd 2020-01-29]
	Updated graphics/prison to 5.66.0 [markd 2020-01-29]
	Updated meta-pkgs/kf5 to 5.66.0 [markd 2020-01-29]
	Updated misc/attica-qt5 to 5.66.0 [markd 2020-01-29]
	Updated misc/kcontacts to 5.66.0 [markd 2020-01-29]
	Updated misc/kemoticons to 5.66.0 [markd 2020-01-29]
	Updated misc/kunitconversion to 5.66.0 [markd 2020-01-29]
	Updated net/kdnssd to 5.66.0 [markd 2020-01-29]
	Updated net/knewstuff to 5.66.0 [markd 2020-01-29]
	Updated net/kxmlrpcclient to 5.66.0 [markd 2020-01-29]
	Updated security/kauth to 5.66.0 [markd 2020-01-29]
	Updated security/kdesu to 5.66.0 [markd 2020-01-29]
	Updated security/kwallet to 5.66.0 [markd 2020-01-29]
	Updated sysutils/baloo5 to 5.66.0 [markd 2020-01-29]
	Updated sysutils/kdbusaddons to 5.66.0 [markd 2020-01-29]
	Updated sysutils/kfilemetadata5 to 5.66.0 [markd 2020-01-29]
	Updated sysutils/solid to 5.66.0 [markd 2020-01-29]
	Updated textproc/kapidox to 5.66.0 [markd 2020-01-29]
	Updated textproc/kcodecs to 5.66.0 [markd 2020-01-29]
	Updated textproc/kcompletion to 5.66.0 [markd 2020-01-29]
	Updated textproc/sonnet to 5.66.0 [markd 2020-01-29]
	Updated textproc/syntax-highlighting to 5.66.0 [markd 2020-01-29]
	Updated time/kcalendarcore to 5.66.0 [markd 2020-01-29]
	Updated time/kholidays to 5.66.0 [markd 2020-01-29]
	Updated www/kdewebkit to 5.66.0 [markd 2020-01-29]
	Updated www/khtml to 5.66.0 [markd 2020-01-29]
	Updated www/kjs to 5.66.0 [markd 2020-01-29]
	Updated www/kjsembed to 5.66.0 [markd 2020-01-29]
	Updated x11/frameworkintegration to 5.66.0 [markd 2020-01-29]
	Updated x11/kactivities-stats to 5.66.0 [markd 2020-01-29]
	Updated x11/kactivities5 to 5.66.0 [markd 2020-01-29]
	Updated x11/kconfigwidgets to 5.66.0 [markd 2020-01-29]
	Updated x11/kded to 5.66.0 [markd 2020-01-29]
	Updated x11/kdelibs4support to 5.66.0 [markd 2020-01-29]
	Updated x11/kdesignerplugin to 5.66.0 [markd 2020-01-29]
	Updated x11/kglobalaccel to 5.66.0 [markd 2020-01-29]
	Updated x11/kguiaddons to 5.66.0 [markd 2020-01-29]
	Updated x11/kinit to 5.66.0 [markd 2020-01-29]
	Updated x11/kirigami2 to 5.66.0 [markd 2020-01-29]
	Updated x11/kitemviews to 5.66.0 [markd 2020-01-29]
	Updated x11/kjobwidgets to 5.66.0 [markd 2020-01-29]
	Updated x11/ktextwidgets to 5.66.0 [markd 2020-01-29]
	Updated x11/kwidgetsaddons to 5.66.0 [markd 2020-01-29]
	Updated x11/kwindowsystem to 5.66.0 [markd 2020-01-29]
	Updated x11/kxmlgui to 5.66.0 [markd 2020-01-29]
	Updated x11/plasma-framework to 5.66.0 [markd 2020-01-29]
	Updated x11/qqc2-desktop-style to 5.66.0 [markd 2020-01-29]
	Updated net/samba4 to 4.11.6 [adam 2020-01-29]
	Updated lang/npm to 6.13.7 [adam 2020-01-29]
	Updated databases/py-mongo to 3.10.1 [adam 2020-01-29]
	Updated www/py-selenium to 3.141.0 [adam 2020-01-29]
	Updated misc/py-tqdm to 4.42.0 [adam 2020-01-29]
	Updated lang/py-parso to 0.6.0 [adam 2020-01-29]
	Updated misc/libreoffice6-bin to 6.2.8 [tsutsui 2020-01-29]
	Updated security/ocaml-safepass to 3.0nb4 [jaapb 2020-01-29]
	Added mail/feed2exec version 0.14.0 [schmonz 2020-01-29]
	Removed audio/rio [maya 2020-01-29]
	Removed audio/rio500 [maya 2020-01-29]
	Removed audio/rioutil [maya 2020-01-29]
	Updated archivers/libzip to 1.6.0nb1 [wiz 2020-01-29]
	Added devel/py-test-random-order version 1.0.4 [adam 2020-01-29]
	Updated audio/py-last to 3.2.0 [adam 2020-01-29]
	Added www/py-protego version 0.1.16 [adam 2020-01-29]
	Updated www/py-scrapy to 1.8.0 [adam 2020-01-29]
	Updated devel/py-wheel to 0.34.1 [adam 2020-01-29]
	Updated www/py-WebOb to 1.8.6 [adam 2020-01-29]
	Updated print/cups-base to 2.3.1nb1 [prlw1 2020-01-29]
	Updated converters/p5-Sereal-Decoder to 4.008 [fcambus 2020-01-30]
	Updated converters/p5-Sereal-Encoder to 4.008 [fcambus 2020-01-30]
	Updated converters/p5-Sereal to 4.008 [fcambus 2020-01-30]
	Updated devel/go-protobuf to 1.3.3 [he 2020-01-30]
	Updated security/openpam to 20190224nb1 [triaxx 2020-01-30]
	Updated mail/feed2exec to 0.15.0 [schmonz 2020-01-30]
	Updated textproc/py-lxml to 4.5.0 [adam 2020-01-30]
	Updated devel/py-test5 to 5.3.5 [adam 2020-01-30]
	Updated math/py-pandas-datareader to 0.8.1nb1 [minskim 2020-01-30]
	Updated net/tor to 0.4.2.6 [leot 2020-01-30]
	Updated x11/deforaos-notes to 0.2.0 [khorben 2020-01-30]
	Updated time/deforaos-todo to 0.3.0 [khorben 2020-01-30]
	Updated devel/py-stem to 1.8.0 [wiz 2020-01-30]
	Updated math/py-numpy to 1.16.6 [minskim 2020-01-30]
	Updated sysutils/deforaos-terminal to 0.2.0 [khorben 2020-01-31]
	Updated x11/deforaos-integration to 0.1.0 [khorben 2020-01-31]
	Updated meta-pkgs/deforaos-desktop to 2020.1.0 [khorben 2020-01-31]
	Updated math/py-sympy to 1.5.1 [minskim 2020-01-31]
	Updated audio/fasttracker2 to 1.07 [fox 2020-01-31]
	Updated devel/ocaml-biniou to 1.2.1 [jaapb 2020-01-31]
	Updated databases/ocaml-sqlite3 to 5.0.1 [jaapb 2020-01-31]
	Updated security/opendnssec2 to 2.1.5nb2 [he 2020-01-31]
	Added x11/xbanish version 1.6 [pho 2020-01-31]
	Updated finance/py-alpha_vantage to 2.1.3 [minskim 2020-01-31]
	Updated x11/xbanish to 1.6nb1 [wiz 2020-01-31]
	Updated security/softhsm2 to 2.5.0nb1 [he 2020-01-31]
	Updated chat/inspircd3 to 3.5.0 [nia 2020-01-31]
	Updated mail/feed2exec to 0.15.0nb1 [schmonz 2020-01-31]
	Updated net/dnscrypt-proxy2 to 2.0.39 [nia 2020-01-31]
	Updated parallel/slurm-wlm to 19.05.5 [bacon 2020-02-01]
	Updated devel/py-ipython to 7.12.0 [adam 2020-02-01]
	Updated databases/py-redis to 3.4.0 [adam 2020-02-01]
	Updated devel/py-cheetah to 2.4.4nb2 [adam 2020-02-01]
	Added devel/py-cheetah3 version 3.2.4 [adam 2020-02-01]
	Updated databases/mongodb to 4.2.3 [adam 2020-02-01]
	Updated databases/mongodb3 to 3.4.24 [adam 2020-02-01]
	Updated net/py-zeroconf to 0.24.4 [adam 2020-02-01]
	Updated devel/py-wheel to 0.34.2 [adam 2020-02-01]
	Updated finance/py-stripe to 2.42.0 [adam 2020-02-01]
	Updated textproc/py-jinja2 to 2.11.1 [adam 2020-02-01]
	Updated databases/py-asyncpg to 0.20.1 [adam 2020-02-01]
	Updated www/py-daphne to 2.4.1 [adam 2020-02-01]
	Updated www/py-channels to 2.4.0 [adam 2020-02-01]
	Updated devel/py-dulwich to 0.19.15 [adam 2020-02-01]
	Updated devel/librdkafka to 1.3.0 [adam 2020-02-01]
	Updated games/scummvm to 2.1.1 [adam 2020-02-01]
	Updated devel/py-more-itertools to 8.2.0 [adam 2020-02-01]
	Updated math/py-numba to 0.48.0 [adam 2020-02-01]
	Updated devel/py-nose2 to 0.9.2 [adam 2020-02-02]
	Updated devel/py-radon to 4.1.0 [adam 2020-02-02]
	Updated www/py-django-classy-tags to 1.0.0 [adam 2020-02-02]
	Updated www/py-django-formtools to 2.2 [adam 2020-02-02]
	Updated www/py-django-sekizai to 1.1.0 [adam 2020-02-02]
	Updated lang/go112 to 1.12.16 [bsiegert 2020-02-02]
	Updated lang/go113 to 1.13.7 [bsiegert 2020-02-02]
	Updated archivers/ark to 19.12.1 [markd 2020-02-02]
	Updated databases/kldap to 19.12.1 [markd 2020-02-02]
	Updated devel/cervisia to 19.12.1 [markd 2020-02-02]
	Updated devel/kapptemplate to 19.12.1 [markd 2020-02-02]
	Updated devel/kcachegrind to 19.12.1 [markd 2020-02-02]
	Updated devel/kde-dev-scripts to 19.12.1 [markd 2020-02-02]
	Updated devel/kde-dev-utils to 19.12.1 [markd 2020-02-02]
	Updated devel/kompare to 19.12.1 [markd 2020-02-02]
	Updated devel/libkomparediff2 to 19.12.1 [markd 2020-02-02]
	Updated devel/lokalize to 19.12.1 [markd 2020-02-02]
	Updated devel/poxml to 19.12.1 [markd 2020-02-02]
	Updated devel/umbrello to 19.12.1 [markd 2020-02-02]
	Updated editors/kate to 19.12.1 [markd 2020-02-02]
	Updated games/blinken to 19.12.1 [markd 2020-02-02]
	Updated games/bomber to 19.12.1 [markd 2020-02-02]
	Updated games/bovo to 19.12.1 [markd 2020-02-02]
	Updated games/granatier to 19.12.1 [markd 2020-02-02]
	Updated games/kajongg to 19.12.1 [markd 2020-02-02]
	Updated games/kanagram to 19.12.1 [markd 2020-02-02]
	Updated games/kapman to 19.12.1 [markd 2020-02-02]
	Updated games/katomic to 19.12.1 [markd 2020-02-02]
	Updated games/kblackbox to 19.12.1 [markd 2020-02-02]
	Updated games/kblocks to 19.12.1 [markd 2020-02-02]
	Updated games/kbounce to 19.12.1 [markd 2020-02-02]
	Updated games/kbreakout to 19.12.1 [markd 2020-02-02]
	Updated games/kdiamond to 19.12.1 [markd 2020-02-02]
	Updated games/kfourinline to 19.12.1 [markd 2020-02-02]
	Updated games/kgoldrunner to 19.12.1 [markd 2020-02-02]
	Updated games/khangman to 19.12.1 [markd 2020-02-02]
	Updated games/kigo to 19.12.1 [markd 2020-02-02]
	Updated games/killbots to 19.12.1 [markd 2020-02-02]
	Updated games/kiriki to 19.12.1 [markd 2020-02-02]
	Updated games/kjumpingcube to 19.12.1 [markd 2020-02-02]
	Updated games/klickety to 19.12.1 [markd 2020-02-02]
	Updated games/klines to 19.12.1 [markd 2020-02-02]
	Updated games/kmahjongg to 19.12.1 [markd 2020-02-02]
	Updated games/kmines to 19.12.1 [markd 2020-02-02]
	Updated games/knavalbattle to 19.12.1 [markd 2020-02-02]
	Updated games/knetwalk to 19.12.1 [markd 2020-02-02]
	Updated games/kolf to 19.12.1 [markd 2020-02-02]
	Updated games/kollision to 19.12.1 [markd 2020-02-02]
	Updated games/konquest to 19.12.1 [markd 2020-02-02]
	Updated games/kpat to 19.12.1 [markd 2020-02-02]
	Updated games/kreversi to 19.12.1 [markd 2020-02-02]
	Updated games/kshisen to 19.12.1 [markd 2020-02-02]
	Updated games/ksirk to 19.12.1 [markd 2020-02-02]
	Updated games/ksnakeduel to 19.12.1 [markd 2020-02-02]
	Updated games/kspaceduel to 19.12.1 [markd 2020-02-02]
	Updated games/ksquares to 19.12.1 [markd 2020-02-02]
	Updated games/ksudoku to 19.12.1 [markd 2020-02-02]
	Updated games/ktuberling to 19.12.1 [markd 2020-02-02]
	Updated games/kubrick to 19.12.1 [markd 2020-02-02]
	Updated games/libkdegames to 19.12.1 [markd 2020-02-02]
	Updated games/libkmahjongg to 19.12.1 [markd 2020-02-02]
	Updated games/lskat to 19.12.1 [markd 2020-02-02]
	Updated games/palapeli to 19.12.1 [markd 2020-02-02]
	Updated games/picmi to 19.12.1 [markd 2020-02-02]
	Updated graphics/gwenview to 19.12.1 [markd 2020-02-02]
	Updated graphics/kamera to 19.12.1 [markd 2020-02-02]
	Updated graphics/kcolorchooser to 19.12.1 [markd 2020-02-02]
	Updated graphics/kdegraphics-mobipocket to 19.12.1 [markd 2020-02-02]
	Updated graphics/kdegraphics-thumbnailers to 19.12.1 [markd 2020-02-02]
	Updated graphics/kipi-plugins to 19.12.1 [markd 2020-02-02]
	Updated graphics/kolourpaint to 19.12.1 [markd 2020-02-02]
	Updated graphics/kqtquickcharts to 19.12.1 [markd 2020-02-02]
	Updated graphics/kruler to 19.12.1 [markd 2020-02-02]
	Updated graphics/libkdcraw to 19.12.1 [markd 2020-02-02]
	Updated graphics/libkexiv2 to 19.12.1 [markd 2020-02-02]
	Updated graphics/libkipi to 19.12.1 [markd 2020-02-02]
	Updated graphics/libksane to 19.12.1 [markd 2020-02-02]
	Updated graphics/spectacle to 19.12.1 [markd 2020-02-02]
	Updated graphics/svgpart to 19.12.1 [markd 2020-02-02]
	Updated mail/kimap to 19.12.1 [markd 2020-02-02]
	Updated mail/kmbox to 19.12.1 [markd 2020-02-02]
	Updated mail/kmime to 19.12.1 [markd 2020-02-02]
	Updated mail/ksmtp to 19.12.1 [markd 2020-02-02]
	Updated math/analitza to 19.12.1 [markd 2020-02-02]
	Updated math/cantor to 19.12.1 [markd 2020-02-02]
	Updated math/kalgebra to 19.12.1 [markd 2020-02-02]
	Updated math/kcalc to 19.12.1 [markd 2020-02-02]
	Updated misc/kalzium to 19.12.1 [markd 2020-02-02]
	Updated misc/kbruch to 19.12.1 [markd 2020-02-02]
	Updated misc/kcharselect to 19.12.1 [markd 2020-02-02]
	Updated misc/kdav to 19.12.1 [markd 2020-02-02]
	Updated misc/kdeedu-data to 19.12.1 [markd 2020-02-02]
	Updated misc/kgeography to 19.12.1 [markd 2020-02-02]
	Updated misc/khelpcenter to 19.12.1 [markd 2020-02-02]
	Updated misc/kidentitymanagement to 19.12.1 [markd 2020-02-02]
	Updated misc/kig to 19.12.1 [markd 2020-02-02]
	Updated misc/kiten to 19.12.1 [markd 2020-02-02]
	Updated misc/klettres to 19.12.1 [markd 2020-02-02]
	Updated misc/kmag to 19.12.1 [markd 2020-02-02]
	Updated misc/kmousetool to 19.12.1 [markd 2020-02-02]
	Updated misc/kmouth to 19.12.1 [markd 2020-02-02]
	Updated misc/kteatime to 19.12.1 [markd 2020-02-02]
	Updated misc/ktouch to 19.12.1 [markd 2020-02-02]
	Updated misc/kturtle to 19.12.1 [markd 2020-02-02]
	Updated misc/kwordquiz to 19.12.1 [markd 2020-02-02]
	Updated misc/libkeduvocdocument to 19.12.1 [markd 2020-02-02]
	Updated misc/libkgeomap to 19.12.1 [markd 2020-02-02]
	Updated misc/marble to 19.12.1 [markd 2020-02-02]
	Updated misc/rocs to 19.12.1 [markd 2020-02-02]
	Updated misc/step to 19.12.1 [markd 2020-02-02]
	Updated multimedia/dragon to 19.12.1 [markd 2020-02-02]
	Updated multimedia/juk to 19.12.1 [markd 2020-02-02]
	Updated multimedia/kdenlive to 19.12.1 [markd 2020-02-02]
	Updated multimedia/libkcddb to 19.12.1 [markd 2020-02-02]
	Updated net/krdc to 19.12.1 [markd 2020-02-02]
	Updated net/krfb to 19.12.1 [markd 2020-02-02]
	Updated print/okular to 19.12.1 [markd 2020-02-02]
	Updated security/kwalletmanager to 19.12.1 [markd 2020-02-02]
	Updated sysutils/filelight to 19.12.1 [markd 2020-02-02]
	Updated sysutils/k3b to 19.12.1 [markd 2020-02-02]
	Updated sysutils/kdf to 19.12.1 [markd 2020-02-02]
	Updated sysutils/kfloppy to 19.12.1 [markd 2020-02-02]
	Updated sysutils/ksystemlog to 19.12.1 [markd 2020-02-02]
	Updated textproc/kpimtextedit to 19.12.1 [markd 2020-02-02]
	Updated time/kcalutils to 19.12.1 [markd 2020-02-02]
	Updated time/ktimer to 19.12.1 [markd 2020-02-02]
	Updated net/get_iplayer to 3.25 [nia 2020-02-02]
	Updated net/fehqlibs to 0.9.13d [schmonz 2020-02-03]
	Updated net/djbdnscurve6 to 36b [schmonz 2020-02-03]
	Updated mail/feed2exec to 0.15.0nb2 [schmonz 2020-02-03]
	Updated textproc/p5-ack to 2.28 [schmonz 2020-02-03]
	Updated textproc/p5-ack to 3.3.1 [schmonz 2020-02-03]
	Updated mail/qmail to 1.03nb48 [schmonz 2020-02-03]
	Updated sysutils/xentools48 to 4.8.5nb1 [triaxx 2020-02-03]
	Updated security/sudo to 1.8.31 [kim 2020-02-03]
	Updated sysutils/collectd-dns to 5.8.0nb3 [triaxx 2020-02-03]
	Updated converters/p5-Sereal-Decoder to 4.009 [fcambus 2020-02-03]
	Updated converters/p5-Sereal-Encoder to 4.009 [fcambus 2020-02-03]
	Updated converters/p5-Sereal to 4.009 [fcambus 2020-02-03]
	Updated www/py-werkzeug to 0.16.1 [kleink 2020-02-03]
	Updated www/py-werkzeug-docs to 0.16.1 [kleink 2020-02-03]
	Added games/doom-pwad-shotgun-symphony version 1.0 [micha 2020-02-03]
	Added devel/catch2 version 2.11.1 [bsiegert 2020-02-03]
	Updated security/go-crypto to 0.0.20200122 [bsiegert 2020-02-03]
	Updated net/go-net to 20200130 [bsiegert 2020-02-03]
	Added security/go-crypto-acme version 0.0.20200122 [bsiegert 2020-02-03]
	Updated devel/go-sys to 0.0.20200202 [bsiegert 2020-02-03]
	Updated net/ucspi-ssl to 0.999.11.1nb2 [schmonz 2020-02-03]
	Updated www/py-djangocms-admin-style to 1.5.0 [adam 2020-02-03]
	Updated www/py-django-cms to 3.7.1 [adam 2020-02-03]
	Added security/wolfssl version 4.3.0 [fox 2020-02-03]
	Updated www/lighttpd to 1.4.55 [nros 2020-02-03]
	Updated www/py-feedgen to 0.9.0 [minskim 2020-02-04]
	Updated devel/geany to 1.36 [gutteridge 2020-02-04]
	Updated www/squid4 to 4.10 [taca 2020-02-04]
	Updated security/py-cryptodome to 3.9.6 [adam 2020-02-04]
	Updated lang/py-parso to 0.6.1 [adam 2020-02-04]
	Updated devel/git-lfs to 2.10.0 [tnn 2020-02-04]
	Updated security/py-josepy to 1.3.0 [adam 2020-02-04]
	Updated databases/py-redis to 3.4.1 [adam 2020-02-04]
	Updated databases/py-sqlalchemy to 1.3.13 [adam 2020-02-04]
	Updated databases/py-sqlalchemy-utils to 0.36.1 [adam 2020-02-04]
	Updated devel/py-dialog to 3.5.1 [adam 2020-02-04]
	Updated devel/py-dialog2 to 3.5.1 [adam 2020-02-04]
	Updated www/py-django to 1.11.28 [adam 2020-02-04]
	Updated www/py-django2 to 2.2.10 [adam 2020-02-04]
	Updated devel/nspr to 4.25 [ryoon 2020-02-05]
	Updated devel/nss to 3.49.2 [ryoon 2020-02-05]
	Updated pkgtools/pkglint to 19.4.7 [rillig 2020-02-05]
	Updated devel/binutils to 2.34 [rillig 2020-02-05]
	Updated devel/xa65 to 2.3.10 [fcambus 2020-02-05]
	Updated net/p5-MaxMind-DB-Reader to 1.000014 [fcambus 2020-02-05]
	Added graphics/qr-code-generator version 1.4.0 [ryoon 2020-02-05]
	Updated devel/mdds to 1.5.0 [ryoon 2020-02-05]
	Added devel/spdlog version 1.5.0 [ryoon 2020-02-05]
	Updated math/libixion to 0.15.0 [ryoon 2020-02-05]
	Updated math/py-libixion to 0.15.0 [ryoon 2020-02-05]
	Updated converters/orcus to 0.15.3 [ryoon 2020-02-05]
	Updated emulators/dosbox-x to 0.82.26 [nia 2020-02-05]
	Updated misc/libreoffice to 6.4.0.3 [ryoon 2020-02-05]
	Updated multimedia/libva to 2.6.1 [ryoon 2020-02-05]
	Updated lang/openjdk11 to 1.11.0.6.10 [ryoon 2020-02-05]
	Updated mail/pear-Mail_Mime to 1.10.6 [taca 2020-02-05]
	Updated mail/thunderbird to 68.4.2 [ryoon 2020-02-05]
	Updated mail/thunderbird-l10n to 68.4.2 [ryoon 2020-02-05]
	Updated databases/ruby-sequel to 5.29.0 [taca 2020-02-05]
	Updated devel/ruby-byebug to 11.1.1 [taca 2020-02-05]
	Updated devel/ruby-ffi to 1.12.2 [taca 2020-02-05]
	Updated devel/ruby-gettext to 3.3.3 [taca 2020-02-05]
	Updated devel/ruby-i18n to 1.8.2 [taca 2020-02-05]
	Updated devel/ruby-msgpack to 1.3.3 [taca 2020-02-05]
	Updated devel/ruby-octokit to 4.15.0 [taca 2020-02-05]
	Updated devel/ruby-pkg-config to 1.4.0 [taca 2020-02-05]
	Updated devel/ruby-racc to 1.4.16 [taca 2020-02-05]
	Updated devel/ruby-simplecov-html to 0.11.0 [taca 2020-02-05]
	Updated devel/ruby-simplecov to 0.18.1 [taca 2020-02-05]
	Updated editors/hexedit to 1.4.2 [fcambus 2020-02-05]
	Removed chat/libirc [nia 2020-02-06]
	Removed chat/p5-Net-AIM [nia 2020-02-06]
	Removed chat/p5-Net-AOLIM [nia 2020-02-06]
	Updated net/py-twisted to 19.10.0 [adam 2020-02-06]
	Updated net/py-twisted-docs to 19.10.0 [adam 2020-02-06]
	Updated www/py-notebook to 6.0.3 [adam 2020-02-06]
	Updated devel/cmake to 3.16.4 [adam 2020-02-06]
	Updated devel/protobuf to 3.11.3 [adam 2020-02-06]
	Updated devel/py-protobuf to 3.11.3 [adam 2020-02-06]
	Updated emulators/qemu to 4.2.0nb5 [kamil 2020-02-06]
	Added devel/abseil version 20190808 [adam 2020-02-06]
	Updated net/grpc to 1.27.0 [adam 2020-02-06]
	Updated databases/mongo-c-driver to 1.16.1 [adam 2020-02-06]
	Updated www/py-wsproto to 0.15.0 [adam 2020-02-06]
	Updated sysutils/py-watchdog to 0.10.1 [adam 2020-02-06]
	Updated emulators/qemu to 4.2.0nb6 [kamil 2020-02-06]
	Added sysutils/spice-server version 0.14.2 [kamil 2020-02-06]
	Updated emulators/qemu to 4.2.0nb7 [kamil 2020-02-06]
	Updated emulators/qemu to 4.2.0nb8 [kamil 2020-02-06]
	Added time/py-trading-calendars version 1.11.2 [minskim 2020-02-06]
	Updated emulators/qemu to 4.2.0nb9 [kamil 2020-02-07]
	Updated lang/nodejs10 to 10.19.0 [adam 2020-02-07]
	Updated lang/nodejs12 to 12.15.0 [adam 2020-02-07]
	Updated lang/nodejs to 13.8.0 [adam 2020-02-07]
	Updated devel/yarn to 1.22.0 [adam 2020-02-07]
	Updated misc/screen to 4.8.0 [ryoon 2020-02-07]
	Added sysutils/spice-gtk version 0.37 [ryoon 2020-02-07]
	Added sysutils/virt-viewer version 8.0 [ryoon 2020-02-07]
	Updated net/sayaka to 3.4.2 [tsutsui 2020-02-07]
	Updated lang/camlp5 to 7.11 [jaapb 2020-02-07]
	Updated devel/glib2 to 2.62.4nb1 [prlw1 2020-02-07]
	Updated devel/at-spi2-core to 2.35.1 [prlw1 2020-02-07]
	Updated devel/at-spi2-atk to 2.34.1 [prlw1 2020-02-07]
	Added net/nanotodon version 0.1.0 [tsutsui 2020-02-08]
	Removed net/monsoon [nia 2020-02-08]
	Removed inputmethod/qt5-uim [nia 2020-02-08]
	Removed print/libgnomecups [nia 2020-02-08]
	Updated devel/transifex-client to 0.13.7 [taca 2020-02-08]
	Removed graphics/adapta-gtk-theme [nia 2020-02-08]
	Updated audio/libmysofa to 1.0 [nia 2020-02-08]
	Updated lang/yabasic to 2.86.4 [fcambus 2020-02-08]
	Updated graphics/qr-code-generator to 1.4.0nb1 [wiz 2020-02-08]
	Updated editors/nano to 4.8 [wiedi 2020-02-08]
	Updated www/firefox52 to 52.9.0nb21 [kamil 2020-02-08]
	Updated www/firefox60 to 60.9.0nb3 [kamil 2020-02-08]
	Updated www/firefox68 to 68.4.2nb1 [kamil 2020-02-08]
	Updated www/firefox to 72.0.2nb1 [kamil 2020-02-08]
	Updated mail/thunderbird52 to 52.9.1nb7 [kamil 2020-02-08]
	Updated mail/thunderbird60 to 60.9.1nb2 [kamil 2020-02-08]
	Updated mail/thunderbird to 68.4.2nb1 [kamil 2020-02-08]
	Updated www/seamonkey to 2.49.5nb3 [kamil 2020-02-08]
	Updated multimedia/vlc to 3.0.8nb4 [ryoon 2020-02-09]
	Updated math/R-ellipsis to 0.3.0 [mef 2020-02-09]
	Added devel/R-rversions version  2.0.1 [mef 2020-02-09]
	Updated devel/R-devtools to 2.2.1 [mef 2020-02-09]
	Updated security/gnutls to 3.6.12 [wiz 2020-02-09]
	Updated security/libsecret to 0.20.1 [wiz 2020-02-09]
	Updated converters/libcdr to 0.1.6 [wiz 2020-02-09]
	Updated graphics/ImageMagick to 7.0.9.22 [wiz 2020-02-09]
	Updated archivers/libzip to 1.6.1 [wiz 2020-02-09]
	Updated devel/py-mercurial to 5.3 [wiz 2020-02-09]
	Updated archivers/par2 to 0.8.1 [rhialto 2020-02-09]
	Updated databases/gramps3 to 3.4.9 [jdolecek 2020-02-09]
	Added textproc/py-ICU version 2.4.2 [jdolecek 2020-02-09]
	Added databases/gramps5 version 5.1.2 [jdolecek 2020-02-09]
	Removed devel/py-kqueue [jdolecek 2020-02-09]
	Updated security/libgpg-error to 1.37 [adam 2020-02-10]
	Updated www/py-django-extensions to 2.2.7 [adam 2020-02-10]
	Updated net/syncthing to 1.3.4 [triaxx 2020-02-10]
	Updated graphics/papirus-icon-theme to 20200201 [nia 2020-02-10]
	Updated print/qpdf to 9.1.1 [ryoon 2020-02-10]
	Updated lang/quickjs to 20200119nb1 [he 2020-02-10]
	Updated graphics/grafx2 to 2.7.2950 [ryoon 2020-02-10]
	Updated devel/ninja-build to 1.10.0 [ryoon 2020-02-10]
	Added security/snallygaster version 0.0.4 [leot 2020-02-10]
	Added devel/R-lintr version 2.0.0 [mef 2020-02-10]
	Added devel/R-cyclocomp version 1.1.0 [mef 2020-02-10]
	Added textproc/R-xmlparsedata version 1.0.3 [mef 2020-02-10]
	Added math/R-stringdist version 0.9.5.5 [mef 2020-02-10]
	Updated databases/openldap to 2.4.49 [adam 2020-02-10]
	Updated net/grpc to 1.27.1 [adam 2020-02-10]
	Updated net/py-grpcio to 1.27.1 [adam 2020-02-10]
	Updated net/py-grpcio-testing to 1.27.1 [adam 2020-02-10]
	Updated net/py-grpcio-tools to 1.27.1 [adam 2020-02-10]
	Updated audio/fasttracker2 to 1.08 [fox 2020-02-10]
	Added devel/py-importlib-resources version 1.0.2 [adam 2020-02-10]
	Updated devel/py-importlib-metadata to 1.5.0 [adam 2020-02-10]
	Updated devel/R-pkgbuild to 1.0.6 [mef 2020-02-11]
	Updated emulators/mame to 0.218 [wiz 2020-02-11]
	Updated security/opendnssec2 to 2.1.6 [he 2020-02-11]
	Updated shells/bash to 5.0.16 [kre 2020-02-11]
	Added textproc/ruby-inifile version 3.0.0 [taca 2020-02-11]
	Updated games/gbrainy to 2.41 [nia 2020-02-11]
	Removed lang/mono2 successor lang/mono6 [nia 2020-02-11]
	Updated math/py-scikit-learn to 0.22.1 [minskim 2020-02-11]
	Updated graphics/py-wand to 0.5.9 [adam 2020-02-11]
	Updated www/py-django-extensions to 2.2.8 [adam 2020-02-11]
	Updated devel/py-argcomplete to 1.11.1 [adam 2020-02-11]
	Updated www/py-bottle to 0.12.18 [adam 2020-02-11]
	Added mail/roundcube-plugin-carddav version 3.0.3 [triaxx 2020-02-11]
	Updated mail/rspamd to 2.3 [triaxx 2020-02-11]
	Updated mail/postfix to 3.4.9 [triaxx 2020-02-11]
	Updated textproc/libhighlight to 3.55 [schmonz 2020-02-12]
	Updated devel/py-pbr to 5.4.4 [adam 2020-02-12]
	Updated devel/py-stevedore to 1.32.0 [adam 2020-02-12]
	Removed devel/halfempty [wiz 2020-02-12]
	Updated audio/din to 44.0.2 [fox 2020-02-12]
	Updated sysutils/py-watchdog to 0.10.2 [adam 2020-02-12]
	Updated finance/py-braintree to 3.59.0 [adam 2020-02-12]
	Updated multimedia/handbrake to 1.3.1 [ryoon 2020-02-12]
	Updated mail/dovecot2 to 2.3.9.3 [taca 2020-02-12]
	Updated mail/dovecot2-gssapi to 2.3.9.3 [taca 2020-02-12]
	Updated mail/dovecot2-ldap to 2.3.9.3 [taca 2020-02-12]
	Updated mail/dovecot2-mysql to 2.3.9.3 [taca 2020-02-12]
	Updated mail/dovecot2-pgsql to 2.3.9.3 [taca 2020-02-12]
	Updated mail/dovecot2-sqlite to 2.3.9.3 [taca 2020-02-12]
	Updated www/ruby-rouge to 3.16.0 [fcambus 2020-02-12]
	Added converters/bdf2sfd version 1.1.0 [fcambus 2020-02-12]
	Updated lang/mono6 to 6.8.0.105 [ryoon 2020-02-12]
	Updated multimedia/libbluray to 1.1.2nb1 [ryoon 2020-02-12]
	Updated geography/py-google-maps-services-python to 4.1.0 [ryoon 2020-02-12]
	Updated www/firefox to 73.0 [ryoon 2020-02-12]
	Updated www/firefox-l10n to 73.0 [ryoon 2020-02-12]
	Updated multimedia/adobe-flash-player to 32.0.0.330 [tsutsui 2020-02-12]
	Added archivers/arqiver version 0.3.2 [gutteridge 2020-02-13]
	Added editors/featherpad version 0.12.0 [gutteridge 2020-02-13]
	Added editors/feathernotes version 0.5.1 [gutteridge 2020-02-13]
	Updated devel/pcre to 8.44 [adam 2020-02-13]
	Updated net/haproxy to 2.1.3 [adam 2020-02-13]
	Updated databases/py-bsddb3 to 6.2.7 [adam 2020-02-13]
	Updated net/py-lexicon to 3.3.17 [adam 2020-02-13]
	Updated graphics/opencv to 3.4.9 [adam 2020-02-13]
	Updated graphics/opencv-contrib-face to 3.4.9 [adam 2020-02-13]
	Updated audio/fasttracker2 to 1.09 [fox 2020-02-13]
	Updated net/rabbitmq-c to 0.10.0 [adam 2020-02-13]
	Updated fonts/spleen to 1.7.0 [fcambus 2020-02-13]
	Added textproc/R-spelling version 2.1 [mef 2020-02-13]
	Added textproc/R-hunspell version 3.0 [mef 2020-02-13]
	Updated multimedia/libbluray to 1.1.2nb2 [kamil 2020-02-13]
	Updated lang/elixir to 1.10.1 [adam 2020-02-13]
	Updated net/rabbitmq to 3.8.2 [adam 2020-02-13]
	Added net/py-pika version 1.1.0 [adam 2020-02-13]
	Added net/py-pamqp version 2.3.0 [adam 2020-02-13]
	Added net/py-aiormq version 3.2.0 [adam 2020-02-13]
	Added net/py-aio-pika version 6.4.1 [adam 2020-02-13]
	Updated www/ikiwiki to 3.20200202.3 [schmonz 2020-02-13]
	Updated net/lftp to 4.9.1 [adam 2020-02-13]
	Updated www/py-curl to 7.43.0.5 [adam 2020-02-13]
	Updated lang/py-uncompyle6 to 3.6.4 [adam 2020-02-13]
	Updated misc/py-tqdm to 4.42.1 [adam 2020-02-13]
	Updated graphics/openexr to 2.4.1 [nia 2020-02-13]
	Updated graphics/ilmbase to 2.4.1 [nia 2020-02-13]
	Updated www/gitea to 1.11.0 [nia 2020-02-13]
	Updated multimedia/handbrake to 1.3.1nb1 [ryoon 2020-02-13]
	Updated archivers/arqiver to 0.3.2nb1 [gutteridge 2020-02-14]
	Updated textproc/p5-YAML-PP to 0.019 [schmonz 2020-02-14]
	Updated devel/p5-Pegex to 0.75 [schmonz 2020-02-14]
	Updated devel/py-test-xprocess to 0.13.1 [adam 2020-02-14]
	Updated devel/py-setuptools_scm to 3.5.0 [adam 2020-02-14]
	Updated net/grpc to 1.27.2 [adam 2020-02-14]
	Updated net/py-grpcio to 1.27.2 [adam 2020-02-14]
	Updated net/py-grpcio-testing to 1.27.2 [adam 2020-02-14]
	Updated net/py-grpcio-tools to 1.27.2 [adam 2020-02-14]
	Updated devel/nss to 3.50 [ryoon 2020-02-14]
	Updated sysutils/qdirstat to 1.6.1 [rillig 2020-02-14]
	Updated math/py-pandas to 0.25.3 [minskim 2020-02-14]
	Updated databases/postgresql94 to 9.4.26 [adam 2020-02-14]
	Updated databases/postgresql95 to 9.5.21 [adam 2020-02-14]
	Updated databases/postgresql96 to 9.6.17 [adam 2020-02-14]
	Updated databases/postgresql10 to 10.12 [adam 2020-02-14]
	Updated databases/postgresql11 to 11.7 [adam 2020-02-14]
	Updated databases/postgresql12 to 12.2 [adam 2020-02-14]
	Updated sysutils/entr to 4.4 [leot 2020-02-14]
	Updated www/webkit-gtk to 2.26.4 [leot 2020-02-14]
	Added comms/remserial version 1.4 [manu 2020-02-14]
	Updated security/clamav to 0.102.2 [taca 2020-02-15]
	Updated editors/emacs-snapshot to 28.0.50 [makoto 2020-02-15]
	Updated devel/lua-gi to 0.9.2 [mef 2020-02-15]
	Updated devel/lua-penlight to 1.7.0 [mef 2020-02-15]
	Updated devel/lua-std-_debug to 1.0.1 [mef 2020-02-15]
	Updated devel/R-rlang to 0.4.4 [mef 2020-02-15]
	Updated devel/R-testthat to 2.3.1 [mef 2020-02-15]
	Updated cad/gtkwave to 3.3.104 [mef 2020-02-15]
	Updated cad/xcircuit to 3.10.17 [mef 2020-02-15]
	Updated www/firefox68 to 68.5.0 [nia 2020-02-15]
	Updated www/firefox68-l10n to 68.5.0 [nia 2020-02-15]
	Updated pkgtools/pkglint to 19.4.8 [rillig 2020-02-15]
	Updated pkgtools/pkg_regress to 0.6 [rillig 2020-02-15]
	Updated mail/mutt to 1.13.4 [tron 2020-02-15]
	Updated finance/R-bayesm to 3.1.4 [mef 2020-02-15]
	Updated archivers/R-zip to 2.0.4 [mef 2020-02-15]
	Updated archivers/gcpio to 2.13 [mef 2020-02-16]
	Updated math/py-arviz to 0.6.1 [minskim 2020-02-16]
	Updated net/sayaka to 3.4.3 [tsutsui 2020-02-16]
	Updated net/ruby-public_suffix to 4.0.3 [tsutsui 2020-02-16]
	Updated devel/ruby-delayer-deferred to 2.1.3 [tsutsui 2020-02-16]
	Updated devel/ruby-delayer to 1.1.2 [tsutsui 2020-02-16]
	Updated devel/ruby-gettext to 3.3.5 [tsutsui 2020-02-16]
	Updated textproc/ruby-nokogiri to 1.10.8 [tsutsui 2020-02-16]
	Updated devel/ruby-locale to 2.1.3 [tsutsui 2020-02-16]
	Updated graphics/ruby-cairo to 1.16.5 [tsutsui 2020-02-16]
	Updated mail/gmime3 to 3.2.6 [wiz 2020-02-16]
	Updated devel/slib to 3.2.6 [wiz 2020-02-16]
	Updated www/py-hstspreload to 2020.2.15 [adam 2020-02-16]
	Updated net/py-aio-pika to 6.4.3 [adam 2020-02-16]
	Updated security/py-google-auth to 1.11.2 [adam 2020-02-16]
	Updated devel/py-jupyter_core to 4.6.2 [adam 2020-02-16]
	Updated net/youtube-dl to 20200216 [leot 2020-02-16]
	Updated devel/guile-slib to 3.2.6 [gdt 2020-02-16]
	Updated devel/guile22-slib to 3.2.6 [wiz 2020-02-16]
	Updated audio/musescore to 3.4.2 [gutteridge 2020-02-16]
	Updated sysutils/py-augeas to 1.1.0 [adam 2020-02-16]
	Updated security/py-acme to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-apache to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-digitalocean to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-dnsimple to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-dnsmadeeasy to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-gehirn to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-google to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-linode to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-luadns to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-nsone to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-ovh to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-rfc2136 to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-route53 to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-dns-sakuracloud to 1.2.0 [adam 2020-02-16]
	Updated security/py-certbot-nginx to 1.2.0 [adam 2020-02-16]
	Added devel/lxqt-build-tools version 0.6.0 [gutteridge 2020-02-16]
	Updated devel/py-pebble to 4.5.0 [adam 2020-02-16]
	Updated textproc/py-odfpy to 1.4.1 [adam 2020-02-16]
	Updated net/py-gsutil to 4.47 [adam 2020-02-16]
	Updated databases/py-alembic to 1.4.0 [adam 2020-02-16]
	Updated graphics/libimagequant to 2.12.6 [adam 2020-02-16]
	Updated databases/prometheus to 2.16.0 [adam 2020-02-16]
	Added games/dMagnetic version 0.22 [wiz 2020-02-17]
	Updated net/gallery-dl to 1.13.0 [leot 2020-02-17]
	Updated net/py-pyftpdlib to 1.5.6 [adam 2020-02-17]
	Updated textproc/py-elementpath to 1.4.1 [adam 2020-02-17]
	Updated www/py-idna to 2.9 [adam 2020-02-17]
	Updated www/py-h2 to 3.2.0 [adam 2020-02-17]
	Updated graphics/libansilove to 1.2.0 [fcambus 2020-02-17]
	Updated graphics/ansilove to 4.1.0 [fcambus 2020-02-17]
	Updated textproc/gtk-doc to 1.32nb1 [wiz 2020-02-17]
	Updated math/gnumeric112 to 1.12.46nb1 [wiz 2020-02-17]
	Added x11/libqtxdg version 3.4.0 [gutteridge 2020-02-17]
	Updated pkgtools/pkglint to 19.4.9 [rillig 2020-02-17]
	Updated lang/rust to 1.41.0 [jperkin 2020-02-17]
	Added www/py-django3 version 3.0.3 [adam 2020-02-17]
	Updated textproc/py-sphinx to 2.4.1 [adam 2020-02-17]
	Updated net/py-aiormq to 3.2.1 [adam 2020-02-18]
	Updated net/py-aio-pika to 6.5.2 [adam 2020-02-18]
	Updated databases/gramps5 to 5.1.2nb1 [wiz 2020-02-18]
	Updated www/py-httptools to 0.1.1 [adam 2020-02-18]
	Updated www/py-uvicorn to 0.11.3 [adam 2020-02-18]
	Updated www/py-django-tastypie to 0.14.3 [adam 2020-02-18]
	Updated devel/py-pygit2 to 1.0.3 [adam 2020-02-18]
	Updated audio/fluidsynth to 2.1.1 [nia 2020-02-18]
	Updated audio/musicpd to 0.21.20 [nia 2020-02-18]
	Updated emulators/mgba to 0.8.1 [nia 2020-02-18]
	Updated emulators/libretro-mgba to 0.8.1 [nia 2020-02-18]
	Updated www/gitea to 1.11.1 [nia 2020-02-18]
	Updated devel/py-cython to 0.29.15 [adam 2020-02-18]
	Updated graphics/py-matplotlib to 3.1.3 [adam 2020-02-18]
	Updated shells/fish to 3.1.0 [maya 2020-02-18]
	Updated net/snort to 2.9.15.1 [sevan 2020-02-18]
	Updated audio/musescore to 3.4.2nb1 [gutteridge 2020-02-19]
	Updated multimedia/mpv to 0.32.0nb1 [jperkin 2020-02-19]
	Updated net/py-botocore to 1.15.2 [adam 2020-02-19]
	Updated net/py-s3transfer to 0.3.3 [adam 2020-02-19]
	Updated net/py-boto3 to 1.12.2 [adam 2020-02-19]
	Updated net/py-awscli to 1.18.2 [adam 2020-02-19]
	Updated devel/py-freezegun to 0.3.15 [adam 2020-02-19]
	Updated devel/py-ruamel-yaml to 0.16.10 [adam 2020-02-19]
	Updated www/py-djangocms-attributes-field to 1.2.0 [adam 2020-02-19]
	Updated www/py-django-mptt to 0.11.0 [adam 2020-02-19]
	Moved www/py-django-easy-thumbnails to www/py-easy-thumbnails [adam 2020-02-19]
	Updated www/py-easy-thumbnails to 2.7 [adam 2020-02-19]
	Updated www/py-django-filer to 1.4.0nb1 [adam 2020-02-19]
	Updated www/py-django-cmsplugin_gallery to 1.1.7 [adam 2020-02-19]
	Updated www/py-djangocms-picture to 2.4.0 [adam 2020-02-19]
	Updated www/py-djangocms-audio to 1.3.0 [adam 2020-02-19]
	Updated www/py-djangocms-file to 2.4.0 [adam 2020-02-19]
	Updated www/py-djangocms-googlemap to 1.4.0 [adam 2020-02-19]
	Updated www/py-djangocms-icon to 1.5.0 [adam 2020-02-19]
	Updated www/py-djangocms-link to 2.5.0 [adam 2020-02-19]
	Updated www/py-djangocms-style to 2.3.0 [adam 2020-02-19]
	Updated www/py-djangocms-text-ckeditor to 3.8.0 [adam 2020-02-19]
	Updated www/py-djangocms-video to 2.3.0 [adam 2020-02-19]
	Updated net/knot to 2.9.2 [ryoon 2020-02-19]
	Updated wm/swc to 0.0.0.20200219 [nia 2020-02-19]
	Updated print/py-reportlab to 3.5.34 [adam 2020-02-19]
	Updated www/py-webcolors to 1.11.1 [adam 2020-02-19]
	Updated graphics/py-blockdiag to 2.0.1 [adam 2020-02-19]
	Updated graphics/py-actdiag to 2.0.0 [adam 2020-02-19]
	Updated graphics/py-seqdiag to 2.0.0 [adam 2020-02-19]
	Updated devel/py-buildbot to 2.6.0 [adam 2020-02-19]
	Updated devel/py-buildbot-console-view to 2.6.0 [adam 2020-02-19]
	Updated devel/py-buildbot-grid-view to 2.6.0 [adam 2020-02-19]
	Updated devel/py-buildbot-pkg to 2.6.0 [adam 2020-02-19]
	Updated devel/py-buildbot-waterfall-view to 2.6.0 [adam 2020-02-19]
	Updated devel/py-buildbot-worker to 2.6.0 [adam 2020-02-19]
	Updated devel/py-buildbot-www to 2.6.0 [adam 2020-02-19]
	Updated devel/mk-configure to 0.34.0 [cheusov 2020-02-19]
	Updated sysutils/nbase to 7.0.0.7 [cheusov 2020-02-19]
	Added x11/liblxqt version 0.14.1 [gutteridge 2020-02-20]
	Added x11/qtermwidget version 0.14.1 [gutteridge 2020-02-20]
	Added x11/qterminal version 0.14.1 [gutteridge 2020-02-20]
	Added x11/libfm-qt version 0.14.1 [gutteridge 2020-02-20]
	Added sysutils/pcmanfm-qt version 0.14.1 [gutteridge 2020-02-20]
	Added graphics/lximage-qt version 0.14.1 [gutteridge 2020-02-20]
	Updated devel/apr to 1.7.0nb1 [rin 2020-02-20]
	Updated www/py-django-filer to 1.6.0 [adam 2020-02-20]
	Updated graphics/py-nwdiag to 2.0.0 [adam 2020-02-20]
	Updated chat/ircd-hybrid to 8.2.29 [fox 2020-02-20]
	Updated www/php-nextcloud to 18.0.1 [ryoon 2020-02-20]
	Updated net/nsd to 4.2.4 [ryoon 2020-02-20]
	Updated editors/bvi to 1.4.1 [nia 2020-02-20]
	Updated net/unbound to 1.10.0 [he 2020-02-20]
	Updated lang/php73 to 7.3.15 [taca 2020-02-20]
	Updated lang/php74 to 7.4.3 [taca 2020-02-20]
	Updated lang/php72 to 7.2.28 [taca 2020-02-20]
	Updated sysutils/flashrom to 1.2 [nia 2020-02-20]
	Updated devel/bullet to 2.89 [nia 2020-02-20]
	Updated graphics/imlib2 to 1.6.1 [nia 2020-02-20]
	Updated security/mbedtls to 2.16.4 [nia 2020-02-20]
	Updated textproc/uncrustify to 0.70.1 [nia 2020-02-20]
	Updated chat/unrealircd to 5.0.3.1 [nia 2020-02-20]
	Updated audio/vamp-plugin-sdk to 2.9.0 [nia 2020-02-20]
	Updated games/supertux to 0.6.1.1 [nia 2020-02-20]
	Updated net/bind914 to 9.14.11 [taca 2020-02-20]
	Updated net/bind911 to 9.11.16 [taca 2020-02-20]
	Updated editors/xournalpp to 1.0.17 [nia 2020-02-20]
	Updated x11/xkbcomp to 1.4.3 [wiz 2020-02-20]
	Updated net/mikutter to 4.0.4 [tsutsui 2020-02-21]
	Added net/mikutter-plugins-twitter version 4.0 [tsutsui 2020-02-21]
	Updated net/nanotodon to 0.1.1 [tsutsui 2020-02-21]
	Updated textproc/py-xmlschema to 1.1.1 [adam 2020-02-21]
	Updated devel/py-requests to 2.23.0 [adam 2020-02-21]
	Updated textproc/py-sphinx to 2.4.2 [adam 2020-02-21]
	Updated misc/py-tqdm to 4.43.0 [adam 2020-02-21]
	Updated www/firefox to 73.0.1 [ryoon 2020-02-21]
	Updated www/firefox-l10n to 73.0.1 [ryoon 2020-02-21]
	Updated graphics/blender to 2.82 [nia 2020-02-21]
	Updated archivers/unrar to 5.9.1 [adam 2020-02-21]
	Updated security/py-cryptodome to 3.9.7 [adam 2020-02-22]
	Updated databases/py-multidict to 4.7.5 [adam 2020-02-22]
	Updated www/py-django-filer to 1.7.0 [adam 2020-02-22]
	Updated www/py-djangocms-text-ckeditor to 3.9.0 [adam 2020-02-22]
	Updated devel/p5-Alien-Base-ModuleBuild to 1.14 [mef 2020-02-22]
	Updated devel/p5-Alien-Build to 2.08 [mef 2020-02-22]
	Updated devel/p5-App-perlbrew to 0.88 [mef 2020-02-22]
	Updated devel/p5-CPAN-Perl-Releases to 5.20200220 [mef 2020-02-22]
	Updated devel/p5-CPANPLUS to 0.9906 [mef 2020-02-22]
	Updated devel/p5-Config-AutoConf to 0.318 [mef 2020-02-22]
	Updated devel/p5-Data-Peek to 0.49 [mef 2020-02-22]
	Updated devel/p5-Data-Perl to 0.002011 [mef 2020-02-22]
	Updated devel/p5-Devel-CheckOS to 1.83 [mef 2020-02-22]
	Updated devel/p5-Devel-Hide to 0.0013 [mef 2020-02-22]
	Updated misc/pciids to 20200222 [sevan 2020-02-22]
	Updated lang/rust to 1.41.0nb1 [he 2020-02-22]
	Updated www/cliqz to 1.33.0 [fox 2020-02-23]
	Updated lang/rust to 1.41.0nb2 [he 2020-02-23]
	Updated editors/vim-share to 8.2.0303 [morr 2020-02-23]
	Updated editors/vim-lang to 8.2.0303 [morr 2020-02-23]
	Updated www/wordpress to 5.3.2 [morr 2020-02-23]
	Updated audio/ncmpc to 0.37 [nia 2020-02-23]
	Updated chat/weechat to 2.7.1 [nia 2020-02-23]
	Updated chat/irssi to 1.2.2nb2 [nia 2020-02-23]
	Updated lang/go112 to 1.12.17 [bsiegert 2020-02-23]
	Updated net/sacc to 1.01 [leot 2020-02-23]
	Updated news/sfeed to 0.9.16 [leot 2020-02-23]
	Updated www/tscrape to 0.4 [leot 2020-02-23]
	Updated textproc/json2tsv to 0.5 [leot 2020-02-23]
	Updated net/stagit-gopher to 0.9.3 [leot 2020-02-23]
	Updated www/stagit to 0.9.3 [fcambus 2020-02-23]
	Updated x11/xcb-proto to 1.14 [wiz 2020-02-23]
	Updated x11/py-xcbgen to 1.14 [wiz 2020-02-23]
	Updated x11/libxcb to 1.14 [wiz 2020-02-23]
	Updated graphics/wld to 0.0.0.20200220 [nia 2020-02-24]
	Updated wm/swc to 0.0.0.20200222 [nia 2020-02-24]
	Updated net/py-rt to 1.0.13 [leot 2020-02-24]
	Updated net/py-rt to 2.0.0 [leot 2020-02-24]
	Updated lang/nodejs12 to 12.16.1 [adam 2020-02-24]
	Updated lang/nodejs to 13.9.0 [adam 2020-02-24]
	Updated devel/git to 2.25.1 [adam 2020-02-24]
	Updated devel/subversion to 1.13.0 [adam 2020-02-24]
	Updated www/py-django-admin-rangefilter to 0.5.4 [adam 2020-02-24]
	Updated www/py-django-admin-sortable2 to 0.7.5 [adam 2020-02-24]
	Updated textproc/py-xlsxwriter to 1.2.8 [adam 2020-02-24]
	Updated devel/py-faker to 4.0.1 [adam 2020-02-24]
	Updated sysutils/ansible to 2.9.5 [adam 2020-02-24]
	Updated www/libpsl to 0.21.0 [adam 2020-02-24]
	Updated textproc/py-jmespath to 0.9.5 [adam 2020-02-25]
	Updated devel/py-enum34 to 1.1.9 [adam 2020-02-25]
	Updated net/py-responses to 0.10.11 [adam 2020-02-25]
	Updated www/py-hstspreload to 2020.2.25 [adam 2020-02-25]
	Updated net/tcpdump to 4.9.3 [adam 2020-02-25]
	Updated audio/quodlibet to 4.3.0 [nia 2020-02-25]
	Updated textproc/xapian to 1.4.15 [schmonz 2020-02-25]
	Updated textproc/xapian-omega to 1.4.15 [schmonz 2020-02-25]
	Updated games/eureka to 1.27.1 [micha 2020-02-26]
	Updated graphics/babl to 0.1.74 [nia 2020-02-26]
	Updated games/armagetronad to 0.2.8.3.5 [nia 2020-02-26]
	Updated graphics/gegl to 0.4.22 [nia 2020-02-26]
	Updated games/armagetronad-server to 0.2.8.3.5 [nia 2020-02-26]
	Updated wm/i3 to 4.18 [nia 2020-02-26]
	Updated graphics/GraphicsMagick to 1.3.35 [nia 2020-02-26]
	Updated graphics/p5-GraphicsMagick to 1.3.35 [nia 2020-02-26]
	Removed geography/geolite2-country [wiz 2020-02-26]
	Updated security/KeePass to 2.44 [nia 2020-02-26]
	Removed geography/geolite2-city [wiz 2020-02-26]
	Updated databases/kyotocabinet to 1.2.77 [nia 2020-02-26]
	Updated security/keepassxc to 2.5.3 [nia 2020-02-26]
	Updated devel/re2 to 20200101 [nia 2020-02-26]
	Updated games/REminiscence to 0.4.6 [nia 2020-02-26]
	Updated math/superlu to 5.2.1 [wiz 2020-02-26]
	Updated audio/snd to 20.1 [nia 2020-02-26]
	Updated lang/vala to 0.46.6 [nia 2020-02-26]
	Updated wm/vtwm to 5.5.0 [nia 2020-02-26]
	Updated games/srb2 to 2.2.2 [nia 2020-02-26]
	Removed audio/rplay [nia 2020-02-26]
	Removed devel/rx [nia 2020-02-26]
	Updated devel/libffi to 3.3 [adam 2020-02-26]
	Updated lang/elixir to 1.10.2 [adam 2020-02-26]
	Updated shells/zsh to 5.8 [ryoon 2020-02-27]
	Updated net/wireshark to 3.2.2 [adam 2020-02-27]
	Updated lang/erlang to 22.2.7 [jperkin 2020-02-27]
	Updated lang/erlang-doc to 22.2 [jperkin 2020-02-27]
	Updated lang/erlang-man to 22.2 [jperkin 2020-02-27]
	Added lang/go114 version 1.14 [bsiegert 2020-02-27]
	Updated lang/python38 to 3.8.2 [adam 2020-02-27]
	Updated lang/py38-html-docs to 3.8.2 [adam 2020-02-27]
	Updated lang/go113 to 1.13.8 [bsiegert 2020-02-27]
	Updated www/py-moin to 1.9.10 [bsiegert 2020-02-27]
	Updated security/sqlmap to 1.4.2 [leot 2020-02-27]
	Updated security/py-ecdsa to 0.15 [bsiegert 2020-02-27]
	Updated lang/rust to 1.41.1 [adam 2020-02-28]
	Updated security/scrypt to 1.3.0nb2 [wiz 2020-02-28]
	Added games/doom2-pwad-eviternity version 1.0 [micha 2020-02-28]
	Updated textproc/enchant2 to 2.2.8 [bsiegert 2020-02-28]
	Updated multimedia/mediainfo to 19.09 [bsiegert 2020-02-28]
	Updated math/lapack to 3.9.0 [plunky 2020-02-28]
	Updated math/blas to 3.9.0 [plunky 2020-02-28]
	Added math/arpack-ng version 3.7.0 [plunky 2020-02-28]
	Added devel/libdstr version 1.0 [plunky 2020-02-28]
	Added math/congen version 1.7 [plunky 2020-02-28]
	Added math/harmgen version 3.1.3 [plunky 2020-02-28]
	Added math/harmbase2 version 20191229 [plunky 2020-02-28]
	Updated www/ruby-puma to 4.3.2 [taca 2020-02-29]
	Updated devel/libgit2 to 0.99.0 [nia 2020-02-29]
	Updated security/mbedtls to 2.16.5 [nia 2020-02-29]
	Removed audio/rtunes [nia 2020-02-29]
	Updated textproc/py-sphinxcontrib-applehelp to 1.0.2 [adam 2020-02-29]
	Updated textproc/py-sphinxcontrib-devhelp to 1.0.2 [adam 2020-02-29]
	Updated textproc/py-sphinxcontrib-htmlhelp to 1.0.3 [adam 2020-02-29]
	Updated textproc/py-sphinxcontrib-serializinghtml to 1.1.4 [adam 2020-02-29]
	Updated textproc/py-sphinxcontrib-qthelp to 1.0.3 [adam 2020-02-29]
	Updated textproc/py-sphinx to 2.4.3 [adam 2020-02-29]
	Updated archivers/zopfli to 1.0.3 [mef 2020-02-29]
	Updated archivers/zutils to 1.8 [mef 2020-02-29]
	Updated net/mosquitto to 1.6.9 [gdt 2020-02-29]
	Updated www/py-MechanicalSoup to 0.12.0 [adam 2020-02-29]
	Updated www/py-flask-admin to 1.5.5 [adam 2020-02-29]
	Updated sysutils/xfce4-thunar to 1.8.12 [gutteridge 2020-02-29]
	Updated misc/xfce4-weather-plugin to 0.10.1 [gutteridge 2020-02-29]
	Updated x11/xfce4-whiskermenu-plugin to 2.4.2 [gutteridge 2020-02-29]
	Updated archivers/szip to 2.1.1 [mef 2020-03-01]
	Updated archivers/p5-Archive-Tar to 2.36 [mef 2020-03-01]
	Updated www/ruby-puma to 4.3.3 [taca 2020-03-01]
	Updated textproc/py-X to 0.15 [gutteridge 2020-03-01]
	Updated lang/coq to 8.10.2nb1 [dholland 2020-03-01]
	Updated devel/py-pygit2 to 1.1.0 [nia 2020-03-01]
	Removed net/libdmapsharing successor net/libdmapsharing3 [nia 2020-03-01]
	Updated sysutils/mencvcd to 1.4 [wiz 2020-03-01]
	Removed games/sirius [nia 2020-03-01]
	Updated print/glabels to 3.4.1 [nia 2020-03-01]
	Updated editors/texworks to 0.6.3 [markd 2020-03-01]
	Updated editors/texstudio to 2.12.22 [markd 2020-03-01]
	Removed audio/gimmix [nia 2020-03-01]
	Updated net/youtube-dl to 20200301 [leot 2020-03-01]
	Removed print/pdfmod [nia 2020-03-01]
	Removed security/p5-OpenSSL [nia 2020-03-01]
	Removed security/sslwrap [nia 2020-03-01]
	Removed security/stud [nia 2020-03-01]
	Removed security/sign [nia 2020-03-01]
	Removed security/mixminion [nia 2020-03-01]
	Removed mail/freepops [nia 2020-03-01]
	Removed security/gpass [nia 2020-03-01]
	Updated x11/xfce4-session to 4.14.1nb1 [gutteridge 2020-03-01]
	Updated net/gallery-dl to 1.13.1 [leot 2020-03-01]
	Updated databases/py-sqlparse to 0.3.1 [adam 2020-03-02]
	Updated textproc/py-parse to 1.15.0 [adam 2020-03-02]
	Updated devel/py-mako to 1.1.2 [adam 2020-03-02]
	Updated devel/py-importlib-resources to 1.1.0 [adam 2020-03-02]
	Updated sysutils/py-supervisor to 4.1.0 [adam 2020-03-02]
	Removed www/py-meld3 [adam 2020-03-02]
	Updated devel/py-ipython to 7.13.0 [adam 2020-03-03]
	Updated devel/py-fakefs to 3.7.2 [adam 2020-03-03]
	Updated net/py-responses to 0.10.12 [adam 2020-03-03]
	Updated devel/py-importlib-resources to 1.2.0 [adam 2020-03-03]
	Added lang/janet version 1.7.0 [nia 2020-03-03]
	Updated lang/gcc7 to 7.5.0 [adam 2020-03-03]
	Updated lang/gcc7-libs to 7.5.0nb1 [adam 2020-03-03]
	Updated graphics/librsvg-c to 2.40.21 [leot 2020-03-03]
	Updated finance/py-stripe to 2.43.0 [adam 2020-03-03]
	Updated lang/py-parso to 0.6.2 [adam 2020-03-03]
	Updated emulators/tme to 0.8nb40 [rin 2020-03-04]
	Updated net/libsoup to 2.68.4 [wiz 2020-03-04]
	Updated devel/meld to 3.20.2 [wiz 2020-03-04]
	Updated textproc/docbook-xsl to 1.79.2 [wiz 2020-03-04]
	Updated converters/fribidi to 1.0.9 [nia 2020-03-04]
	Updated textproc/docbook-xsl to 1.79.2nb1 [wiz 2020-03-04]
	Updated emulators/dosbox-x to 0.83.0 [nia 2020-03-04]
	Updated devel/smake to 1.3nb9 [micha 2020-03-04]
	Updated archivers/star to 1.6.1nb5 [micha 2020-03-04]
	Updated shells/bosh to 20200211 [micha 2020-03-04]
	Updated shells/pbosh to 20200211 [micha 2020-03-04]
	Updated emulators/mame to 0.219 [wiz 2020-03-04]
	Updated graphics/gimp to 2.10.18 [wiz 2020-03-04]
	Updated graphics/ImageMagick to 7.0.9.27 [wiz 2020-03-04]
	Updated graphics/libmypaint to 1.5.1 [wiz 2020-03-04]
	Updated graphics/mypaint-brushes to 1.3.1 [wiz 2020-03-04]
	Updated graphics/mypaint-brushes to 2.0.2 [wiz 2020-03-04]
	Updated graphics/mypaint to 2.0.0 [wiz 2020-03-04]
	Updated devel/ncurses to 6.2 [wiz 2020-03-04]
	Updated devel/ncursesw to 6.2 [wiz 2020-03-04]
	Updated x11/gtk3 to 3.24.14 [wiz 2020-03-04]
	Updated devel/glib2 to 2.64.0 [wiz 2020-03-04]
	Updated net/fehqlibs to 0.9.14 [schmonz 2020-03-04]
	Updated net/ucspi-tcp6 to 1.11.3 [schmonz 2020-03-04]
	Updated print/poppler to 0.86.0 [wiz 2020-03-04]
	Updated multimedia/x264-devel to 20191217 [wiz 2020-03-04]
	Updated net/ucspi-ssl to 0.999.11.3 [schmonz 2020-03-04]
	Updated www/curl to 7.69.0 [adam 2020-03-04]
	Updated devel/cmake to 3.16.5 [adam 2020-03-04]
	Updated devel/py-cparser to 2.20 [adam 2020-03-04]
	Updated devel/py-cffi to 1.14.0 [adam 2020-03-04]
	Updated lang/nodejs to 13.10.0 [adam 2020-03-04]
	Updated lang/npm to 6.14.2 [adam 2020-03-04]
	Added misc/abduco version 0.6 [nia 2020-03-04]
	Updated print/poppler to 0.86.1 [wiz 2020-03-04]
	Added security/rvault version 0.1 [wiz 2020-03-05]
	Updated lang/nodejs to 13.10.1 [adam 2020-03-05]
	Updated sysutils/ansible to 2.9.6 [adam 2020-03-05]
	Updated textproc/docbook-xsl to 1.79.2nb2 [wiz 2020-03-05]
	Added graphics/SDL2_gfx version 1.0.4 [nia 2020-03-05]
	Added sysutils/neofetch version 6.1.0 [nia 2020-03-05]
	Added games/corsix-th version 0.63 [nia 2020-03-05]
	Added fonts/comic-neue version 2.3 [nia 2020-03-05]
	Updated emulators/tme to 0.8nb41 [thorpej 2020-03-05]
	Added cross/asm6809 version 2.12 [jperkin 2020-03-05]
	Updated net/youtube-dl to 20200306 [leot 2020-03-05]
	Updated net/hub to 2.14.2 [leot 2020-03-05]
	Updated audio/fasttracker2 to 1.10 [fox 2020-03-05]
	Updated chat/py-mastodon to 1.5.0 [nia 2020-03-05]
	Updated chat/tootstream to 0.3.8.1 [nia 2020-03-05]
	Added graphics/py-blurhash version 1.1.4 [nia 2020-03-05]
	Updated textproc/miller to 5.6.2 [fcambus 2020-03-05]
	Updated lang/openjdk8 to 1.8.242 [tnn 2020-03-06]
	Removed comms/libopensync-plugin-evolution2 [nia 2020-03-06]
	Removed devel/mico [nia 2020-03-06]
	Removed devel/sfio [nia 2020-03-06]
	Added emulators/caprice32 version 4.5.0 [nia 2020-03-06]
	Removed emulators/arnold [nia 2020-03-06]
	Updated devel/libosip to 5.1.1 [nia 2020-03-06]
	Updated net/libexosip to 5.1.1 [nia 2020-03-06]
	Updated devel/cbindgen to 0.13.1 [ryoon 2020-03-06]
	Updated misc/libreoffice to 6.4.1.2 [ryoon 2020-03-06]
	Updated sysutils/bacula to 9.6.2 [jnemeth 2020-03-06]
	Updated sysutils/bacula-clientonly to 9.6.2 [jnemeth 2020-03-06]
	Updated sysutils/bacula-qt-console to 9.6.2 [jnemeth 2020-03-06]
	Updated sysutils/bacula-qt5-console to 9.6.2 [jnemeth 2020-03-06]
	Updated sysutils/bacula-tray-monitor to 9.6.2 [jnemeth 2020-03-06]
	Updated sysutils/bacula-tray-monitor-qt5 to 9.6.2 [jnemeth 2020-03-06]
	Updated www/http-parser to 2.9.3 [wiz 2020-03-07]
	Updated lang/libLLVM to 9.0.1 [tnn 2020-03-07]
	Updated net/synergy to 1.11.0 [tnn 2020-03-07]
	Updated audio/picard to 2.3.1 [wiz 2020-03-07]
	Updated editors/poedit to 2.3 [wiz 2020-03-07]
	Updated security/py-gssapi to 1.6.2 [adam 2020-03-07]
	Updated devel/py-prompt_toolkit2 to 3.0.4 [adam 2020-03-07]
	Updated databases/py-ldap3 to 2.7 [adam 2020-03-07]
	Updated time/py-dateparser to 0.7.4 [adam 2020-03-07]
	Updated sysutils/libnotify to 0.7.9 [wiz 2020-03-07]
	Updated misc/ascii to 3.18 [fcambus 2020-03-07]
	Updated textproc/lowdown to 0.6.1 [fcambus 2020-03-07]
	Updated fonts/pcf2bdf to 1.06 [fcambus 2020-03-07]
	Updated www/htmldoc to 1.9.8 [fcambus 2020-03-07]
	Updated pkgtools/pkglint to 19.4.10 [rillig 2020-03-07]
	Updated graphics/MesaLib to 20.0.1 [tnn 2020-03-08]
	Updated net/youtube-dl to 20200308 [leot 2020-03-08]
	Updated databases/ruby-sequel to 5.30.0 [taca 2020-03-08]
	Updated devel/hoe to 3.22.1 [taca 2020-03-08]
	Updated devel/ruby-backports to 3.17.0 [taca 2020-03-08]
	Updated devel/ruby-bindata to 2.4.6 [taca 2020-03-08]
	Updated devel/ruby-concurrent-ruby to 1.1.6 [taca 2020-03-08]
	Updated devel/ruby-fast_gettext to 2.0.2 [taca 2020-03-08]
	Updated devel/ruby-gettext_i18n_rails to 1.8.1 [taca 2020-03-08]
	Updated devel/ruby-google-protobuf to 3.11.4 [taca 2020-03-08]
	Updated devel/ruby-iniparse to 1.5.0 [taca 2020-03-08]
	Updated devel/ruby-io-like to 0.3.1 [taca 2020-03-08]
	Updated devel/ruby-octokit to 4.16.0 [taca 2020-03-08]
	Updated devel/ruby-parser to 3.14.2 [taca 2020-03-08]
	Updated devel/ruby-parslet to 2.0.0 [taca 2020-03-08]
	Updated devel/ruby-pathutil to 0.16.2 [taca 2020-03-08]
	Updated devel/ruby-pkg-config to 1.4.1 [taca 2020-03-08]
	Updated devel/ruby-power_assert to 1.1.6 [taca 2020-03-08]
	Updated devel/ruby-rb-inotify to 0.10.1 [taca 2020-03-08]
	Updated devel/ruby-regexp_parser to 1.7.0 [taca 2020-03-08]
	Updated devel/ruby-sexp-processor to 4.14.1 [taca 2020-03-08]
	Updated devel/ruby-simplecov-html to 0.12.2 [taca 2020-03-08]
	Updated devel/ruby-simplecov to 0.18.5 [taca 2020-03-08]
	Updated devel/ruby-tomlrb to 1.2.9 [taca 2020-03-08]
	Updated devel/ruby-tty-color to 0.5.1 [taca 2020-03-08]
	Updated devel/ruby-tty-cursor to 0.7.1 [taca 2020-03-08]
	Updated devel/ruby-tty-screen to 0.7.1 [taca 2020-03-08]
	Updated devel/ruby-tins to 1.24.1 [taca 2020-03-08]
	Updated devel/ruby-wmi-lite to 1.0.5 [taca 2020-03-08]
	Updated fonts/ruby-ttfunk to 1.6.2.1 [taca 2020-03-08]
	Updated devel/MoarVM to 2020.02.1 [bsiegert 2020-03-08]
	Updated graphics/ruby-RMagick to 4.0.0 [taca 2020-03-08]
	Updated graphics/ruby-chunky_png to 1.3.11 [taca 2020-03-08]
	Updated graphics/ruby-mini-magick to 4.10.1 [taca 2020-03-08]
	Updated mail/ruby-mime-types to 3.3.1 [taca 2020-03-08]
	Updated math/ruby-roo to 2.8.3 [taca 2020-03-08]
	Updated math/ruby-spreadsheet to 1.2.6 [taca 2020-03-08]
	Updated pkgtools/revbump to 2.15 [wiz 2020-03-08]
	Updated lang/nqp to 2020.02.1 [bsiegert 2020-03-08]
	Updated x11/xf86-video-ati to 19.1.0nb1 [maya 2020-03-08]
	Updated lang/rakudo to 2020.02.1 [bsiegert 2020-03-08]
	Updated archivers/ruby-zip to 1.3.0 [taca 2020-03-09]
	Updated games/devilutionx to 1.0.1 [nia 2020-03-09]
	Updated www/gitea to 1.11.2 [nia 2020-03-09]
	Added net/dbip-country-lite version 2020.03 [fcambus 2020-03-09]
	Added net/dbip-city-lite version 2020.03 [fcambus 2020-03-09]
	Updated multimedia/mkvtoolnix to 44.0.0 [adam 2020-03-09]
	Updated textproc/py-pygments to 2.5.2 [adam 2020-03-09]
	Updated textproc/py-sphinx to 2.4.4 [adam 2020-03-09]
	Added net/p5-GeoIP2 version 2.006002 [fcambus 2020-03-09]
	Updated x11/xfce4-clipman-plugin to 1.4.4 [gutteridge 2020-03-10]
	Updated www/py-hstspreload to 2020.3.4 [adam 2020-03-10]
	Updated www/py-httpx to 0.12.0 [adam 2020-03-10]
	Updated www/nginx-devel to 1.17.9 [adam 2020-03-10]
	Updated devel/py-click to 7.1.1 [adam 2020-03-10]
	Updated devel/yarn to 1.22.4 [adam 2020-03-10]
	Updated archivers/upx to 3.96 [tnn 2020-03-10]
	Updated inputmethod/ibus to 1.5.22 [tsutsui 2020-03-10]
	Updated textproc/ruby-nokogiri to 1.10.9 [tsutsui 2020-03-10]
	Updated misc/ruby-mini_portile2 to 2.5.0 [tsutsui 2020-03-10]
	Added graphics/termtosvg version 1.1.0 [fcambus 2020-03-10]
	Updated net/libfilezilla to 0.20.2 [wiz 2020-03-10]
	Updated geography/proj to 6.3.1 [gdt 2020-03-10]
	Updated www/webkit-gtk to 2.28.0 [leot 2020-03-10]
	Updated devel/binutils to 2.34nb1 [bacon 2020-03-10]
	Updated graphics/librsvg to 2.48.0 [wiz 2020-03-10]
	Updated devel/libpeas to 1.26.0 [wiz 2020-03-10]
	Updated lang/guile22 to 2.2.7 [wiz 2020-03-10]
	Updated x11/gtksourceview4 to 4.6.0 [wiz 2020-03-10]
	Updated devel/py-pygit2 to 1.1.1 [wiz 2020-03-10]
	Updated net/glib-networking to 2.64.0 [wiz 2020-03-10]
	Updated net/libsoup to 2.70.0 [wiz 2020-03-10]
	Updated graphics/ImageMagick to 7.0.10.0 [wiz 2020-03-10]
	Updated editors/featherpad to 0.13.0 [gutteridge 2020-03-11]
	Updated www/ruby-rouge to 3.17.0 [fcambus 2020-03-11]
	Updated www/curl to 7.69.1 [adam 2020-03-11]
	Updated lang/python37 to 3.7.7 [adam 2020-03-11]
	Updated lang/py37-html-docs to 3.7.7 [adam 2020-03-11]
	Updated devel/py-mercurial to 5.3.1 [wiz 2020-03-11]
	Updated lang/vala to 0.48.0 [wiz 2020-03-11]
	Removed geography/emerillon [wiz 2020-03-11]
	Updated devel/gobject-introspection to 1.64.0 [wiz 2020-03-11]
	Updated audio/fasttracker2 to 1.11 [fox 2020-03-11]
	Updated net/filezilla to 3.47.2 [wiz 2020-03-11]
	Removed devel/ethos [wiz 2020-03-11]
	Removed geography/libchamplain06 successor geography/libchamplain012 [wiz 2020-03-11]
	Removed geography/libchamplain08 successor geography/libchamplain012 [wiz 2020-03-11]
	Updated geography/libmemphis02 to 0.2.3nb5 [wiz 2020-03-11]
	Updated geography/libchamplain012 to 0.12.20 [wiz 2020-03-11]
	Removed geography/libchamplain04 [wiz 2020-03-11]
	Updated net/pure-ftpd to 1.0.49 [nia 2020-03-11]
	Updated multimedia/adobe-flash-player to 32.0.0.344 [tsutsui 2020-03-11]
	Updated textproc/gnome-doc-utils to 0.20.10nb4 [wiz 2020-03-11]
	Updated geography/geos to 3.8.1 [gdt 2020-03-11]
	Updated benchmarks/httperf to 0.9.0.20190829 [nia 2020-03-11]
	Updated games/hengband to 2.2.1r [pho 2020-03-11]
	Removed www/librest successor www/librest07 [wiz 2020-03-11]
	Removed databases/gq [nia 2020-03-11]
	Removed devel/opencm [nia 2020-03-11]
	Updated mail/cue to 20180813 [nia 2020-03-11]
	Removed mail/dovecot successor mail/dovecot2 [nia 2020-03-11]
	Updated graphics/goocanvas2 to 2.0.4 [wiz 2020-03-11]
	Removed graphics/goocanvasmm [wiz 2020-03-11]
	Updated time/py-goocalendar to 0.7.0 [wiz 2020-03-11]
	Removed net/openwbem [nia 2020-03-11]
	Removed net/chimera [nia 2020-03-11]
	Updated ham/gpredict to 2.2.1 [wiz 2020-03-11]
	Removed graphics/py-goocanvas [wiz 2020-03-11]
	Removed graphics/goocanvas successor graphics/goocanvas2 [wiz 2020-03-11]
	Updated sysutils/pfetch to 0.5.0 [fox 2020-03-11]
	Updated graphics/py-pycha to 0.8.1 [wiz 2020-03-11]
	Removed games/gnome-games-extra-data [wiz 2020-03-11]
	Removed games/gnome-games [wiz 2020-03-11]
	Removed x11/py-gnome2-desktop [wiz 2020-03-11]
	Added pkgtools/check-portability version 19.4.0 [rillig 2020-03-12]
	Updated geography/libgeotiff to 1.5.1 [gdt 2020-03-12]
	Updated editors/feathernotes to 0.6.0 [gutteridge 2020-03-12]
	Added lang/py-inflect version 4.1.0 [wiz 2020-03-12]
	Added devel/py-jaraco.itertools version 5.0.0 [wiz 2020-03-12]
	Added devel/py-func_timeout version 4.3.5 [wiz 2020-03-12]
	Updated archivers/py-zipp to 3.1.0 [wiz 2020-03-12]
	Updated archivers/py-zipp1 to 1.2.0 [wiz 2020-03-12]
	Updated archivers/py-zipp to 3.1.0nb1 [wiz 2020-03-12]
	Updated pkgtools/check-portability to 19.4.1 [rillig 2020-03-12]
	Updated security/kpcli to 3.3nb1 [wiz 2020-03-12]
	Updated devel/ocaml-batteries to 2.11.0 [jaapb 2020-03-12]
	Updated misc/tmux to 3.0anb2 [leot 2020-03-12]
	Updated sysutils/pfetch to 0.6.0 [fox 2020-03-12]
	Removed multimedia/gnome-media [nia 2020-03-12]
	Updated sysutils/py-Glances to 3.1.4 [fox 2020-03-12]
	Removed audio/py-musicbrainz [nia 2020-03-12]
	Updated devel/libuv to 1.35.0 [adam 2020-03-12]
	Updated www/py-asgiref to 3.2.5 [adam 2020-03-12]
	Updated www/py-django3 to 3.0.4 [adam 2020-03-12]
	Updated www/py-django2 to 2.2.11 [adam 2020-03-12]
	Updated www/py-django to 1.11.29 [adam 2020-03-12]
	Updated www/py-google-api-python-client to 1.7.12 [adam 2020-03-12]
	Removed security/gnome-keyring-sharp [nia 2020-03-12]
	Updated textproc/py-ujson to 2.0.1 [adam 2020-03-12]
	Updated security/py-asyncssh to 2.2.0 [adam 2020-03-12]
	Updated misc/xdg-utils to 1.1.3nb2 [wiz 2020-03-12]
	Updated www/w3m to 0.5.3.0.20190105 [wiz 2020-03-12]
	Updated www/w3m-img to 0.5.3.0.20190105 [wiz 2020-03-12]
	Removed net/ORBit successor net/ORBit2 [wiz 2020-03-12]
	Updated www/firefox68 to 68.6.0 [nia 2020-03-12]
	Updated www/firefox68-l10n to 68.6.0 [nia 2020-03-12]
	Removed math/arpack successor math/arpack-ng [plunky 2020-03-13]
	Updated databases/redis to 5.0.8 [adam 2020-03-13]
	Updated net/libcares to 1.16.0 [adam 2020-03-13]
	Removed databases/mysql51-client successor databases/mysql57-client [nia 2020-03-13]
	Removed databases/mysql51-server successor databases/mysql57-server [nia 2020-03-13]
	Updated misc/khard to 0.15.1nb1 [wiz 2020-03-13]
	Updated net/tigervnc to 1.10.1 [wiz 2020-03-13]
	Updated net/tigervnc to 1.10.1nb1 [wiz 2020-03-13]
	Updated meta-pkgs/bulk-medium to 20200313 [nia 2020-03-13]
	Updated meta-pkgs/bulk-large to 20200313 [nia 2020-03-13]
	Removed chat/jabberd successor chat/jabberd2 [nia 2020-03-13]
	Updated geography/osm2pgsql to 1.2.1 [gdt 2020-03-13]
	Added net/libiscsi version 1.19.0 [tnn 2020-03-13]
	Updated lang/gcc7 to 7.5.0nb1 [bacon 2020-03-13]
	Updated lang/gcc7-libs to 7.5.0nb2 [bacon 2020-03-13]
	Updated pkgtools/check-portability to 19.4.2 [rillig 2020-03-13]
	Updated net/filezilla to 3.47.2.1 [mef 2020-03-13]
	Updated security/tor-browser to 9.0.6 [wiz 2020-03-13]
	Updated lang/rust to 1.42.0 [jperkin 2020-03-13]
	Updated chat/ircd-hybrid to 8.2.30 [fox 2020-03-14]
	Updated audio/fasttracker2 to 1.12 [fox 2020-03-14]
	Added devel/php-composer version 1.10.1 [tpaul 2020-03-14]
	Added security/php-gnupg version 1.4.0 [tpaul 2020-03-14]
	Updated www/firefox to 74.0 [ryoon 2020-03-14]
	Updated www/firefox-l10n to 74.0 [ryoon 2020-03-14]
	Updated pkgtools/check-portability to 19.4.3 [rillig 2020-03-14]
	Updated cross/cc65 to 2.18 [mef 2020-03-14]
	Updated devel/p5-Alien-Build to 2.12 [mef 2020-03-14]
	Updated devel/p5-Data-ObjectDriver to 0.19 [mef 2020-03-14]
	Updated net/unifi to 5.12.35 [gdt 2020-03-14]
	Updated editors/featherpad to 0.13.1 [gutteridge 2020-03-14]
	Updated archivers/arqiver to 0.4.0 [gutteridge 2020-03-14]
	Updated x11/xfce4-whiskermenu-plugin to 2.4.3 [gutteridge 2020-03-15]
	Updated sysutils/py-borgbackup to 1.1.11 [bsiegert 2020-03-15]
	Updated chat/matterircd to 0.19.4 [mef 2020-03-15]
	Updated pkgtools/pkglint to 19.4.11 [rillig 2020-03-15]
	Updated net/gallery-dl to 1.13.2 [leot 2020-03-15]
	Updated net/tigervnc to 1.10.1nb2 [wiz 2020-03-15]
	Updated chat/skypeweb-purple to 1.5 [mef 2020-03-15]
	Updated lang/openjdk-bin to 13.0.2 [ryoon 2020-03-15]
	Updated mail/thunderbird to 68.6.0 [ryoon 2020-03-15]
	Updated mail/thunderbird-l10n to 68.6.0 [ryoon 2020-03-15]
	Updated chat/toxcore to 0.2.10 [mef 2020-03-15]
	Added sysutils/u-boot-a20-olinuxino-micro-emmc version 2018.11 [uwe 2020-03-15]
	Added lang/ruby27-base version 2.7.0 [taca 2020-03-15]
	Added lang/ruby27 version 2.7.0 [taca 2020-03-15]
	Added sysutils/ruby-chef-utils version 15.8.23 [taca 2020-03-15]
	Updated archivers/ruby-zip to 2.3.0 [taca 2020-03-15]
	Updated devel/ruby-octokit to 4.17.0 [taca 2020-03-15]
	Updated devel/ruby-redmine to 4.0.6 [taca 2020-03-15]
	Updated devel/wayland to 1.18.0 [nia 2020-03-15]
	Updated devel/wayland-protocols to 1.20 [nia 2020-03-15]
	Updated wm/swc to 0.0.0.20200228 [nia 2020-03-15]
	Updated devel/ruby-redmine-flatly-light-theme to 0.2.4 [taca 2020-03-15]
	Updated devel/ruby-redmine-gitmike-theme to 1.2.0 [taca 2020-03-15]
	Removed lang/ruby22 [taca 2020-03-15]
	Removed lang/ruby22-base [taca 2020-03-15]
	Removed x11/ruby-tk-gem [taca 2020-03-15]
	Updated devel/ruby-rspec-expectations to 3.9.1 [taca 2020-03-15]
	Updated devel/ruby-rspec-rails to 3.9.1 [taca 2020-03-15]
	Updated devel/ruby-rugged to 0.99.0 [taca 2020-03-15]
	Updated devel/ruby-necromancer to 0.6.0 [taca 2020-03-15]
	Updated devel/ruby-tty-prompt to 0.21.0 [taca 2020-03-15]
	Added lang/ruby-cucumber-gherkin version 11.0.0 [taca 2020-03-15]
	Updated devel/ruby-protobuf-cucumber to 3.10.8 [taca 2020-03-15]
	Updated devel/ruby-cucumber-messages to 10.0.3 [taca 2020-03-15]
	Updated devel/ruby-cucumber-wire to 2.0.0 [taca 2020-03-15]
	Updated mail/neomutt to 20200313 [wiz 2020-03-15]
	Updated devel/p5-EV to 4.32 [tnn 2020-03-15]
	Updated devel/dconf to 0.36.0 [wiz 2020-03-15]
	Updated chat/farstream to 0.2.9 [wiz 2020-03-15]
	Updated devel/glib2 to 2.64.1 [wiz 2020-03-15]
	Updated security/libsecret to 0.20.2 [wiz 2020-03-15]
	Updated security/py-google-auth to 1.11.3 [wiz 2020-03-15]
	Updated lang/vala to 0.48.1 [wiz 2020-03-15]
	Updated graphics/adwaita-icon-theme to 3.36.0 [wiz 2020-03-15]
	Updated www/py-google-api-python-client to 1.8.0 [wiz 2020-03-15]
	Updated lang/perl5 to 5.30.2 [wiz 2020-03-15]
	Updated devel/abseil to 20200225.1 [adam 2020-03-15]
	Updated net/grpc to 1.27.3 [adam 2020-03-15]
	Updated textproc/py-ujson to 2.0.2 [adam 2020-03-15]
	Updated databases/py-apsw to 3.31.1 [adam 2020-03-15]
	Updated mail/dovecot2 to 2.3.10 [adam 2020-03-15]
	Updated mail/dovecot2-pigeonhole to 0.5.10 [adam 2020-03-15]
	Updated graphics/py-altgraph to 0.17 [adam 2020-03-15]
	Updated devel/py-macholib to 1.14 [adam 2020-03-15]
	Updated converters/help2man to 1.47.13 [adam 2020-03-15]
	Updated devel/py-importlib-resources to 1.3.1 [adam 2020-03-15]
	Added games/nudoku version 2.0.0 [fcambus 2020-03-16]
	Added devel/py-googleapis-common-protos version 1.51.0 [wiz 2020-03-16]
	Added devel/py-google-api-core version 1.16.0 [wiz 2020-03-16]
	Updated www/py-google-api-python-client to 1.8.0nb1 [wiz 2020-03-16]
	Updated www/ruby-selenium-webdriver to 3.142.7 [taca 2020-03-16]
	Updated sysutils/nnn to 3.0 [sjmulder 2020-03-16]
	Updated ham/trustedQSL to 2.5.1 [gdt 2020-03-16]
	Updated devel/meson to 0.53.2 [adam 2020-03-17]
	Updated devel/py-xdis to 4.2.3 [adam 2020-03-17]
	Updated sysutils/py-salt-pepper to 0.7.6 [adam 2020-03-17]
	Updated devel/py-coverage to 5.0.4 [adam 2020-03-17]
	Updated devel/SDL2 to 2.0.12 [nia 2020-03-17]
	Updated www/gitea to 1.11.3 [nia 2020-03-17]
	Updated graphics/gnuplot to 5.2.8nb5 [rin 2020-03-17]
	Updated graphics/openimageio to 1.8.15nb13 [ryoon 2020-03-17]
	Updated graphics/blender to 2.82a [ryoon 2020-03-17]
	Updated graphics/libansilove to 1.2.1 [fcambus 2020-03-17]
	Updated textproc/miller to 5.7.0 [fcambus 2020-03-17]
	Updated games/rocksndiamonds to 4.1.4.1 [adam 2020-03-17]
	Updated devel/ccache to 3.7.8 [adam 2020-03-17]
	Updated mail/pear-Mail_Mime to 1.10.7 [taca 2020-03-17]
	Updated databases/mysql57-client to 5.7.29 [adam 2020-03-17]
	Updated databases/mysql57-server to 5.7.29 [adam 2020-03-17]
	Updated databases/mysql56-client to 5.6.47 [adam 2020-03-17]
	Updated databases/mysql56-server to 5.6.47 [adam 2020-03-17]
	Updated net/powerdns to 4.2.1 [adam 2020-03-17]
	Updated net/powerdns-recursor to 4.3.0 [adam 2020-03-17]
	Updated finance/py-braintree to 4.0.0 [adam 2020-03-17]
	Updated devel/py-wrapt to 1.12.1 [adam 2020-03-17]
	Updated devel/py-jupyter_core to 4.6.3 [adam 2020-03-17]
	Updated lang/py-mypy to 0.770 [adam 2020-03-17]
	Added audio/dumb version 2.0.3 [nia 2020-03-17]
	Updated www/viewvc to 1.2.0 [wiz 2020-03-17]
	Updated geography/viking to 1.8 [gdt 2020-03-18]
	Added devel/allegro5 version 5.2.6.0 [nia 2020-03-18]
	Updated pkgtools/pkglint to 19.4.12 [rillig 2020-03-18]
	Updated lang/nodejs to 13.11.0 [adam 2020-03-18]
	Updated www/py-bleach to 3.1.3 [adam 2020-03-18]
	Updated audio/fasttracker2 to 1.13 [fox 2020-03-18]
	Updated devel/nss to 3.51 [ryoon 2020-03-18]
	Updated cad/verilator to 4.030 [ryoon 2020-03-18]
	Added news/bystand version 1.0.1 [baeuerle 2020-03-18]
	Updated devel/picotrace to 20200318 [kamil 2020-03-18]
	Updated net/tor to 0.4.2.7 [wiz 2020-03-18]
	Updated geography/py-proj to 2.6.0 [gdt 2020-03-18]
	Updated databases/gramps5 to 5.1.2nb2 [wiz 2020-03-18]
	Updated net/syncthing to 1.4.0 [gdt 2020-03-18]
	Updated emulators/tme to 0.8nb44 [rin 2020-03-19]
	Removed mail/imapproxy [nia 2020-03-19]
	Removed mail/up-imapproxy [nia 2020-03-19]
	Updated graphics/glfw to 3.3.2 [nia 2020-03-19]
	Updated mail/deforaos-mailer to 0.2.0nb4 [wiz 2020-03-19]
	Updated devel/deforaos-asm to 0.2.3nb4 [wiz 2020-03-19]
	Updated lang/guile22 to 2.2.7nb1 [wiz 2020-03-19]
	Updated devel/py-pygit2 to 1.1.1nb1 [wiz 2020-03-19]
	Updated devel/git to 2.25.2 [adam 2020-03-19]
	Added sysutils/tealdeer version 1.3.0 [bsiegert 2020-03-19]
	Updated geography/py-google-maps-services-python to 4.2.0 [ryoon 2020-03-20]
	Updated www/py-httpx to 0.12.1 [adam 2020-03-20]
	Updated textproc/py-elementpath to 1.4.3 [adam 2020-03-20]
	Updated lang/php73 to 7.3.16 [taca 2020-03-20]
	Updated lang/php74 to 7.4.4 [taca 2020-03-20]
	Updated lang/php72 to 7.2.29 [taca 2020-03-20]
	Updated lang/rust to 1.42.0nb1 [he 2020-03-20]
	Updated textproc/py-ICU to 2.4.3 [adam 2020-03-20]
	Updated devel/py-semantic_version to 2.8.4 [adam 2020-03-20]
	Updated audio/musicpd to 0.21.21 [nia 2020-03-20]
	Added graphics/wcslib version 7.2 [wiz 2020-03-20]
	Updated sysutils/neofetch to 7.0.0 [nia 2020-03-20]
	Updated net/libtorrent-rasterbar to 1.2.5 [nia 2020-03-20]
	Updated misc/py-anita to 2.3 [gson 2020-03-20]
	Updated misc/ruby-sprockets-rails to 3.2.1nb1 [taca 2020-03-20]
	Updated devel/ruby-shoulda-matchers to 3.1.3 [taca 2020-03-20]
	Updated www/ruby-jquery-rails to 4.3.5 [taca 2020-03-20]
	Updated devel/ruby-activesupport51 to 5.1.7 [taca 2020-03-20]
	Updated devel/ruby-activemodel51 to 5.1.7 [taca 2020-03-20]
	Updated devel/ruby-activejob51 to 5.1.7 [taca 2020-03-20]
	Updated www/ruby-actionview51 to 5.1.7 [taca 2020-03-20]
	Updated www/ruby-actionpack51 to 5.1.7 [taca 2020-03-20]
	Updated www/ruby-actioncable51 to 5.1.7 [taca 2020-03-20]
	Updated databases/ruby-activerecord51 to 5.1.7 [taca 2020-03-20]
	Updated mail/ruby-actionmailer51 to 5.1.7 [taca 2020-03-20]
	Updated devel/ruby-railties51 to 5.1.7 [taca 2020-03-20]
	Updated www/ruby-rails51 to 5.1.7 [taca 2020-03-20]
	Updated devel/ruby-activesupport52 to 5.2.4.2 [taca 2020-03-20]
	Updated devel/ruby-activemodel52 to 5.2.4.2 [taca 2020-03-20]
	Updated devel/ruby-activejob52 to 5.2.4.2 [taca 2020-03-20]
	Updated www/ruby-actionview52 to 5.2.4.2 [taca 2020-03-20]
	Updated www/ruby-actionpack52 to 5.2.4.2 [taca 2020-03-20]
	Updated www/ruby-actioncable52 to 5.2.4.2 [taca 2020-03-20]
	Updated databases/ruby-activerecord52 to 5.2.4.2 [taca 2020-03-20]
	Updated devel/ruby-activestorage52 to 5.2.4.2 [taca 2020-03-20]
	Updated mail/ruby-actionmailer52 to 5.2.4.2 [taca 2020-03-20]
	Updated devel/ruby-railties52 to 5.2.4.2 [taca 2020-03-20]
	Updated www/ruby-rails52 to 5.2.4.2 [taca 2020-03-20]
	Updated www/ruby-websocket-driver to 0.7.1 [taca 2020-03-20]
	Updated www/ruby-unicorn to 5.5.3 [taca 2020-03-20]
	Updated lang/erlang to 22.2.8 [nia 2020-03-20]
	Updated time/ruby-tzinfo-data to 1.2019.3 [taca 2020-03-20]
	Updated time/ruby-tzinfo to 2.0.1 [taca 2020-03-20]
	Updated time/ruby-tzinfo1 to 1.2.6 [taca 2020-03-20]
	Updated graphics/MesaLib to 20.0.2 [nia 2020-03-20]
	Updated time/ruby-tzinfo03 to 0.3.56 [taca 2020-03-20]
	Updated www/ruby-rack to 2.2.2 [taca 2020-03-20]
	Updated www/ruby-rack-cache to 1.10.0 [taca 2020-03-20]
	Updated www/ruby-rack-protection to 2.0.8.1 [taca 2020-03-20]
	Updated www/ruby-sinatra to 2.0.8.1 [taca 2020-03-20]
	Updated www/ruby-sinatra-contrib to 2.0.8.1 [taca 2020-03-20]
	Added www/ruby-sassc-rails version 2.1.2 [taca 2020-03-20]
	Updated games/minetest to 5.1.1 [nia 2020-03-20]
	Added devel/ruby-activesupport60 version 6.0.2.2 [taca 2020-03-20]
	Added devel/ruby-activemodel60 version 6.0.2.2 [taca 2020-03-20]
	Added devel/ruby-activejob60 version 6.0.2.2 [taca 2020-03-20]
	Added www/ruby-actionview60 version 6.0.2.2 [taca 2020-03-20]
	Added www/ruby-actionpack60 version 6.0.2.2 [taca 2020-03-20]
	Added databases/ruby-activerecord60 version 6.0.2.2 [taca 2020-03-20]
	Added mail/ruby-actionmailbox60 version 6.0.2.2 [taca 2020-03-20]
	Added mail/ruby-actionmailer60 version 6.0.2.2 [taca 2020-03-20]
	Added www/ruby-actioncable60 version 6.0.2.2 [taca 2020-03-20]
	Added devel/ruby-railties60 version 6.0.2.2 [taca 2020-03-20]
	Added devel/ruby-activestorage60 version 6.0.2.2 [taca 2020-03-20]
	Added textproc/ruby-actiontext60 version 6.0.2.2 [taca 2020-03-20]
	Added www/ruby-rails60 version 6.0.2.2 [taca 2020-03-20]
	Updated www/ruby-sass-rails to 6.0.0 [taca 2020-03-20]
	Updated www/ruby-sass to 3.7.4 [taca 2020-03-20]
	Updated www/ruby-rest-client to 2.1.0 [taca 2020-03-20]
	Updated www/ruby-raindrops to 0.19.1 [taca 2020-03-20]
	Updated www/ruby-rails-html-sanitizer to 1.3.0 [taca 2020-03-20]
	Updated www/ruby-patron to 0.13.3 [taca 2020-03-20]
	Updated www/ruby-net-http-persistent to 3.1.0 [taca 2020-03-20]
	Updated lang/go114 to 1.14.1 [bsiegert 2020-03-20]
	Updated security/gnupg2 to 2.2.20 [adam 2020-03-21]
	Updated time/py-icalendar to 4.0.5 [adam 2020-03-21]
	Updated textproc/py-regex to 2020.2.20 [adam 2020-03-21]
	Updated textproc/py-yaml to 5.3.1 [adam 2020-03-21]
	Updated www/py-flask-caching to 1.8.0 [adam 2020-03-21]
	Updated www/py-flask-restful to 0.3.8 [adam 2020-03-21]
	Removed lang/go112 [bsiegert 2020-03-21]
	Updated mail/neomutt to 20200320 [wiz 2020-03-21]
	Added time/py-snaptime version 0.2.4 [adam 2020-03-21]
	Updated textproc/py-humanize to 2.1.0 [adam 2020-03-21]
	Updated devel/p5-Alien-Build to 2.17 [mef 2020-03-21]
	Updated devel/p5-Config-GitLike to 1.18 [mef 2020-03-21]
	Updated devel/p5-Data-MessagePack to 1.01 [mef 2020-03-21]
	Updated time/py-pendulum to 2.1.0 [adam 2020-03-21]
	Updated time/py-maya to 0.6.1 [adam 2020-03-21]
	Updated devel/cmake to 3.17.0 [adam 2020-03-21]
	Updated devel/cmake-gui to 3.17.0 [adam 2020-03-21]
	Updated devel/p5-Date-Manip to 6.81 [mef 2020-03-21]
	Updated devel/p5-Devel-Leak-Object to 1.02 [mef 2020-03-21]
	Updated devel/p5-Devel-PPPort to 3.58 [mef 2020-03-21]
	Updated devel/p5-Devel-PatchPerl to 1.90 [mef 2020-03-21]
	Updated devel/p5-Dist-Zilla to 6.014 [mef 2020-03-21]
	Updated www/h2o to 2.2.6 [nia 2020-03-21]
	Updated devel/p5-ExtUtils-MakeMaker to 7.44 [mef 2020-03-21]
	Updated games/exchess to 7.97beta [rillig 2020-03-21]
	Removed databases/ruby-postgres_ext [taca 2020-03-21]
	Removed www/ruby-rails42 [taca 2020-03-21]
	Removed devel/ruby-railties42 [taca 2020-03-21]
	Removed mail/ruby-actionmailer42 [taca 2020-03-21]
	Removed databases/ruby-activerecord42 [taca 2020-03-21]
	Removed www/ruby-actionpack42 [taca 2020-03-21]
	Removed www/ruby-actionview42 [taca 2020-03-21]
	Removed devel/ruby-activemodel42 [taca 2020-03-21]
	Removed devel/ruby-activejob42 [taca 2020-03-21]
	Removed www/ruby-rails-deprecated_sanitizer [taca 2020-03-21]
	Removed textproc/ruby-rails-dom-testing1 [taca 2020-03-21]
	Removed devel/ruby-activesupport42 [taca 2020-03-21]
	Added www/ruby-coffee-rails4 version 4.2.2 [taca 2020-03-21]
	Updated www/ruby-coffee-rails to 5.0.0 [taca 2020-03-21]
	Removed databases/ruby-arel60 [taca 2020-03-21]
	Removed time/ruby-tzinfo03 [taca 2020-03-21]
	Removed www/ruby-rack-test06 [taca 2020-03-21]
	Removed www/ruby-rack-ssl [taca 2020-03-21]
	Removed www/ruby-rack14 [taca 2020-03-21]
	Updated lang/go113 to 1.13.9 [bsiegert 2020-03-21]
	Updated www/ruby-mustermann to 1.1.1 [taca 2020-03-21]
	Updated www/ruby-multipart-post to 2.1.1 [taca 2020-03-21]
	Updated www/ruby-liquid to 4.0.3 [taca 2020-03-21]
	Updated www/ruby-loofah to 2.4.0 [taca 2020-03-21]
	Updated textproc/py-ICU to 2.4.3nb1 [gutteridge 2020-03-21]
	Updated www/ruby-http-form_data to 2.3.0 [taca 2020-03-21]
	Updated www/ruby-faraday to 0.17.3 [taca 2020-03-21]
	Updated www/ruby-sawyer to 0.8.2 [taca 2020-03-21]
	Moved geography/py-google-maps-services-python to geography/py-googlemaps [adam 2020-03-21]
	Added sysutils/py-sh version 1.12.14 [adam 2020-03-21]
	Moved devel/py-python-dotenv to devel/py-dotenv [adam 2020-03-21]
	Updated devel/py-dotenv to 0.12.0 [adam 2020-03-21]
	Updated x11/qt5-qtwebkit to 5.212.0.alpha4 [nia 2020-03-21]
	Updated devel/p5-ExtUtils-CBuilder to 0.28.02.34 [mef 2020-03-21]
	Updated devel/p5-Error to 0.17029 [mef 2020-03-21]
	Updated devel/p5-ExtUtils-CppGuess to 0.21 [mef 2020-03-21]
	Added devel/p5-Test-Exit version 0.11 [mef 2020-03-21]
	Updated devel/p5-FFI-CheckLib to 0.26 [mef 2020-03-21]
	Updated devel/p5-File-Find-Object to 0.3.5 [mef 2020-03-21]
	Updated net/ruby-xdr to 3.0.0nb1 [taca 2020-03-22]
	Removed security/mbedtls1 successor security/mbedtls [nia 2020-03-22]
	Updated audio/audacious to 4.0 [nia 2020-03-22]
	Updated audio/audacious-plugins to 4.0 [nia 2020-03-22]
	Updated audio/game-music-emu to 0.6.3 [nia 2020-03-22]
	Updated audio/qsynth to 0.6.1 [nia 2020-03-22]
	Updated audio/snd to 20.2 [nia 2020-03-22]
	Updated games/yquake2 to 7.43 [nia 2020-03-22]
	Updated games/lgogdownloader to 3.6 [nia 2020-03-22]
	Updated games/lmarbles to 1.0.8 [nia 2020-03-22]
	Updated games/lpairs to 1.0.5 [nia 2020-03-22]
	Updated audio/qmmp to 1.3.6 [nia 2020-03-22]
	Updated time/ruby-timers to 4.3.0 [taca 2020-03-22]
	Updated time/ruby-hitimes to 2.0.0 [taca 2020-03-22]
	Updated net/dnscrypt-proxy2 to 2.0.40 [nia 2020-03-22]
	Updated time/ruby-iso8601 to 0.12.1 [taca 2020-03-22]
	Updated fonts/cantarell-fonts to 0.201 [nia 2020-03-22]
	Updated fonts/culmus to 0.133 [nia 2020-03-22]
	Updated fonts/overpass to 3.0.4 [nia 2020-03-22]
	Updated games/freeciv-share to 2.6.2 [nia 2020-03-22]
	Updated games/freeciv-client to 2.6.2 [nia 2020-03-22]
	Updated games/freeciv-server to 2.6.2 [nia 2020-03-22]
	Updated games/frotz to 2.51 [nia 2020-03-22]
	Updated editors/kakoune to 2020.01.16 [nia 2020-03-22]
	Updated audio/liblo to 0.31 [nia 2020-03-22]
	Updated net/py-lexicon to 3.3.18 [adam 2020-03-22]
	Updated www/py-pylint-django to 2.0.14 [adam 2020-03-22]
	Updated games/supertuxkart to 1.1 [nia 2020-03-22]
	Updated audio/twolame to 0.4.0 [nia 2020-03-22]
	Updated graphics/papirus-icon-theme to 20200301 [nia 2020-03-22]
	Updated devel/libev to 4.33 [nia 2020-03-22]
	Updated emulators/mednafen to 1.24.1 [nia 2020-03-22]
	Updated pkgtools/pkglint to 19.4.13 [rillig 2020-03-22]
	Updated graphics/ImageMagick to 7.0.10.1 [wiz 2020-03-22]
	Updated devel/catch2 to 2.11.3 [wiz 2020-03-22]
	Updated devel/glibmm to 2.64.1 [wiz 2020-03-22]
	Updated mail/gmime3 to 3.2.7 [wiz 2020-03-22]
	Updated databases/hiredis to 0.14.1 [wiz 2020-03-22]
	Updated security/openssl to 1.1.1e [wiz 2020-03-22]
	Updated devel/protobuf to 3.11.4 [wiz 2020-03-22]
	Updated graphics/qr-code-generator to 1.6.0 [wiz 2020-03-22]
	Updated devel/py-gobject3 to 3.36.0 [wiz 2020-03-22]
	Updated security/p5-Crypt-Rijndael to 1.14 [nia 2020-03-22]
	Updated security/p5-Crypt-Random to 1.52 [nia 2020-03-22]
	Updated time/p5-DateTime-TimeZone to 2.38 [nia 2020-03-22]
	Updated devel/p5-IO-Tty to 1.14 [nia 2020-03-22]
	Updated misc/libreoffice to 6.4.2.2 [ryoon 2020-03-22]
	Updated devel/p5-List-AllUtils to 0.16 [nia 2020-03-22]
	Updated mail/p5-MailTools to 2.21 [nia 2020-03-22]
	Updated net/p5-Net-DNS to 1.23 [nia 2020-03-22]
	Updated security/p5-Net-SSLeay to 1.88 [nia 2020-03-22]
	Updated security/p5-IO-Socket-SSL to 2.067 [nia 2020-03-22]
	Updated devel/p5-Scalar-List-Utils to 1.54 [nia 2020-03-22]
	Removed comms/asterisk-sounds-native [tnn 2020-03-22]
	Updated textproc/bat to 0.13.0 [fox 2020-03-22]
	Updated devel/editline to 3.1.20191231 [tnn 2020-03-22]
	Added finance/py-beancount version 2.2.3 [riastradh 2020-03-22]
	Added devel/p5-Config-Onion version 1.007 [riastradh 2020-03-23]
	Added textproc/p5-String-Interpolate version 0.32 [riastradh 2020-03-23]
	Added textproc/scdoc version 1.10.1 [riastradh 2020-03-23]
	Added finance/ledger2beancount version 2.0 [riastradh 2020-03-23]
	Updated graphics/gd to 2.3.0 [adam 2020-03-23]
	Updated devel/py-txaio to 20.3.1 [adam 2020-03-23]
	Updated textproc/py-xmlschema to 1.1.2 [adam 2020-03-23]
	Removed time/planner [nia 2020-03-23]
	Removed textproc/gnome-spell [nia 2020-03-23]
	Removed time/gnotime [nia 2020-03-23]
	Updated editors/codelite to 14.0 [nia 2020-03-23]
	Updated emulators/stella to 6.1 [nia 2020-03-23]
	Updated www/php-nextcloud to 18.0.2 [ryoon 2020-03-23]
	Updated audio/fasttracker2 to 1.14 [fox 2020-03-23]
	Updated editors/dasher to 5.0.0.b20200225 [nia 2020-03-23]
	Updated security/pear-Crypt_GPG to 1.6.4 [taca 2020-03-23]
	Updated www/tscrape to 0.4nb1 [leot 2020-03-23]
	Updated www/squidview to 0.86 [taca 2020-03-23]
	Updated databases/ruby-pg to 1.2.3 [taca 2020-03-23]
	Added archivers/php-pecl-zip version 1.18.2 [taca 2020-03-23]
	Updated devel/php-xdebug to 2.9.3 [taca 2020-03-23]
	Updated devel/ruby-cucumber-wire to 2.0.1 [taca 2020-03-23]
	Updated devel/ruby-metasm to 1.0.4 [taca 2020-03-23]
	Updated devel/ruby-tomlrb to 1.3.0 [taca 2020-03-23]
	Updated devel/ruby-power_assert to 1.1.7 [taca 2020-03-23]
	Updated misc/dialog to 1.3.20200228 [sborrill 2020-03-23]
	Updated devel/ruby-zeitwerk to 2.3.0 [taca 2020-03-23]
	Updated graphics/php-imagick to 3.4.4 [taca 2020-03-23]
	Updated misc/ruby-bundler to 2.1.4 [taca 2020-03-23]
	Added net/terraform version 0.12.24 [riastradh 2020-03-23]
	Updated misc/ruby-commander to 4.5.2 [taca 2020-03-23]
	Removed devel/ruby-highline17 [taca 2020-03-23]
	Updated finance/ledger2beancount to 2.0nb1 [riastradh 2020-03-23]
	Updated misc/ruby-launchy to 2.5.0 [taca 2020-03-23]
	Updated misc/ruby-method_source to 1.0.0 [taca 2020-03-23]
	Updated misc/ruby-pry to 0.13.0 [taca 2020-03-23]
	Updated graphics/ruby-RMagick to 4.1.0 [taca 2020-03-23]
	Updated misc/ruby-mimemagic to 0.3.4 [taca 2020-03-23]
	Updated misc/ruby-progressbar to 1.10.1 [taca 2020-03-23]
	Updated misc/ruby-slop to 4.8.0 [taca 2020-03-23]
	Updated net/ruby-net-ping to 2.0.6 [taca 2020-03-23]
	Updated devel/erlang-ezlib to 1.0.7 [nia 2020-03-23]
	Updated devel/erlang-base64url to 1.0.1 [nia 2020-03-23]
	Updated security/erlang-epam to 1.0.7 [nia 2020-03-23]
	Updated sysutils/erlang-goldrush to 0.2.0 [nia 2020-03-23]
	Updated security/erlang-jose to 1.10.1 [nia 2020-03-23]
	Updated textproc/expat to 2.2.9 [nia 2020-03-23]
	Updated security/py-acme to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-apache to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-digitalocean to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-dnsimple to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-dnsmadeeasy to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-gehirn to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-google to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-linode to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-luadns to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-nsone to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-ovh to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-rfc2136 to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-route53 to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-dns-sakuracloud to 1.3.0 [adam 2020-03-23]
	Updated security/py-certbot-nginx to 1.3.0 [adam 2020-03-23]
	Updated mail/spamassassin to 3.4.4 [gdt 2020-03-23]
	Updated emulators/fmsx to 5.4 [nia 2020-03-23]
	Updated graphics/gource to 0.51 [nia 2020-03-23]
	Updated graphics/libgdiplus to 6.0.4 [nia 2020-03-23]
	Updated textproc/liblrdf to 0.6.1 [nia 2020-03-23]
	Updated security/rvault to version 0.2 [rmind 2020-03-23]
	Updated editors/dhex to 0.69 [nia 2020-03-23]
	Updated pkgtools/pkglint to 20.1.0 [rillig 2020-03-23]
	Updated editors/beaver to 0.4.1 [nia 2020-03-23]
	Updated editors/dte to 1.9.1 [nia 2020-03-23]
	Updated net/youtube-dl to 20200324 [leot 2020-03-23]
	Updated games/ruby-squib to 0.15.3 [taca 2020-03-24]
	Updated textproc/py-ICU to 2.4.3nb2 [gutteridge 2020-03-24]
	Updated sysutils/py-crontab to 2.4.1 [adam 2020-03-24]
	Updated www/py-asgiref to 3.2.6 [adam 2020-03-24]
	Updated textproc/py-humanize to 2.2.0 [adam 2020-03-24]
	Updated finance/py-stripe to 2.44.0 [adam 2020-03-24]
	Updated devel/cdk to 5.0.20200228 [nia 2020-03-24]
	Added lang/neko version 2.3.0 [nia 2020-03-24]
	Updated lang/libduktape to 2.5.0 [nia 2020-03-24]
	Updated lang/duktape to 2.5.0 [nia 2020-03-24]
	Updated fonts/alee-ttf to 13.3 [nia 2020-03-24]
	Updated fonts/linux-libertine-ttf to 5.3.0 [nia 2020-03-24]
	Updated graphics/gifsicle to 1.92 [nia 2020-03-24]
	Updated databases/mongo-c-driver to 1.16.2 [adam 2020-03-24]
	Updated databases/mongodb to 4.2.5 [adam 2020-03-24]
	Updated net/lft to 3.80 [nia 2020-03-24]
	Updated graphics/libdmtx to 0.7.5 [nia 2020-03-24]
	Updated multimedia/libdvbpsi to 1.3.3 [nia 2020-03-24]
	Updated multimedia/libdvdnav to 6.1.0 [nia 2020-03-24]
	Updated devel/php-xdebug to 2.9.4 [taca 2020-03-24]
	Updated net/ruby-netaddr to 2.0.4 [taca 2020-03-24]
	Updated multimedia/libdvdread to 6.1.0 [nia 2020-03-24]
	Updated net/ruby-nio4r to 2.5.2 [taca 2020-03-24]
	Updated net/ruby-recog to 2.3.7 [taca 2020-03-24]
	Updated converters/libepubgen to 0.1.1 [nia 2020-03-24]
	Updated devel/libestr to 0.1.11 [nia 2020-03-24]
	Updated net/ruby-ruby_smb to 1.1.0 [taca 2020-03-24]
	Updated net/ruby-snmp to 1.3.2 [taca 2020-03-24]
	Updated net/ruby-train-core to 3.2.26 [taca 2020-03-24]
	Updated print/ruby-pdf-reader to 2.4.0 [taca 2020-03-24]
	Updated security/ruby-airbrussh to 1.4.0 [taca 2020-03-24]
	Updated security/ruby-bcrypt to 3.1.13 [taca 2020-03-24]
	Updated converters/libfreehand to 0.1.2 [nia 2020-03-24]
	Updated security/ruby-bcrypt_pbkdf to 1.0.1 [taca 2020-03-24]
	Updated emulators/emulationstation to 2.9.0 [nia 2020-03-24]
	Updated sysutils/liblogging to 1.0.6 [nia 2020-03-24]
	Updated security/ruby-metasploit-concern to 3.0.0 [taca 2020-03-24]
	Updated security/ruby-metasploit-payloads to 1.3.85 [taca 2020-03-24]
	Updated sysutils/liblognorm to 2.0.6 [nia 2020-03-24]
	Updated security/ruby-metasploit_payloads-mettle to 0.5.20 [taca 2020-03-24]
	Updated security/ruby-openssl-ccm to 1.2.2 [taca 2020-03-24]
	Updated security/ruby-rbnacl to 7.1.1 [taca 2020-03-24]
	Updated security/ruby-rex-bin_tools to 0.1.6 [taca 2020-03-24]
	Updated security/ruby-rex-exploitation to 0.1.22 [taca 2020-03-24]
	Updated security/ruby-rex-socket to 0.1.23 [taca 2020-03-24]
	Updated security/ruby-rex-struct2 to 0.1.2 [taca 2020-03-24]
	Updated security/ruby-rex-powershell to 0.1.87 [taca 2020-03-24]
	Updated security/ruby-sshkit to 1.21.0 [taca 2020-03-24]
	Updated devel/libftdi1 to 1.4 [nia 2020-03-24]
	Updated www/libmicrohttpd to 0.9.70 [nia 2020-03-24]
	Updated sysutils/capistrano to 3.12.1 [taca 2020-03-24]
	Updated sysutils/ruby-childprocess to 3.0.0 [taca 2020-03-24]
	Updated multimedia/libbluray to 1.2.0 [adam 2020-03-24]
	Updated print/ghostscript-agpl to 9.52 [adam 2020-03-24]
	Updated sysutils/ruby-listen to 3.2.1 [taca 2020-03-24]
	Updated textproc/ruby-erubi to 1.9.0 [taca 2020-03-24]
	Updated textproc/ruby-haml to 5.1.2 [taca 2020-03-24]
	Updated textproc/ruby-kramdown-parser-gfm to 1.1.0 [taca 2020-03-24]
	Updated devel/libstatgrab to 0.92 [nia 2020-03-24]
	Updated textproc/ruby-multi_json to 1.14.1 [taca 2020-03-24]
	Updated textproc/ruby-plist to 3.5.0 [taca 2020-03-24]
	Updated textproc/ruby-redcarpet to 3.5.0 [taca 2020-03-24]
	Updated textproc/ruby-safe_yaml to 1.0.5 [taca 2020-03-24]
	Updated converters/libstaroffice to 0.0.6 [nia 2020-03-24]
	Updated textproc/ruby-stringex to 2.8.5 [taca 2020-03-24]
	Updated textproc/ruby-temple to 0.8.2 [taca 2020-03-24]
	Updated devel/libthai to 0.1.28 [nia 2020-03-24]
	Updated devel/libstree to 0.4.2 [nia 2020-03-24]
	Removed textproc/ruby-tilt1 [taca 2020-03-24]
	Updated textproc/ruby-tilt to 2.0.10 [taca 2020-03-24]
	Updated math/libsvm to 3.24 [nia 2020-03-24]
	Updated textproc/ruby-yard to 0.9.24 [taca 2020-03-24]
	Updated textproc/ruby-unicode-display_width to 1.7.0 [taca 2020-03-24]
	Updated security/libtasn1 to 4.16.0 [nia 2020-03-24]
	Updated security/libykneomgr to 0.1.8 [nia 2020-03-24]
	Updated devel/ruby-mixlib-config to 3.0.6 [taca 2020-03-24]
	Updated textproc/lowdown to 0.6.2 [nia 2020-03-24]
	Updated devel/ruby-mixlib-cli to 2.1.5 [taca 2020-03-24]
	Updated devel/ruby-mixlib-log to 3.0.8 [taca 2020-03-24]
	Updated devel/ruby-mixlib-shellout to 3.0.9 [taca 2020-03-24]
	Updated wm/lwm to 1.2.4 [nia 2020-03-24]
	Updated misc/ruby-license-acceptance to 1.0.18 [taca 2020-03-24]
	Updated devel/lwp to 2.8 [nia 2020-03-24]
	Updated graphics/materia-gtk-theme to 20200320 [nia 2020-03-24]
	Updated sysutils/ruby-chef-config to 15.8.23 [taca 2020-03-24]
	Updated sysutils/ruby-chef-zero to 15.0.0 [taca 2020-03-24]
	Updated print/mpage to 2.5.7 [nia 2020-03-24]
	Updated textproc/ruby-will-paginate to 3.3.0 [taca 2020-03-24]
	Updated sysutils/ruby-specinfra to 2.82.12 [taca 2020-03-24]
	Updated sysutils/ruby-serverspec to 2.41.5 [taca 2020-03-24]
	Updated sysutils/ruby-chef to 15.8.23 [taca 2020-03-24]
	Updated textproc/mythes to 1.2.4 [nia 2020-03-24]
	Updated sysutils/ncdu to 1.14.2 [nia 2020-03-24]
	Updated sysutils/ruby-puppet-resource_api to 1.8.12 [taca 2020-03-24]
	Updated sysutils/puppet to 6.14.0 [taca 2020-03-24]
	Updated devel/ruby-thor to 1.0.1 [taca 2020-03-24]
	Updated sysutils/ruby-facter to 4.0.12 [taca 2020-03-24]
	Updated converters/libwpd to 0.10.3 [nia 2020-03-25]
	Updated converters/libwps to 0.4.10 [nia 2020-03-25]
	Updated converters/libwpg to 0.3.3 [nia 2020-03-25]
	Updated converters/libmwaw to 0.3.16 [nia 2020-03-25]
	Updated converters/libabw to 0.1.3 [nia 2020-03-25]
	Updated www/p5-CGI-Simple to 1.25 [nia 2020-03-25]
	mk/bsd.pkg.mk: started freeze for pkgsrc-2020Q1 branch [jperkin 2020-03-25]
	Updated devel/p5-Perl-Tidy to 20200110 [nia 2020-03-25]
	Updated devel/py-xdg to 0.26 [nia 2020-03-25]
	Updated audio/din to 45 [fox 2020-03-25]
	Added net/terraform-provider-aws version 2.54.0 [riastradh 2020-03-25]
	Updated net/py-gandi.cli to 1.5 [riastradh 2020-03-25]
	Updated lang/zig to 0.5.0 [nia 2020-03-25]
	Updated pkgtools/pkglint to 20.1.1 [rillig 2020-03-26]
	Updated sysutils/py-Glances to 3.1.4.1 [fox 2020-03-26]
	Updated lang/py-hy to 0.18.0 [adam 2020-03-27]
	Updated benchmarks/netio to 1.33 [jdolecek 2020-03-27]
	Updated databases/py-ldap to 3.2.0nb2 [gutteridge 2020-03-27]
	Updated devel/ncurses to 6.2nb1 [wiz 2020-03-28]
	Updated textproc/docbook-xsl to 1.79.2nb3 [wiz 2020-03-28]
	Updated security/libp11 to 0.4.4 [manu 2020-03-29]
	Updated security/pam-p11 to 0.3.1 [manu 2020-03-29]
	Updated textproc/ruby-nokogiri to 1.10.9nb1 [taca 2020-03-29]