summaryrefslogtreecommitdiff
path: root/doc/CHANGES-2020
blob: dbde1692aa74d7a6e3bd854465319f11728076e0 (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
$NetBSD: CHANGES-2020,v 1.1047 2020/02/12 14:12:26 fcambus 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/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]