summaryrefslogtreecommitdiff
path: root/doc/CHANGES-2019
blob: 9de5a20904411f849721f202c8ce1cbaf5982d52 (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
$NetBSD: CHANGES-2019,v 1.975 2019/03/01 23:06:45 tsutsui Exp $

Changes to the packages collection and infrastructure in 2019:

	Updated net/hub to 2.7.0 [leot 2019-01-01]
	Updated news/sfeed to 0.9.7 [leot 2019-01-01]
	Removed chat/xchat successor chat/hexchat [nia 2019-01-01]
	Updated finance/gnucash to 3.4 [wiz 2019-01-01]
	Updated finance/gnucash-docs to 3.4 [wiz 2019-01-01]
	Updated mail/qmail-rejectutils to 20181230nb1 [schmonz 2019-01-01]
	Added graphics/ipe version 7.2.7 [wiz 2019-01-01]
	Added emulators/dolphin-emu version 5.0 [nia 2019-01-01]
	Updated emulators/nestopia to 1.49 [nia 2019-01-01]
	Updated x11/gtk3 to 3.24.2 [leot 2019-01-01]
	Updated editors/mg to 20110905nb4 [wiz 2019-01-01]
	Updated net/gallery-dl to 1.6.2 [leot 2019-01-01]
	Updated emulators/snes9x to 1.58 [nia 2019-01-01]
	Updated emulators/snes9x-gtk to 1.58 [nia 2019-01-01]
	Updated finance/gnucash-docs to 3.4.0.1 [wiz 2019-01-01]
	Updated chat/gajim to 1.1.1 [nia 2019-01-01]
	Updated chat/gajim-plugin-omemo to 2.6.25 [nia 2019-01-01]
	Updated editors/kate to 4.14.3nb15 [gutteridge 2019-01-01]
	Added www/py-soupsieve version 1.6.1 [adam 2019-01-02]
	Updated www/py-beautifulsoup4 to 4.7.0 [adam 2019-01-02]
	Updated graphics/py-Pillow to 5.4.0 [adam 2019-01-02]
	Updated www/py-cheroot to 6.5.4 [adam 2019-01-02]
	Added emulators/libretro-mame2010 version 20180417 [nia 2019-01-02]
	Updated misc/rhash to 1.3.7 [adam 2019-01-02]
	Updated archivers/zstd to 1.3.8 [adam 2019-01-02]
	Updated devel/py-jupyter_client to 5.2.4 [adam 2019-01-02]
	Updated www/py-notebook to 5.7.4 [adam 2019-01-02]
	Updated x11/tint2 to 16.6.1 [tnn 2019-01-02]
	Updated devel/py-llvmlite to 0.27.0 [adam 2019-01-02]
	Updated math/py-numba to 0.42.0 [adam 2019-01-02]
	Updated devel/scons to 3.0.2 [tnn 2019-01-02]
	Updated textproc/serd to 0.30.0 [bsiegert 2019-01-02]
	Updated textproc/sord to 0.16.2 [bsiegert 2019-01-02]
	Updated emulators/libretro-ppsspp to 1.7.5 [nia 2019-01-02]
	Updated devel/go-viper to 1.3.1 [jmmv 2019-01-02]
	Updated devel/go-cobra to 0.0.3nb3 [jmmv 2019-01-02]
	Updated www/hugo to 0.53 [jmmv 2019-01-02]
	Updated emulators/libretro-reicast to 20181223 [nia 2019-01-02]
	Updated audio/lv2 to 1.14.0 [bsiegert 2019-01-02]
	Updated converters/sratom to 0.6.2 [bsiegert 2019-01-02]
	Updated audio/lilv to 0.24.4 [bsiegert 2019-01-02]
	Updated audio/libsoxr to 0.1.3 [bsiegert 2019-01-02]
	Updated devel/nsis to 3.04 [tnn 2019-01-02]
	Added sysutils/u-boot-bananapi-r2 version 2019.01-rc2 [thorpej 2019-01-02]
	Updated audio/suil to 0.10.2 [bsiegert 2019-01-03]
	Updated textproc/py-lxml to 4.2.6 [adam 2019-01-03]
	Updated databases/py-asyncpg to 0.18.3 [adam 2019-01-03]
	Updated devel/p5-MooseX-Role-Tempdir to 0.101 [wen 2019-01-03]
	Updated devel/p5-Package-Stash-XS to 0.29 [wen 2019-01-03]
	Updated devel/p5-Package-Stash to 0.38 [wen 2019-01-03]
	Updated mail/p5-Email-Address to 1.912 [wen 2019-01-03]
	Updated mail/p5-Mail-IMAPClient to 3.40 [wen 2019-01-03]
	Added devel/tevent version 0.9.37 [adam 2019-01-03]
	Updated databases/tdb to 1.3.16 [adam 2019-01-03]
	Updated net/synergy to 1.10.1 [tnn 2019-01-03]
	Updated lang/erlang to 21.2 [nia 2019-01-03]
	Updated lang/erlang to 21.2.2 [nia 2019-01-04]
	Updated graphics/glx-utils to 8.4.0 [tnn 2019-01-04]
	Updated graphics/MesaDemos to 8.4.0 [tnn 2019-01-04]
	Updated lang/librep to 0.92.7 [tnn 2019-01-04]
	Updated x11/rep-gtk2 to 0.90.8.3 [tnn 2019-01-04]
	Updated wm/sawfish to 1.12.0 [tnn 2019-01-04]
	Updated time/p5-DateTime-Calendar-Julian to 0.100 [wen 2019-01-04]
	Updated time/p5-DateTime-TimeZone to 2.23 [wen 2019-01-04]
	Updated time/p5-Time-Elapsed to 0.33 [wen 2019-01-04]
	Updated www/p5-Catalyst-Runtime to 5.90123 [wen 2019-01-04]
	Updated www/p5-Catalyst-Plugin-Session to 0.41 [wen 2019-01-04]
	Updated sysutils/py-crontab to 2.3.6 [adam 2019-01-04]
	Updated net/py-netifaces to 0.10.9 [adam 2019-01-04]
	Updated www/drupal8 to 8.6.5 [wen 2019-01-04]
	Updated www/p5-HTML-FormFu to 2.07 [wen 2019-01-04]
	Updated devel/py-bugzilla to 2.2.0 [adam 2019-01-04]
	Updated net/py-cares to 2.4.0 [adam 2019-01-04]
	Updated misc/stellarium to 0.18.3 [adam 2019-01-04]
	Updated www/nginx-devel to 1.15.8 [adam 2019-01-04]
	Updated emulators/gxemul to 0.6.1 [ryoon 2019-01-04]
	Updated chat/lurch-purple to 0.6.8 [nia 2019-01-04]
	Updated devel/cmake to 3.13.2nb1 [triaxx 2019-01-04]
	Updated x11/gtk3 to 3.24.2nb1 [leot 2019-01-04]
	Updated devel/cmake to 3.13.2nb2 [triaxx 2019-01-04]
	Updated multimedia/transcode to 1.1.7nb33 [triaxx 2019-01-04]
	Updated multimedia/mkvtoolnix to 30.0.0 [adam 2019-01-04]
	Updated devel/py-virtualenv to 16.2.0 [adam 2019-01-04]
	Updated textproc/py-lxml to 4.3.0 [adam 2019-01-04]
	Updated www/py-django2 to 2.1.5 [adam 2019-01-04]
	Updated www/py-django to 1.11.18 [adam 2019-01-04]
	Updated devel/py-xdis to 3.8.9 [adam 2019-01-04]
	Updated databases/py-barman to 2.5 [adam 2019-01-04]
	Updated devel/py-cachetools to 3.0.0 [adam 2019-01-04]
	Updated devel/py-intervaltree to 3.0.2 [adam 2019-01-04]
	Updated lang/py-uncompyle6 to 3.2.5 [adam 2019-01-04]
	Updated security/py-kerberos to 1.3.0 [adam 2019-01-04]
	Updated archivers/gtar-base to 1.31 [ryoon 2019-01-04]
	Updated archivers/gtar-info to 1.31 [ryoon 2019-01-04]
	Updated archivers/gtar to 1.31 [ryoon 2019-01-04]
	Updated inputmethod/libskk to 1.0.5 [ryoon 2019-01-04]
	Updated devel/libev to 4.25 [adam 2019-01-04]
	Updated devel/ccache to 3.5.1 [adam 2019-01-04]
	Updated devel/nasm to 2.14.02 [adam 2019-01-05]
	Updated www/py-WebOb to 1.8.5 [adam 2019-01-05]
	Updated mail/thunderbird to 60.4.0 [ryoon 2019-01-05]
	Updated lang/gcc7 to 7.4.0 [adam 2019-01-05]
	Updated lang/gcc7-libs to 7.4.0nb1 [adam 2019-01-05]
	Updated mail/thunderbird-l10n to 60.4.0 [ryoon 2019-01-05]
	Updated www/geckodriver to 0.23.0 [tnn 2019-01-05]
	Updated security/nacl to 20110221nb1 [schmonz 2019-01-05]
	Added net/djbdnscurve6 version 33 [schmonz 2019-01-05]
	Updated audio/musicpd to 0.21.4 [triaxx 2019-01-05]
	Updated graphics/rawtherapee to 5.5 [ryoon 2019-01-05]
	Updated converters/nkf to 2.15 [ryoon 2019-01-05]
	Updated converters/p5-nkf to 2.15 [ryoon 2019-01-05]
	Updated audio/fasttracker2 to 2.127 [fox 2019-01-05]
	Updated cad/gtkwave to 3.3.98 [mef 2019-01-05]
	Updated print/py-weasyprint to 44 [kleink 2019-01-05]
	Updated sysutils/nnn to 2.2 [bsiegert 2019-01-05]
	Updated net/miredo to 1.2.6 [schmonz 2019-01-05]
	Updated net/miredo to 1.2.6nb1 [schmonz 2019-01-06]
	Added textproc/py-isc_dhcp_leases version 0.9.1 [gutteridge 2019-01-06]
	Updated graphics/inkscape to 0.92.3 [markd 2019-01-06]
	Updated www/passenger to 5.3.7 [markd 2019-01-06]
	Updated www/ap2-passenger to 5.3.7 [markd 2019-01-06]
	Updated devel/protobuf to 3.6.1 [markd 2019-01-06]
	Updated devel/py-protobuf to 3.6.1 [markd 2019-01-06]
	Updated textproc/uriparser to 0.9.1 [bsiegert 2019-01-06]
	Updated databases/ruby-sequel to 5.16.0 [taca 2019-01-06]
	Updated devel/ZenTest to 4.11.2 [taca 2019-01-06]
	Updated net/rdesktop to 1.8.4 [tnn 2019-01-06]
	Updated net/ddclient to 3.8.3nb4 [schmonz 2019-01-06]
	Updated games/puzzles to 20181212 [rillig 2019-01-06]
	Added biology/canu version 1.8 [bacon 2019-01-07]
	Updated devel/py-hypothesis to 3.86.5 [adam 2019-01-07]
	Updated security/libsodium to 1.0.17 [adam 2019-01-07]
	Updated devel/py-test to 4.1.0 [adam 2019-01-07]
	Updated devel/py-test-cov to 2.6.1 [adam 2019-01-07]
	Updated multimedia/mkvtoolnix to 30.1.0 [adam 2019-01-07]
	Updated net/py-smb to 1.1.26 [adam 2019-01-07]
	Updated time/py-pytz to 2018.9 [adam 2019-01-07]
	Updated graphics/py-Pillow to 5.4.1 [adam 2019-01-07]
	Added www/py-django-timezone-field version 3.0 [adam 2019-01-07]
	Updated www/py-django-celery-beat to 1.4.0 [adam 2019-01-07]
	Updated net/djbdns-run to 20190107 [schmonz 2019-01-07]
	Updated x11/xcursorgen to 1.0.7 [wiz 2019-01-07]
	Updated emulators/mame to 0.205 [wiz 2019-01-07]
	Updated textproc/py-sphinxcontrib-bibtex to 0.4.2 [adam 2019-01-07]
	Updated www/py-paste to 3.0.6 [adam 2019-01-07]
	Updated misc/nyancat to 1.5.2 [leot 2019-01-07]
	Added www/py-flask-cors version 3.0.7 [kleink 2019-01-07]
	Updated lang/ocaml to 4.07.1nb1 [jaapb 2019-01-07]
	Updated net/openconnect to 8.01 [schmonz 2019-01-07]
	Updated net/vpnc-script to 20180226 [schmonz 2019-01-07]
	Updated devel/libtai to 0.60nb6 [schmonz 2019-01-08]
	Updated mail/mutt to 1.11.2 [tron 2019-01-08]
	Updated databases/py-peewee to 3.8.1 [adam 2019-01-08]
	Updated net/tor to 0.3.5.7 [adam 2019-01-08]
	Updated devel/py-test-assume to 1.2.1 [adam 2019-01-08]
	Updated devel/py-test-asyncio to 0.10.0 [adam 2019-01-08]
	Updated www/py-test-django to 3.4.5 [adam 2019-01-08]
	Updated devel/py-pkginfo to 1.5.0 [adam 2019-01-08]
	Updated www/py-beautifulsoup4 to 4.7.1 [adam 2019-01-08]
	Updated databases/py-apsw to 3.26.0 [adam 2019-01-08]
	Updated www/py-soupsieve to 1.6.2 [adam 2019-01-08]
	Updated sysutils/py-supervisor to 3.3.5 [adam 2019-01-08]
	Added net/py-prometheus_client version 0.5.0 [markd 2019-01-08]
	Updated devel/py-pyobjc to 5.1.2 [adam 2019-01-08]
	Updated net/sniproxy to 0.6.0 [wiedi 2019-01-08]
	Updated www/http-parser to 2.9.0 [adam 2019-01-08]
	Updated lang/nodejs to 10.15.0 [adam 2019-01-08]
	Updated lang/npm to 6.5.0 [adam 2019-01-08]
	Updated shells/bash to 5.0 [ryoon 2019-01-08]
	Updated security/keepassxc to 2.3.4 [ryoon 2019-01-08]
	Updated print/qpdf to 8.3.0 [ryoon 2019-01-08]
	Updated print/cups-filters to 1.21.6 [adam 2019-01-08]
	Updated net/djbdns-run to 20190108 [schmonz 2019-01-08]
	Updated www/py-aiohttp to 3.5.2 [adam 2019-01-08]
	Updated net/py-smb to 1.1.27 [adam 2019-01-08]
	Updated fonts/croscorefonts to 1.31.0 [bsiegert 2019-01-08]
	Added devel/py-pyobjc-framework-CoreServices version 5.1.2 [adam 2019-01-08]
	Updated wm/xfce4-wm to 4.13.1nb3 [gutteridge 2019-01-09]
	Updated devel/py-pkginfo to 1.5.0.1 [adam 2019-01-09]
	Updated textproc/py-docx to 0.8.10 [adam 2019-01-09]
	Updated time/py-aniso8601 to 4.1.0 [adam 2019-01-09]
	Updated time/py-arrow to 0.13.0 [adam 2019-01-09]
	Added archivers/py-bz2file version 0.98 [adam 2019-01-09]
	Updated devel/py-xopen to 0.4.0 [adam 2019-01-09]
	Updated devel/waf to 2.0.14 [adam 2019-01-09]
	Updated pkgtools/x11-links to 1.13 [jaapb 2019-01-09]
	Updated www/drupal8 to 8.6.5nb1 [prlw1 2019-01-09]
	Updated textproc/py-libxml2 to 2.9.8nb1 [wiz 2019-01-09]
	Updated math/gnumeric112 to 1.12.44nb1 [wiz 2019-01-09]
	Updated games/lgogdownloader to 3.4 [wiz 2019-01-09]
	Updated textproc/libxml2 to 2.9.9 [adam 2019-01-09]
	Updated textproc/libxslt to 1.1.33 [adam 2019-01-09]
	Updated textproc/py-libxml2 to 2.9.9 [adam 2019-01-09]
	Updated textproc/py-libxslt to 1.1.33 [adam 2019-01-09]
	Updated mail/qmail to 1.03nb43 [schmonz 2019-01-09]
	Added meta-pkgs/qmail-server version 1.0 [schmonz 2019-01-09]
	Updated devel/libtai to 0.60nb7 [schmonz 2019-01-10]
	Updated archivers/gzip to 1.10 [gutteridge 2019-01-10]
	Updated devel/py-xopen to 0.4.1 [adam 2019-01-10]
	Updated www/py-django-import-export to 1.2.0 [adam 2019-01-10]
	Updated www/firefox to 64.0.2 [ryoon 2019-01-10]
	Updated www/firefox-l10n to 64.0.2 [ryoon 2019-01-10]
	Added fonts/spleen version 1.0.3 [tnn 2019-01-10]
	Updated net/pen to 0.34.1 [schmonz 2019-01-10]
	Updated lang/ghc7 to 7.6.3nb13 [maya 2019-01-10]
	Updated chat/irssi to 1.1.2 [maya 2019-01-10]
	Updated graphics/MesaLib18 to 18.3.1 [tnn 2019-01-10]
	Updated audio/fasttracker2 to 2.129 [fox 2019-01-11]
	Updated www/py-autobahn to 19.1.1 [adam 2019-01-11]
	Updated www/py-aiohttp to 3.5.3 [adam 2019-01-11]
	Updated textproc/py-phonenumbers to 8.10.3 [adam 2019-01-11]
	Updated net/megatools to 1.10.2nb2 [leot 2019-01-11]
	Updated net/sniproxy to 0.6.0nb1 [schmonz 2019-01-11]
	Updated math/p5-Algorithm-Cluster to 1.57 [wen 2019-01-12]
	Updated math/p5-Math-BigInt-GMP to 1.6006 [wen 2019-01-12]
	Updated math/p5-Math-BigInt to 1.999816 [wen 2019-01-12]
	Updated devel/subversion to 1.10.4 [bsiegert 2019-01-12]
	Updated math/p5-Math-Prime-Util to 0.73 [wen 2019-01-12]
	Updated converters/p5-Cpanel-JSON-XS to 4.08 [wen 2019-01-12]
	Updated converters/p5-Unicode-Collate to 1.27 [wen 2019-01-12]
	Updated multimedia/adobe-flash-player to 32.0.0.114 [tsutsui 2019-01-12]
	Updated converters/p5-Unicode-EastAsianWidth to 1.40 [wen 2019-01-12]
	Updated misc/ruby-mini_portile2 to 2.4.0 [tsutsui 2019-01-12]
	Updated textproc/ruby-nokogiri to 1.10.0 [tsutsui 2019-01-12]
	Updated lang/php71 to 7.1.26 [taca 2019-01-12]
	Updated lang/php72 to 7.2.14 [taca 2019-01-12]
	Updated lang/php73 to 7.3.1 [taca 2019-01-12]
	Updated lang/php56 to 5.6.40 [taca 2019-01-12]
	Added print/tex-apacite version 6.03 [markd 2019-01-12]
	Added print/tex-apacite-doc version 6.03 [markd 2019-01-12]
	Added print/tex-biblatex-ieee version 1.2d [markd 2019-01-12]
	Added print/tex-biblatex-ieee-doc version 1.2d [markd 2019-01-12]
	Updated net/youtube-dl to 20190110 [leot 2019-01-12]
	Updated www/p5-HTTP-DAV to 0.49 [wen 2019-01-13]
	Updated www/p5-HTTP-OAI to 4.08 [wen 2019-01-13]
	Updated net/p5-SNMP-Info to 3.64 [wen 2019-01-13]
	Added security/go-mkcert version 1.2.0 [schmonz 2019-01-13]
	Updated emulators/bochs to 2.6.9 [ryoon 2019-01-13]
	Updated devel/py-test to 4.1.1 [adam 2019-01-13]
	Updated devel/py-test-forked to 1.0.1 [adam 2019-01-13]
	Updated devel/py-test-xdist to 1.26.0 [adam 2019-01-13]
	Updated devel/py-tox to 3.7.0 [adam 2019-01-13]
	Updated devel/ucommon to 7.0.0 [adam 2019-01-13]
	Updated net/ccrtp to 2.1.2nb5 [adam 2019-01-13]
	Updated pkgtools/pkglint to 5.6.11 [rillig 2019-01-13]
	Updated sysutils/sandboxctl to 1.1 [jmmv 2019-01-14]
	Updated pkgtools/pkg_comp to 2.1 [jmmv 2019-01-14]
	Removed meta-pkgs/php70-extensions [taca 2019-01-14]
	Removed lang/php70 [taca 2019-01-14]
	Updated meta-pkgs/bulk-medium to 20190114 [taca 2019-01-14]
	Updated biology/hisat2 to 2.1.0.23 [bacon 2019-01-15]
	Updated audio/fasttracker2 to 2.130 [fox 2019-01-15]
	Updated devel/cmake to 3.13.3 [adam 2019-01-15]
	Updated devel/ccache to 3.6 [adam 2019-01-15]
	Updated security/py-certbot to 0.30.0 [triaxx 2019-01-15]
	Updated security/py-acme to 0.30.0 [triaxx 2019-01-15]
	Added security/py-certbot-dns-route53 version 0.30.0 [triaxx 2019-01-15]
	Updated shells/xonsh to 0.8.8 [nonaka 2019-01-15]
	Updated devel/py-typed-ast to 1.2.0 [adam 2019-01-15]
	Updated devel/py-test-flake8 to 1.0.3 [adam 2019-01-15]
	Updated graphics/lcms2 to 2.9 [markd 2019-01-15]
	Updated net/py-lexicon to 3.0.8 [triaxx 2019-01-15]
	Updated devel/py-pyparsing to 2.3.1 [adam 2019-01-15]
	Updated devel/py-vine to 1.2.0 [adam 2019-01-15]
	Updated net/py-amqp to 2.4.0 [adam 2019-01-15]
	Updated devel/py-dulwich to 0.19.10 [adam 2019-01-15]
	Added security/py-certbot-dns-ovh version 0.30.0 [triaxx 2019-01-15]
	Updated databases/py-sqlalchemy to 1.2.16 [adam 2019-01-15]
	Updated databases/py-sqlalchemy-utils to 0.33.11 [adam 2019-01-15]
	Updated databases/py-alembic to 1.0.6 [adam 2019-01-15]
	Updated devel/py-typing-extensions to 3.7.2 [adam 2019-01-15]
	Added security/py-certbot-dns-sakuracloud version 0.30.0 [triaxx 2019-01-15]
	Added security/py-certbot-nginx version 0.30.0 [triaxx 2019-01-15]
	Updated news/tin to 2.4.3 [wiz 2019-01-15]
	Updated devel/py-test-fixture-config to 1.4.0 [adam 2019-01-15]
	Updated devel/py-test-shutil to 1.4.0 [adam 2019-01-15]
	Updated devel/py-test-virtualenv to 1.4.0 [adam 2019-01-15]
	Updated finance/py-stripe to 2.18.0 [adam 2019-01-15]
	Updated devel/talloc to 2.1.15 [adam 2019-01-15]
	Updated devel/tevent to 0.9.38 [adam 2019-01-15]
	Updated databases/tdb to 1.3.17 [adam 2019-01-15]
	Updated net/youtube-dl to 20190116 [leot 2019-01-15]
	Updated math/py-numpy to 1.16.0 [adam 2019-01-15]
	Updated devel/py-pluggy to 0.8.1 [adam 2019-01-15]
	Updated security/sudo to 1.8.27 [adam 2019-01-15]
	Updated net/wireshark to 2.6.6 [adam 2019-01-15]
	Updated www/py-aiohttp to 3.5.4 [adam 2019-01-15]
	Updated www/py-uwsgitop to 0.11 [adam 2019-01-15]
	Updated net/syncthing to 1.0.0 [wiz 2019-01-15]
	Updated security/py-certifi to 2018.11.29 [adam 2019-01-15]
	Updated www/py-w3lib to 1.20.0 [adam 2019-01-15]
	Updated www/moodle to 3.6.2 [wen 2019-01-15]
	Updated www/mediawiki to 1.32.0 [wen 2019-01-15]
	Updated security/netpgpverify to 20190111 [agc 2019-01-15]
	Updated security/libnetpgpverify to 20190111 [agc 2019-01-15]
	Updated devel/p5-Type-Tiny to 1.004004 [wen 2019-01-16]
	Updated devel/p5-Test2-Suite to 0.000117 [wen 2019-01-16]
	Updated devel/p5-Test-Simple to 1.302156 [wen 2019-01-16]
	Updated devel/p5-Test-CleanNamespaces to 0.24 [wen 2019-01-16]
	Updated devel/p5-Test-CheckManifest to 1.38 [wen 2019-01-16]
	Updated x11/gtk3 to 3.24.3 [adam 2019-01-16]
	Updated security/libassuan2 to 2.5.2 [adam 2019-01-16]
	Added net/py-pysendfile version 2.0.1 [adam 2019-01-16]
	Added net/py-pyftpdlib version 1.5.4 [adam 2019-01-16]
	Added filesystems/py-fs version 2.2.1 [adam 2019-01-16]
	Updated fonts/py-fonttools to 3.35.2 [adam 2019-01-16]
	Removed filesystems/py-filesystem successor filesystems/py-fs [adam 2019-01-16]
	Updated net/py-botocore to 1.12.79 [adam 2019-01-16]
	Updated net/py-boto3 to 1.9.79 [adam 2019-01-16]
	Updated net/py-awscli to 1.16.89 [adam 2019-01-16]
	Updated security/py-oauthlib to 3.0.0 [adam 2019-01-16]
	Updated security/py-requests-oauthlib to 1.2.0 [adam 2019-01-16]
	Added net/fstrm version 0.4.0 [he 2019-01-16]
	Added misc/sunwait version 0.8 [martin 2019-01-16]
	Updated print/atril to 1.21.1 [youri 2019-01-16]
	Updated meta-pkgs/mate to 1.21.0 [youri 2019-01-16]
	Added sysutils/arm-trusted-firmware-fiptool version 2.0 [martin 2019-01-16]
	Updated sysutils/caja to 1.21.3 [youri 2019-01-16]
	Updated sysutils/caja-extensions to 1.21.0 [youri 2019-01-16]
	Updated archivers/engrampa to 1.21.0 [youri 2019-01-16]
	Updated graphics/eom to 1.21.2 [youri 2019-01-16]
	Updated x11/libmatekbd to 1.21.0 [youri 2019-01-16]
	Updated audio/libmatemixer to 1.21.0 [youri 2019-01-16]
	Updated misc/libmateweather to 1.21.0 [youri 2019-01-16]
	Updated wm/marco to 1.21.1 [youri 2019-01-16]
	Updated x11/mate-applets to 1.21.1 [youri 2019-01-16]
	Updated misc/mate-calc to 1.21.0 [youri 2019-01-16]
	Updated x11/mate-control-center to 1.21.2 [youri 2019-01-16]
	Updated x11/mate-desktop to 1.21.2 [youri 2019-01-16]
	Updated net/go-dns to 1.1.3 [he 2019-01-16]
	Added net/go-framestream version 0.1.0 [he 2019-01-16]
	Added net/go-dnstap version 0.1.0 [he 2019-01-16]
	Updated graphics/mate-icon-theme to 1.21.1 [youri 2019-01-16]
	Updated x11/mate-indicator-applet to 1.20.1 [youri 2019-01-16]
	Updated multimedia/mate-media to 1.21.0 [youri 2019-01-16]
	Updated x11/mate-menus to 1.21.0 [youri 2019-01-16]
	Updated sysutils/mate-notification-daemon to 1.21.0 [youri 2019-01-16]
	Updated x11/mate-panel to 1.21.3 [youri 2019-01-16]
	Updated security/mate-polkit to 1.21.0 [youri 2019-01-16]
	Updated sysutils/mate-power-manager to 1.21.1 [youri 2019-01-16]
	Updated x11/mate-screensaver to 1.21.0 [youri 2019-01-16]
	Updated sysutils/mate-sensors-applet to 1.21.1 [youri 2019-01-16]
	Updated x11/mate-session-manager to 1.21.0 [youri 2019-01-16]
	Updated x11/mate-settings-daemon to 1.21.2 [youri 2019-01-16]
	Updated sysutils/mate-system-monitor to 1.21.1 [youri 2019-01-16]
	Updated x11/mate-terminal to 1.21.1 [youri 2019-01-16]
	Updated x11/mozo to 1.21.1 [youri 2019-01-16]
	Updated editors/pluma to 1.21.2 [youri 2019-01-16]
	Updated graphics/mate-themes to 3.22.18 [youri 2019-01-16]
	Updated misc/mate-utils to 1.21.1 [youri 2019-01-16]
	Updated sysutils/libfm to 1.3.1 [youri 2019-01-16]
	Updated sysutils/pcmanfm to 1.3.1 [youri 2019-01-16]
	Added sysutils/meson-tools version 0.1 [martin 2019-01-16]
	Updated graphics/gnuplot to 5.2.6 [adam 2019-01-16]
	Updated security/libgpg-error to 1.34 [adam 2019-01-16]
	Updated www/py-djangorestframework to 3.9.1 [adam 2019-01-16]
	Updated security/py-bcrypt to 3.1.6 [adam 2019-01-16]
	Updated x11/lxterminal to 0.3.2 [youri 2019-01-16]
	Updated sysutils/xfce4-thunar to 1.8.2 [gutteridge 2019-01-17]
	Updated textproc/xfce4-dict to 0.8.2 [gutteridge 2019-01-17]
	Updated x11/xfce4-settings to 4.13.5 [gutteridge 2019-01-17]
	Updated sysutils/decode-dimms to 0.0.20190109 [pgoyette 2019-01-17]
	Updated sysutils/tarsnap-gui to 1.0.2 [wiz 2019-01-17]
	Updated net/bind912 to 9.12.3pl1nb1 [he 2019-01-17]
	Updated www/php-nextcloud to 15.0.2 [ryoon 2019-01-17]
	Updated devel/py-setuptools_scm to 3.2.0 [adam 2019-01-17]
	Updated security/py-mohawk to 1.0.0 [adam 2019-01-17]
	Updated devel/git-lfs to 2.6.1 [tnn 2019-01-17]
	Updated net/nsd to 4.1.26 [prlw1 2019-01-17]
	Updated net/unbound to 1.8.3nb1 [he 2019-01-17]
	Updated devel/yarn to 1.13.0 [kleink 2019-01-17]
	Updated security/netpgpverify to 20190117 [agc 2019-01-17]
	Updated security/libnetpgpverify to 20190117 [agc 2019-01-17]
	Updated mail/msmtp to 1.8.2 [leot 2019-01-17]
	Updated net/ucspi-ssl to 0.999.10.7nb1 [schmonz 2019-01-17]
	Updated www/logswan to 2.0.3 [kamil 2019-01-17]
	Updated mail/qmail to 1.03nb44 [schmonz 2019-01-17]
	Updated sysutils/smartmontools to 7.0 [tnn 2019-01-18]
	Updated sysutils/dmidecode to 3.2nb3 [msaitoh 2019-01-18]
	Added security/scm-blackbox version 1.20181219 [tpaul 2019-01-18]
	Updated databases/py-peewee to 3.8.2 [adam 2019-01-18]
	Updated www/py-sanic to 18.12.0 [adam 2019-01-18]
	Updated devel/py-mercurial to 4.8.2 [adam 2019-01-18]
	Updated misc/py-asciinema to 2.0.2 [adam 2019-01-18]
	Updated devel/libcerf to 1.11 [adam 2019-01-18]
	Updated archivers/lzip to 1.21 [adam 2019-01-18]
	Updated archivers/lziprecover to 1.21 [adam 2019-01-18]
	Updated chat/ircII to 20190117 [adam 2019-01-18]
	Updated graphics/ristretto to 0.8.3 [youri 2019-01-18]
	Updated x11/xfce4-notifyd to 0.4.3 [youri 2019-01-18]
	Updated x11/xfce4-screenshooter to 1.9.3 [youri 2019-01-18]
	Updated misc/xfce4-calculator-plugin to 0.6.90 [youri 2019-01-18]
	Updated x11/xfce4-clipman-plugin to 1.4.3 [youri 2019-01-18]
	Updated sysutils/xfce4-mount-plugin to 1.1.3 [youri 2019-01-18]
	Updated multimedia/xfce4-mpc-plugin to 0.5.1 [youri 2019-01-18]
	Updated sysutils/xfce4-systemload-plugin to 1.2.2 [youri 2019-01-18]
	Updated sysutils/xfce4-verve-plugin to 2.0.0 [youri 2019-01-18]
	Updated misc/xfce4-weather-plugin to 0.9.0 [youri 2019-01-18]
	Updated x11/xfce4-whiskermenu-plugin to 2.3.0 [youri 2019-01-18]
	Updated sysutils/xfce4-thunar-vcs to 0.2.0 [youri 2019-01-18]
	Updated x11/xfce4-garcon to 0.6.2 [youri 2019-01-18]
	Updated x11/libxfce4util to 4.13.2 [youri 2019-01-18]
	Updated net/gallery-dl to 1.6.3 [leot 2019-01-18]
	Updated net/youtube-dl to 20190117 [leot 2019-01-18]
	Updated x11/xfce4-tumbler to 0.2.3 [youri 2019-01-18]
	Updated sysutils/xfce4-appfinder to 4.13.2 [youri 2019-01-18]
	Updated x11/xfce4-panel to 4.13.4 [youri 2019-01-18]
	Updated x11/xfce4-session to 4.13.1 [youri 2019-01-18]
	Updated devel/xfce4-conf to 4.13.6 [youri 2019-01-18]
	Updated x11/xfce4-desktop to 4.13.2 [youri 2019-01-18]
	Updated x11/xfce4-exo to 0.12.3 [youri 2019-01-18]
	Updated sysutils/xfce4-battery-plugin to 1.1.2 [youri 2019-01-18]
	Updated misc/ansiweather to 1.13.0 [kamil 2019-01-18]
	Updated textproc/jo to 1.2 [kamil 2019-01-18]
	Updated net/ucspi-ssl to 0.999.10.7nb2 [schmonz 2019-01-18]
	Updated mail/qmail-run to 20190118 [schmonz 2019-01-18]
	Updated security/openssh to 7.9.1 [tnn 2019-01-18]
	Updated net/hub to 2.7.1 [leot 2019-01-18]
	Updated sysutils/py-borgbackup to 1.1.8 [bsiegert 2019-01-18]
	Updated devel/acr to 1.7.0 [bsiegert 2019-01-18]
	Updated archivers/makeself to 2.4.0 [bsiegert 2019-01-18]
	Updated net/maradns to 2.0.16 [bsiegert 2019-01-18]
	Updated chat/matterircd to 0.18.4 [bsiegert 2019-01-18]
	Updated sysutils/mc to 4.8.22 [bsiegert 2019-01-18]
	Updated www/drupal7 to 7.62 [taca 2019-01-19]
	Updated www/drupal8 to 8.6.6 [taca 2019-01-19]
	Updated lang/rust to 1.32.0 [ryoon 2019-01-19]
	Updated devel/cbindgen to 0.6.8 [ryoon 2019-01-19]
	Updated www/nghttp2 to 1.36.0 [adam 2019-01-19]
	Updated devel/libuv to 1.25.0 [adam 2019-01-19]
	Updated wm/blackbox70 to 0.74 [gutteridge 2019-01-19]
	Updated security/pinentry-gtk2 to 1.1.0nb5 [wiz 2019-01-19]
	Updated security/py-cryptodome to 3.7.3 [adam 2019-01-20]
	Updated devel/py-packaging to 19.0 [adam 2019-01-20]
	Updated databases/ruby-pg to 1.1.4 [taca 2019-01-20]
	Updated devel/ruby-celluloid to 0.17.4 [taca 2019-01-20]
	Updated textproc/py-validators to 0.12.4 [adam 2019-01-20]
	Updated www/py-waitress to 1.2.0 [adam 2019-01-20]
	Updated devel/ruby-cucumber-messages to 2.0.0 [taca 2019-01-20]
	Updated lang/ruby-gherkin to 6.0.15 [taca 2019-01-20]
	Updated devel/ruby-cucumber-core to 4.0.0 [taca 2019-01-20]
	Updated devel/ruby-cucumber-wire to 1.0.0 [taca 2019-01-20]
	Updated devel/ruby-curses to 1.2.7 [taca 2019-01-20]
	Updated devel/ruby-fast_gettext to 2.0.0 [taca 2019-01-20]
	Updated devel/ruby-ffi to 1.10.0 [taca 2019-01-20]
	Updated devel/ruby-mocha to 1.8.0 [taca 2019-01-20]
	Updated devel/ruby-msgpack to 1.2.6 [taca 2019-01-20]
	Updated devel/ruby-rugged to 0.27.7 [taca 2019-01-20]
	Updated devel/ruby-stomp to 1.4.8 [taca 2019-01-20]
	Updated devel/ruby-stream to 0.5.2 [taca 2019-01-20]
	Updated devel/ruby-term-ansicolor to 1.7.1 [taca 2019-01-20]
	Updated math/ruby-roo to 2.8.0 [taca 2019-01-20]
	Updated misc/ruby-bundler to 1.17.3 [taca 2019-01-20]
	Updated misc/ruby-daemons to 1.3.1 [taca 2019-01-20]
	Updated misc/ruby-mimemagic to 0.3.3 [taca 2019-01-20]
	Updated net/ruby-xdr to 3.0.0 [taca 2019-01-20]
	Updated print/ruby-pdf-reader to 2.2.0 [taca 2019-01-20]
	Updated textproc/ruby-erubi to 1.8.0 [taca 2019-01-20]
	Updated time/ruby-hitimes to 1.3.1 [taca 2019-01-20]
	Updated www/ruby-selenium-webdriver to 3.141.0 [taca 2019-01-20]
	Updated sysutils/arm-trusted-firmware-fiptool to 2.0nb1 [wiz 2019-01-20]
	Updated www/links to 2.18 [leot 2019-01-20]
	Updated www/links-gui to 2.18 [leot 2019-01-20]
	Updated sysutils/xfce4-taskmanager to 1.2.2 [youri 2019-01-20]
	Updated security/bearssl to 0.6 [agc 2019-01-20]
	Updated databases/mysql55-client to 5.5.62nb1 [maya 2019-01-21]
	Updated databases/mysql56-client to 5.6.42nb1 [maya 2019-01-21]
	Updated databases/mysql57-client to 5.7.24nb2 [maya 2019-01-21]
	Updated chat/toxcore to 0.2.7 [maya 2019-01-21]
	Updated devel/py-daemon to 2.2.3 [adam 2019-01-21]
	Updated devel/py-flaky to 3.5.3 [adam 2019-01-21]
	Updated www/py-soupsieve to 1.7.2 [adam 2019-01-21]
	Updated graphics/py-qrcode to 6.1 [adam 2019-01-21]
	Updated editors/texstudio to 2.12.14 [markd 2019-01-21]
	Updated devel/py-wrapt to 1.11.1 [adam 2019-01-21]
	Updated lang/py-mypy to 0.660 [adam 2019-01-21]
	Updated news/flnews to 0.16 [wiz 2019-01-21]
	Updated devel/py-cython to 0.29.3 [adam 2019-01-21]
	Updated www/py-bleach to 3.1.0 [adam 2019-01-21]
	Updated security/py-argon2_cffi to 19.1.0 [adam 2019-01-21]
	Updated devel/py-daemonize to 2.5.0 [adam 2019-01-21]
	Added fonts/unicode-ucd version 11.0.0 [youri 2019-01-21]
	Updated lang/erlang to 21.2.3 [nia 2019-01-22]
	Updated devel/tradcpp to 0.5.3 [dholland 2019-01-22]
	Updated devel/bison to 3.0.5 [ryoon 2019-01-22]
	Updated lang/oracle-jre8 to 8.0.202 [ryoon 2019-01-22]
	Updated lang/oracle-jdk8 to 8.0.202 [ryoon 2019-01-22]
	Added mail/sieve-connect version 0.89 [plunky 2019-01-22]
	Updated devel/py-uvloop to 0.12.0 [adam 2019-01-22]
	Updated security/py-OpenSSL to 19.0.0 [adam 2019-01-22]
	Updated fonts/py-fonttools to 3.36.0 [adam 2019-01-22]
	Updated security/py-asyncssh to 1.15.1 [adam 2019-01-22]
	Updated print/py-reportlab to 3.5.13 [adam 2019-01-22]
	Updated www/py-django-filter to 2.1.0 [adam 2019-01-22]
	Updated www/py-django-admin-sortable2 to 0.7 [adam 2019-01-22]
	Updated devel/py-more-itertools to 5.0.0 [adam 2019-01-22]
	Updated devel/py-flexmock to 0.10.3 [adam 2019-01-22]
	Updated databases/py-mongo to 3.7.2 [adam 2019-01-22]
	Updated devel/py-doctor to 16.3.0 [adam 2019-01-22]
	Updated devel/py-logbook to 1.4.3 [adam 2019-01-22]
	Updated textproc/py-eradicate to 1.0 [adam 2019-01-22]
	Updated devel/py-entrypoints to 0.3 [adam 2019-01-22]
	Updated lang/npm to 6.6.0 [adam 2019-01-22]
	Added print/tex-etoc version 1.08p [markd 2019-01-22]
	Added print/tex-etoc-doc version 1.08p [markd 2019-01-22]
	Added print/tex-listofitems version 1.6 [markd 2019-01-22]
	Added print/tex-listofitems-doc version 1.6 [markd 2019-01-22]
	Added print/tex-newunicodechar version 1.2 [markd 2019-01-22]
	Added print/tex-newunicodechar-doc version 1.2 [markd 2019-01-22]
	Added print/tex-stackengine version 4.01 [markd 2019-01-22]
	Added print/tex-stackengine-doc version 4.01 [markd 2019-01-22]
	Updated print/tex-cleveref to 0.21.4 [markd 2019-01-22]
	Updated print/tex-cleveref-doc to 0.21.4 [markd 2019-01-22]
	Updated math/tex-apnum to 1.7 [markd 2019-01-22]
	Updated math/tex-apnum-doc to 1.7 [markd 2019-01-22]
	Updated print/tex-ifmtarg to 1.2b [markd 2019-01-22]
	Updated print/tex-ifmtarg-doc to 1.2b [markd 2019-01-22]
	Updated fonts/tex-mathalfa to 1.10 [markd 2019-01-22]
	Updated fonts/tex-mathalfa-doc to 1.10 [markd 2019-01-22]
	Updated mail/mutt to 1.11.2nb1 [wiz 2019-01-22]
	Updated devel/tclreadline to 2.1.0nb4 [he 2019-01-22]
	Updated www/apache-tomcat7 to 7.0.92 [ryoon 2019-01-22]
	Updated www/apache-tomcat85 to 8.5.37 [ryoon 2019-01-22]
	Added www/apache-tomcat9 version 9.0.14 [ryoon 2019-01-22]
	Updated geography/viking to 1.7 [gdt 2019-01-22]
	Updated net/dhcpcd to 7.1.0 [roy 2019-01-22]
	Removed fonts/unicode-ucd [youri 2019-01-22]
	Added sysutils/u-boot-odroid-c2 version 2018.11 [martin 2019-01-22]
	Updated net/openconnect to 8.02 [schmonz 2019-01-22]
	Updated x11/libdrm to 2.4.97 [wiz 2019-01-22]
	Updated print/tex-csquotes to 5.2d [markd 2019-01-23]
	Updated print/tex-csquotes-doc to 5.2d [markd 2019-01-23]
	Updated print/tex-chngcntr to 1.1a [markd 2019-01-23]
	Updated print/tex-chngcntr-doc to 1.1a [markd 2019-01-23]
	Updated fonts/tex-roboto to 2018 [markd 2019-01-23]
	Updated fonts/tex-roboto-doc to 2018 [markd 2019-01-23]
	Updated print/tex-zxjafont to 0.4 [markd 2019-01-23]
	Updated print/tex-zxjafont-doc to 0.4 [markd 2019-01-23]
	Updated print/tex-geometry to 5.8 [markd 2019-01-23]
	Updated print/tex-geometry-doc to 5.8 [markd 2019-01-23]
	Updated fonts/tex-dozenal to 7.2 [markd 2019-01-23]
	Updated fonts/tex-dozenal-doc to 7.2 [markd 2019-01-23]
	Updated print/tex-eso-pic to 2.0h [markd 2019-01-23]
	Updated print/tex-eso-pic-doc to 2.0h [markd 2019-01-23]
	Updated fonts/tex-ipaex-type1 to 0.5 [markd 2019-01-23]
	Updated fonts/tex-ipaex-type1-doc to 0.5 [markd 2019-01-23]
	Updated print/tex-tracklang to 1.3.6 [markd 2019-01-23]
	Updated print/tex-tracklang-doc to 1.3.6 [markd 2019-01-23]
	Updated graphics/tex-tikzsymbols to 4.10a [markd 2019-01-23]
	Updated graphics/tex-tikzsymbols-doc to 4.10a [markd 2019-01-23]
	Updated lang/erlang-man to 21.2 [nia 2019-01-23]
	Updated www/apache24 to 2.4.38 [adam 2019-01-23]
	Updated security/py-cryptography to 2.5 [adam 2019-01-23]
	Updated security/py-cryptography_vectors to 2.5 [adam 2019-01-23]
	Updated lang/erlang-doc to 21.2 [nia 2019-01-23]
	Updated devel/gdb to 8.1nb2 [kamil 2019-01-23]
	Updated lang/compiler-rt to 7.0.1nb1 [jperkin 2019-01-23]
	Updated lang/clang to 7.0.1nb1 [jperkin 2019-01-23]
	Updated fonts/tex-cabin to 2018 [markd 2019-01-23]
	Updated fonts/tex-cabin-doc to 2018 [markd 2019-01-23]
	Updated print/tex-siunitx to 2.7s [markd 2019-01-23]
	Updated print/tex-siunitx-doc to 2.7s [markd 2019-01-23]
	Updated devel/py-pip to 19.0.1 [adam 2019-01-24]
	Updated lang/npm to 6.7.0 [adam 2019-01-24]
	Updated textproc/py-openpyxl to 2.5.14 [adam 2019-01-24]
	Updated devel/py-flakes to 2.1.0 [adam 2019-01-24]
	Updated x11/ocaml-lablgtk to 2.18.7 [jaapb 2019-01-24]
	Updated www/wordpress to 5.0.3 [morr 2019-01-24]
	Updated net/haproxy to 1.8.17 [morr 2019-01-24]
	Updated editors/vim-share to 8.1.0800 [morr 2019-01-24]
	Updated print/tex-carlisle to 2018 [markd 2019-01-24]
	Updated print/tex-carlisle-doc to 2018 [markd 2019-01-24]
	Updated fonts/tex-newtx to 1.554 [markd 2019-01-24]
	Updated fonts/tex-newtx-doc to 1.554 [markd 2019-01-24]
	Updated print/tex-filecontents to 1.4 [markd 2019-01-24]
	Updated print/tex-filecontents-doc to 1.4 [markd 2019-01-24]
	Updated graphics/tex-venndiagram to 1.2 [markd 2019-01-24]
	Updated graphics/tex-venndiagram-doc to 1.2 [markd 2019-01-24]
	Updated fonts/tex-newtxsf to 1.051 [markd 2019-01-24]
	Updated fonts/tex-newtxsf-doc to 1.051 [markd 2019-01-24]
	Updated fonts/tex-stix to 1.1.3 [markd 2019-01-24]
	Updated fonts/tex-stix-doc to 1.1.3 [markd 2019-01-24]
	Updated fonts/tex-ly1 to 2018 [markd 2019-01-24]
	Updated fonts/tex-ly1-doc to 2018 [markd 2019-01-24]
	Updated print/tex-t2 to 2018.47870 [markd 2019-01-24]
	Updated print/tex-t2-doc to 2018.47870 [markd 2019-01-24]
	Updated devel/tex-doclicense to 1.8.0 [markd 2019-01-24]
	Updated devel/tex-doclicense-doc to 1.8.0 [markd 2019-01-24]
	Updated print/tex-unicode-data to 1.7 [markd 2019-01-24]
	Updated print/tex-unicode-data-doc to 1.7 [markd 2019-01-24]
	Updated fonts/tex-tex-gyre to 2.501 [markd 2019-01-24]
	Updated fonts/tex-tex-gyre-doc to 2.501 [markd 2019-01-24]
	Updated print/tex-mhchem to 4.08 [markd 2019-01-24]
	Updated print/tex-mhchem-doc to 4.08 [markd 2019-01-24]
	Updated fonts/tex-academicons to 1.8.62 [markd 2019-01-24]
	Updated fonts/tex-academicons-doc to 1.8.62 [markd 2019-01-24]
	Updated devel/py-configparser to 3.5.1 [adam 2019-01-24]
	Updated sysutils/py-psutil to 5.5.0 [adam 2019-01-24]
	Updated textproc/py-parse to 1.11.1 [adam 2019-01-24]
	Updated devel/py-faker to 1.0.2 [adam 2019-01-24]
	Added sysutils/py-salt-pepper version 0.7.5 [adam 2019-01-24]
	Updated www/py-soupsieve to 1.7.3 [adam 2019-01-24]
	Updated www/py-scrapy to 1.5.2 [adam 2019-01-24]
	Updated graphics/papirus-icon-theme to 20190106 [nia 2019-01-24]
	Updated net/obfs4proxy to 0.0.8 [alnsn 2019-01-24]
	Updated print/tex-ncctools to 3.5.2 [markd 2019-01-24]
	Updated print/tex-ncctools-doc to 3.5.2 [markd 2019-01-24]
	Updated print/tex-minitoc to 62 [markd 2019-01-24]
	Updated print/tex-minitoc-doc to 62 [markd 2019-01-24]
	Updated multimedia/x265 to 3.0 [adam 2019-01-25]
	Updated finance/py-braintree to 3.51.0 [adam 2019-01-25]
	Updated devel/py-configparser to 3.5.2 [adam 2019-01-25]
	Updated security/py-oauthlib to 3.0.1 [adam 2019-01-25]
	Updated textproc/p5-Encode to 2.99 [wen 2019-01-25]
	Updated textproc/p5-Pod-Tree to 1.30 [wen 2019-01-25]
	Updated textproc/p5-Text-CSV_XS to 1.38 [wen 2019-01-25]
	Updated textproc/p5-Text-CSV to 1.99 [wen 2019-01-25]
	Updated textproc/p5-Text-Template to 1.54 [wen 2019-01-25]
	Updated security/py-trustme to 0.5.0 [adam 2019-01-25]
	Updated textproc/py-jsonpickle to 1.1 [adam 2019-01-25]
	Updated net/youtube-dl to 20190124 [leot 2019-01-25]
	Updated pkgtools/mksandbox to 1.8 [agc 2019-01-25]
	Updated math/tex-unicode-math to 0.8m [markd 2019-01-25]
	Updated math/tex-unicode-math-doc to 0.8m [markd 2019-01-25]
	Updated print/tex-subfiles to 1.2 [markd 2019-01-25]
	Updated print/tex-subfiles-doc to 1.2 [markd 2019-01-25]
	Updated fonts/tex-alegreya to 2018.48339 [markd 2019-01-25]
	Updated fonts/tex-alegreya-doc to 2018.48339 [markd 2019-01-25]
	Updated print/tex-musixtex to 1.29 [markd 2019-01-25]
	Updated print/tex-musixtex-doc to 1.29 [markd 2019-01-25]
	Updated print/tex-marginnote to 1.4b [markd 2019-01-25]
	Updated print/tex-marginnote-doc to 1.4b [markd 2019-01-25]
	Updated fonts/tex-fontools to 2018.48387 [markd 2019-01-25]
	Updated fonts/tex-fontools-doc to 2018.48387 [markd 2019-01-25]
	Updated print/tex-context-vim to 2018.48391 [markd 2019-01-25]
	Updated print/tex-context-vim-doc to 2018.48391 [markd 2019-01-25]
	Updated print/tex-context-filter to 2018.48390 [markd 2019-01-25]
	Updated print/tex-context-filter-doc to 2018.48390 [markd 2019-01-25]
	Added devel/lua-cqueues version 20171014 [alnsn 2019-01-25]
	Updated textproc/p5-YAML-LibYAML to 0.76 [wen 2019-01-26]
	Updated textproc/p5-Unicode-LineBreak to 2019.001 [wen 2019-01-26]
	Updated textproc/p5-Text-Trac to 0.24 [wen 2019-01-26]
	Updated devel/p5-Test2-Suite to 0.000118 [wen 2019-01-26]
	Updated devel/p5-Test-Simple to 1.302160 [wen 2019-01-26]
	Updated devel/p5-Test-DependentModules to 0.27 [wen 2019-01-26]
	Updated print/tex-ptex-base to 2018 [markd 2019-01-26]
	Updated print/tex-ptex-base-doc to 2018 [markd 2019-01-26]
	Updated devel/tex-etoolbox to 2.5f [markd 2019-01-26]
	Updated devel/tex-etoolbox-doc to 2.5f [markd 2019-01-26]
	Updated print/tex-biblatex-ieee to 1.3 [markd 2019-01-26]
	Updated print/tex-biblatex-ieee-doc to 1.3 [markd 2019-01-26]
	Updated fonts/tex-kpfonts to 3.33 [markd 2019-01-26]
	Updated fonts/tex-kpfonts-doc to 3.33 [markd 2019-01-26]
	Updated fonts/tex-fira to 4.2.48488 [markd 2019-01-26]
	Updated fonts/tex-fira-doc to 4.2.48488 [markd 2019-01-26]
	Updated fonts/tex-xcharter to 1.116 [markd 2019-01-26]
	Updated fonts/tex-xcharter-doc to 1.116 [markd 2019-01-26]
	Updated print/tex-lettrine to 2.21 [markd 2019-01-26]
	Updated print/tex-lettrine-doc to 2.21 [markd 2019-01-26]
	Updated graphics/tex-pst-plot to 1.91 [markd 2019-01-26]
	Updated graphics/tex-pst-plot-doc to 1.91 [markd 2019-01-26]
	Updated print/tex-overpic to 1.2 [markd 2019-01-26]
	Updated print/tex-apa6 to 2.33 [markd 2019-01-26]
	Updated print/tex-apa6-doc to 2.33 [markd 2019-01-26]
	Updated print/tex-listings to 1.7 [markd 2019-01-26]
	Updated print/tex-listings-doc to 1.7 [markd 2019-01-26]
	Updated print/tex-csplain to 2018.48563 [markd 2019-01-26]
	Added print/tex-dehyph version 2018 [markd 2019-01-26]
	Updated print/tex-thumbpdf to 3.17 [markd 2019-01-26]
	Updated devel/p5-Term-Shell to 0.10 [wen 2019-01-26]
	Updated devel/p5-Term-ReadLine to 1.36 [wen 2019-01-26]
	Updated devel/p5-Term-ReadKey to 2.38 [wen 2019-01-26]
	Updated devel/p5-Module-ScanDeps to 1.27 [wen 2019-01-26]
	Added devel/p5-Data-Binary version 0.01 [wen 2019-01-26]
	Updated devel/p5-Module-CPANTS-Analyse to 0.99 [wen 2019-01-26]
	Updated devel/p5-Module-CoreList to 5.20190120 [wen 2019-01-26]
	Updated devel/p5-InlineX-C2XS to 0.26 [wen 2019-01-26]
	Updated devel/p5-Glib-Object-Introspection to 0.046 [wen 2019-01-26]
	Updated devel/p5-File-Which to 1.23 [wen 2019-01-26]
	Updated devel/p5-File-Temp to 0.2309 [wen 2019-01-26]
	Updated devel/p5-ExtUtils-MakeMaker-CPANfile to 0.09 [wen 2019-01-26]
	Updated print/tex-babel-french to 3.5c [markd 2019-01-26]
	Updated print/tex-breqn to 0.98f [markd 2019-01-26]
	Updated graphics/tex-epstopdf to 2.28 [markd 2019-01-26]
	Updated graphics/tex-epstopdf-doc to 2.28 [markd 2019-01-26]
	Updated graphics/tex-tkz-base to 1.16d [markd 2019-01-26]
	Updated graphics/tex-tkz-base-doc to 1.16d [markd 2019-01-26]
	Updated print/tex-pdftex to 2018 [markd 2019-01-26]
	Updated print/tex-pdftex-doc to 2018 [markd 2019-01-26]
	Updated print/tex-caption to 20181006 [markd 2019-01-26]
	Updated print/tex-caption-doc to 20181006 [markd 2019-01-26]
	Added print/tex-colorprofiles version 20181105 [markd 2019-01-26]
	Added print/tex-colorprofiles-doc version 20181105 [markd 2019-01-26]
	Updated fonts/tex-xits to 1.200.1 [markd 2019-01-26]
	Updated fonts/tex-xits-doc to 1.200.1 [markd 2019-01-26]
	Updated print/tex-europecv to 2018 [markd 2019-01-26]
	Updated print/tex-europecv-doc to 2018 [markd 2019-01-26]
	Updated textproc/tex-latexdiff to 1.3.0 [markd 2019-01-26]
	Updated textproc/tex-latexdiff-doc to 1.3.0 [markd 2019-01-26]
	Updated graphics/tex-tikzmark to 1.6 [markd 2019-01-26]
	Updated graphics/tex-tikzmark-doc to 1.6 [markd 2019-01-26]
	Updated print/tex-biblatex-nature to 1.3c [markd 2019-01-26]
	Updated print/tex-biblatex-nature-doc to 1.3c [markd 2019-01-26]
	Updated fonts/tex-cm to 2018.49028 [markd 2019-01-26]
	Updated fonts/tex-cm-doc to 2018.49028 [markd 2019-01-26]
	Updated print/tex-pdfcomment to 2.4a [markd 2019-01-26]
	Updated print/tex-pdfcomment-doc to 2.4a [markd 2019-01-26]
	Updated pkgtools/pkglint to 5.6.12 [rillig 2019-01-26]
	Updated graphics/sxiv to 25 [leot 2019-01-26]
	Added lang/libLLVM4 version 4.0.1 [tnn 2019-01-26]
	Updated lang/libLLVM to 7.0.1 [tnn 2019-01-26]
	Updated print/tex-hyphen-uppersorbian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-welsh to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-ukrainian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-turkmen to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-turkish to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-thai to 2018.49078 [markd 2019-01-26]
	Updated print/tex-hyphen-swedish to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-spanish to 4.5.2018 [markd 2019-01-26]
	Updated print/tex-hyphen-slovenian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-slovak to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-serbian to 1.0a.2018 [markd 2019-01-26]
	Updated print/tex-hyphen-sanskrit to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-russian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-romansh to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-romanian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-portuguese to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-polish to 3.0a.2018 [markd 2019-01-26]
	Updated print/tex-hyphen-piedmontese to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-norwegian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-mongolian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-lithuanian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-latvian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-latin to 3.1.2018.49078 [markd 2019-01-26]
	Updated print/tex-hyphen-kurmanji to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-italian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-irish to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-interlingua to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-indonesian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-indic to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-icelandic to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-hungarian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-greek to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-german to 2018.49078 [markd 2019-01-26]
	Updated print/tex-hyphen-georgian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-galician to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-friulan to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-french to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-finnish to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-ethiopic to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-estonian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-esperanto to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-english to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-dutch to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-danish to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-czech to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-croatian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-coptic to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-chinese to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-catalan to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-bulgarian to 2018.49078 [markd 2019-01-26]
	Updated print/tex-hyphen-basque to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-armenian to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-ancientgreek to 2018 [markd 2019-01-26]
	Updated print/tex-hyphen-afrikaans to 2018 [markd 2019-01-26]
	Updated print/tex-hyph-utf8 to 2018 [markd 2019-01-26]
	Updated print/tex-hyph-utf8-doc to 2018 [markd 2019-01-26]
	Updated print/tex-biblatex to 3.12 [markd 2019-01-27]
	Updated print/tex-biblatex-doc to 3.12 [markd 2019-01-27]
	Updated fonts/tex-fonts-tlwg to 0.7.1 [markd 2019-01-27]
	Updated fonts/tex-fonts-tlwg-doc to 0.7.1 [markd 2019-01-27]
	Updated fonts/tex-sourceserifpro to 1.4 [markd 2019-01-27]
	Updated fonts/tex-sourceserifpro-doc to 1.4 [markd 2019-01-27]
	Updated print/tex-babel to 3.27 [markd 2019-01-27]
	Updated print/tex-babel-doc to 3.27 [markd 2019-01-27]
	Updated graphics/tex-tikz-cd to 0.9f [markd 2019-01-27]
	Updated graphics/tex-tikz-cd-doc to 0.9f [markd 2019-01-27]
	Updated devel/ruby-gnome2-atk to 3.3.1 [tsutsui 2019-01-27]
	Updated devel/ruby-gnome2-gio to 3.3.1 [tsutsui 2019-01-27]
	Updated devel/ruby-gnome2-glib to 3.3.1 [tsutsui 2019-01-27]
	Updated devel/ruby-gnome2-gobject-introspection to 3.3.1 [tsutsui 2019-01-27]
	Updated devel/ruby-gnome2-pango to 3.3.1 [tsutsui 2019-01-27]
	Updated graphics/ruby-gnome2-cairo-gobject to 3.3.1 [tsutsui 2019-01-27]
	Updated graphics/ruby-gnome2-clutter to 3.3.1 [tsutsui 2019-01-27]
	Updated graphics/ruby-gnome2-clutter-gdk to 3.3.1 [tsutsui 2019-01-27]
	Updated graphics/ruby-gnome2-clutter-gtk to 3.3.1 [tsutsui 2019-01-27]
	Updated graphics/ruby-gnome2-gdk3 to 3.3.1 [tsutsui 2019-01-27]
	Updated graphics/ruby-gnome2-gdkpixbuf to 3.3.1 [tsutsui 2019-01-27]
	Updated graphics/ruby-gnome2-rsvg to 3.3.1 [tsutsui 2019-01-27]
	Updated multimedia/ruby-gnome2-clutter-gstreamer to 3.3.1 [tsutsui 2019-01-27]
	Updated multimedia/ruby-gnome2-gstreamer to 3.3.1 [tsutsui 2019-01-27]
	Updated print/ruby-gnome2-poppler to 3.3.1 [tsutsui 2019-01-27]
	Updated www/ruby-gnome2-webkit-gtk to 3.3.1 [tsutsui 2019-01-27]
	Updated www/ruby-gnome2-webkit-gtk2 to 3.3.1 [tsutsui 2019-01-27]
	Updated x11/ruby-gnome2-gtk to 3.3.1 [tsutsui 2019-01-27]
	Updated x11/ruby-gnome2-gtk3 to 3.3.1 [tsutsui 2019-01-27]
	Updated x11/ruby-gnome2-gtksourceview2 to 3.3.1 [tsutsui 2019-01-27]
	Updated x11/ruby-gnome2-gtksourceview3 to 3.3.1 [tsutsui 2019-01-27]
	Updated x11/ruby-gnome2-vte to 3.3.1 [tsutsui 2019-01-27]
	Updated time/p5-Business-Hours to 0.13 [wen 2019-01-27]
	Updated www/p5-URI to 1.76 [wen 2019-01-27]
	Updated www/p5-WWW-Mechanize to 1.91 [wen 2019-01-27]
	Updated www/p5-Test-WWW-Mechanize to 1.52 [wen 2019-01-27]
	Updated databases/p5-DBD-mysql to 4.050 [wen 2019-01-27]
	Updated databases/p5-DBD-SQLite to 1.62 [wen 2019-01-27]
	Updated databases/p5-DBD-SQLite2 to 0.38 [wen 2019-01-27]
	Updated devel/p5-Algorithm-Dependency to 1.111 [wen 2019-01-27]
	Updated print/tex-toptesi to 6.2.09 [markd 2019-01-27]
	Updated print/tex-toptesi-doc to 6.2.09 [markd 2019-01-27]
	Updated print/tex-todonotes to 1.1.1 [markd 2019-01-27]
	Updated print/tex-todonotes-doc to 1.1.1 [markd 2019-01-27]
	Updated print/tex-abntex2 to 1.9.7 [markd 2019-01-27]
	Updated print/tex-abntex2-doc to 1.9.7 [markd 2019-01-27]
	Updated print/tex-cweb to 3.70.49278 [markd 2019-01-27]
	Updated print/tex-cweb-doc to 3.70.49278 [markd 2019-01-27]
	Updated devel/p5-Alien-Build to 1.51 [wen 2019-01-27]
	Updated devel/p5-Alien-Base-ModuleBuild to 1.06 [wen 2019-01-27]
	Updated devel/p5-App-perlbrew to 0.86 [wen 2019-01-27]
	Updated devel/p5-Config-IniFiles to 3.000001 [wen 2019-01-27]
	Updated devel/p5-CPAN-Perl-Releases to 3.88 [wen 2019-01-27]
	Updated devel/p5-Devel-TraceUse to 2.096 [wen 2019-01-27]
	Updated converters/p5-JSON to 4.01 [wen 2019-01-27]
	Updated converters/p5-Unicode-Normalize to 1.26 [wen 2019-01-27]
	Updated net/p5-Net-FTPSSL to 0.41 [wen 2019-01-27]
	Updated net/p5-NetPacket to 1.7.0 [wen 2019-01-27]
	Updated www/p5-Hijk to 0.28 [wen 2019-01-27]
	Updated security/p5-Net-DNS-SEC to 1.11 [wen 2019-01-27]
	Updated devel/R-cli to 1.0.1 [wen 2019-01-27]
	Updated net/p5-Nmap-Parser to 1.37 [wen 2019-01-27]
	Updated misc/py-anita to 1.47 [gson 2019-01-27]
	Updated devel/p5-MouseX-Getopt to 0.38 [wen 2019-01-27]
	Updated shells/zsh to 5.7 [wen 2019-01-27]
	Updated devel/R-pkgconfig to 2.0.2 [wen 2019-01-27]
	Updated devel/R-rlang to 0.3.1 [wen 2019-01-27]
	Updated textproc/R-jsonlite to 1.6 [wen 2019-01-27]
	Updated devel/R-repr to 0.19.1 [wen 2019-01-27]
	Updated net/youtube-dl to 20190127 [leot 2019-01-27]
	Updated net/hub to 2.8.3 [leot 2019-01-27]
	Updated emulators/libretro-mgba to 0.7.0 [nia 2019-01-27]
	Updated pkgtools/digest to 20190127 [agc 2019-01-27]
	Updated devel/geany to 1.34.1 [gutteridge 2019-01-28]
	Updated devel/py-setuptools to 40.7.0 [adam 2019-01-28]
	Updated devel/py-virtualenv to 16.3.0 [adam 2019-01-28]
	Updated devel/py-test-virtualenv to 1.4.0nb1 [adam 2019-01-28]
	Updated devel/py-test-shutil to 1.4.0nb1 [adam 2019-01-28]
	Updated devel/py-test-fixture-config to 1.4.0nb1 [adam 2019-01-28]
	Updated devel/py-prompt_toolkit2 to 2.0.8 [adam 2019-01-28]
	Updated security/py-asn1-modules to 0.2.4 [adam 2019-01-28]
	Updated databases/py-sqlalchemy to 1.2.17 [adam 2019-01-28]
	Updated databases/py-alembic to 1.0.7 [adam 2019-01-28]
	Updated print/tex-oberdiek to 2018.49285 [markd 2019-01-28]
	Updated print/tex-oberdiek-doc to 2018.49285 [markd 2019-01-28]
	Updated print/tex-hyperref to 6.88e [markd 2019-01-28]
	Updated print/tex-hyperref-doc to 6.88e [markd 2019-01-28]
	Updated print/tex-platex to 2018.49292 [markd 2019-01-28]
	Updated print/tex-platex-doc to 2018.49292 [markd 2019-01-28]
	Updated print/tex-beamer to 3.55 [markd 2019-01-28]
	Updated print/tex-beamer-doc to 3.55 [markd 2019-01-28]
	Updated fonts/tex-ebgaramond to 2018 [markd 2019-01-28]
	Updated fonts/tex-ebgaramond-doc to 2018 [markd 2019-01-28]
	Updated print/tex-datatool to 2.31 [markd 2019-01-28]
	Updated print/tex-datatool-doc to 2.31 [markd 2019-01-28]
	Updated print/tex-tcolorbox to 4.15 [markd 2019-01-28]
	Updated print/tex-tcolorbox-doc to 4.15 [markd 2019-01-28]
	Updated print/tex-xstring to 1.81 [markd 2019-01-28]
	Updated print/tex-xstring-doc to 1.81 [markd 2019-01-28]
	Updated print/tex-latex to 20181201 [markd 2019-01-28]
	Updated print/tex-latex-doc to 20181201 [markd 2019-01-28]
	Updated print/tex-jsclasses to 2018.49387 [markd 2019-01-28]
	Updated print/tex-babel-german to 2.11 [markd 2019-01-28]
	Updated print/tex-amsmath to 2.17a.49390 [markd 2019-01-28]
	Updated print/tex-amsmath-doc to 2.17a.49390 [markd 2019-01-28]
	Updated print/tex-memoir to 3.7h [markd 2019-01-28]
	Updated print/tex-memoir-doc to 3.7h [markd 2019-01-28]
	Updated print/tex-colortbl to 1.0d [markd 2019-01-28]
	Updated print/tex-colortbl-doc to 1.0d [markd 2019-01-28]
	Updated misc/py-tqdm to 4.30.0 [adam 2019-01-28]
	Updated textproc/py-tabulate to 0.8.3 [adam 2019-01-28]
	Updated www/lighttpd to 1.4.53 [schmonz 2019-01-28]
	Updated devel/py-setuptools to 40.7.1 [adam 2019-01-29]
	Updated devel/py-test-xdist to 1.26.1 [adam 2019-01-29]
	Updated security/libgpg-error to 1.35 [adam 2019-01-29]
	Updated www/py-djangocms-admin-style to 1.3.0 [adam 2019-01-29]
	Updated graphics/ImageMagick to 7.0.8.25 [leot 2019-01-29]
	Updated graphics/p5-PerlMagick to 7.0.8.25 [leot 2019-01-29]
	Updated graphics/libwebp to 1.0.2 [adam 2019-01-29]
	Updated databases/py-redis to 3.1.0 [adam 2019-01-29]
	Updated fonts/tex-adobemapping to 2018.49423 [markd 2019-01-29]
	Updated print/tex-vertbars to 1.0c [markd 2019-01-29]
	Updated graphics/tex-pst-math to 0.65 [markd 2019-01-29]
	Updated graphics/tex-pst-math-doc to 0.65 [markd 2019-01-29]
	Updated fonts/tex-newpx to 1.33 [markd 2019-01-29]
	Updated fonts/tex-newpx-doc to 1.33 [markd 2019-01-29]
	Updated print/tex-continue to 0.2 [markd 2019-01-29]
	Updated print/tex-continue-doc to 0.2 [markd 2019-01-29]
	Updated print/tex-changes to 3.1.1 [markd 2019-01-29]
	Updated print/tex-changes-doc to 3.1.1 [markd 2019-01-29]
	Updated graphics/tex-animate to 20181219 [markd 2019-01-29]
	Updated graphics/tex-animate-doc to 20181219 [markd 2019-01-29]
	Updated graphics/tex-metapost to 1.803pl49482 [markd 2019-01-29]
	Updated graphics/tex-metapost-doc to 1.803pl49482 [markd 2019-01-29]
	Updated textproc/tex-lwarp to 0.65 [markd 2019-01-29]
	Updated textproc/tex-lwarp-doc to 0.65 [markd 2019-01-29]
	Updated fonts/tex-countriesofeurope to 0.22 [markd 2019-01-29]
	Updated fonts/tex-countriesofeurope-doc to 0.22 [markd 2019-01-29]
	Updated graphics/tex-pst-text to 1.02 [markd 2019-01-29]
	Updated graphics/tex-pst-text-doc to 1.02 [markd 2019-01-29]
	Updated print/tex-nomencl to 5.0 [markd 2019-01-29]
	Updated print/tex-nomencl-doc to 5.0 [markd 2019-01-29]
	Updated print/tex-xltxtra to 0.7 [markd 2019-01-29]
	Updated print/tex-xltxtra-doc to 0.7 [markd 2019-01-29]
	Updated print/tex-multirow to 2.4 [markd 2019-01-29]
	Updated print/tex-multirow-doc to 2.4 [markd 2019-01-29]
	Updated devel/tex-latexbug to 1.0e [markd 2019-01-29]
	Updated devel/tex-latexbug-doc to 1.0e [markd 2019-01-29]
	Updated print/tex-ocgx2 to 0.40 [markd 2019-01-29]
	Updated print/tex-ocgx2-doc to 0.40 [markd 2019-01-29]
	Updated print/tex-media9 to 0.94 [markd 2019-01-29]
	Updated print/tex-media9-doc to 0.94 [markd 2019-01-29]
	Updated print/tex-koma-script to 3.26a [markd 2019-01-29]
	Updated print/tex-fixme to 4.5 [markd 2019-01-29]
	Updated print/tex-fixme-doc to 4.5 [markd 2019-01-29]
	Updated graphics/tex-mcf2graph to 4.35 [markd 2019-01-29]
	Updated graphics/tex-mcf2graph-doc to 4.35 [markd 2019-01-29]
	Updated fonts/tex-fpl to 1.003 [markd 2019-01-29]
	Updated fonts/tex-fpl-doc to 1.003 [markd 2019-01-29]
	Updated devel/js_of_ocaml to 3.3.0 [jaapb 2019-01-29]
	Updated www/ocsigen to 2.11.0 [jaapb 2019-01-29]
	Updated devel/nss to 3.42 [ryoon 2019-01-29]
	Updated www/eliom to 6.6.0 [jaapb 2019-01-29]
	Updated www/ocsigen-toolkit to 2.0.0 [jaapb 2019-01-29]
	Added devel/ocaml-resource-pooling version 0.6 [jaapb 2019-01-29]
	Updated www/ocsigen-start to 1.5.0 [jaapb 2019-01-29]
	Updated www/py-waitress to 1.2.1 [adam 2019-01-29]
	Updated textproc/py-regex to 2019.01.24 [adam 2019-01-29]
	Updated net/nsd to 4.1.26nb1 [ryoon 2019-01-29]
	Updated net/knot to 2.7.6 [ryoon 2019-01-29]
	Updated emulators/qemu to 3.1.0nb3 [martin 2019-01-29]
	Updated www/firefox to 65.0 [ryoon 2019-01-29]
	Updated x11/gtk3 to 3.24.4 [leot 2019-01-29]
	Updated fonts/harfbuzz to 2.3.0 [bsiegert 2019-01-29]
	Updated print/tex-schwalbe-chess to 2.3 [markd 2019-01-29]
	Updated print/tex-schwalbe-chess-doc to 2.3 [markd 2019-01-29]
	Updated print/tex-adjustbox to 1.2 [markd 2019-01-29]
	Updated print/tex-adjustbox-doc to 1.2 [markd 2019-01-29]
	Updated print/tex-lipsum to 2.2 [markd 2019-01-29]
	Updated print/tex-lipsum-doc to 2.2 [markd 2019-01-29]
	Updated print/tex-pgf to 3.1 [markd 2019-01-29]
	Updated print/tex-pgf-doc to 3.1 [markd 2019-01-29]
	Updated audio/din to 39.0.1 [fox 2019-01-30]
	Updated audio/fasttracker2 to 2.132 [fox 2019-01-30]
	Added chat/inspircd version 2.0.27 [nia 2019-01-30]
	Updated sysutils/noice to 0.7 [leot 2019-01-30]
	Updated devel/tex-l3packages to 2018.48935 [markd 2019-01-30]
	Updated devel/tex-l3packages-doc to 2018.48935 [markd 2019-01-30]
	Updated devel/tex-l3kernel to 2018.49704 [markd 2019-01-30]
	Updated devel/tex-l3kernel-doc to 2018.49704 [markd 2019-01-30]
	Updated devel/tex-l3experimental to 2018.49205 [markd 2019-01-30]
	Updated print/tex-updmap-map to 2018.49586 [markd 2019-01-30]
	Updated print/tex-babel-italian to 1.4.01 [markd 2019-01-30]
	Updated print/tex-glossaries to 4.42 [markd 2019-01-30]
	Updated print/tex-glossaries-doc to 4.42 [markd 2019-01-30]
	Updated print/tex-tools to 2018.49619 [markd 2019-01-30]
	Updated print/tex-tools-doc to 2018.49619 [markd 2019-01-30]
	Updated print/tex-tex4ebook to 0.2b [markd 2019-01-30]
	Updated print/tex-tex4ebook-doc to 0.2b [markd 2019-01-30]
	Updated graphics/tex-pstricks to 2.94 [markd 2019-01-30]
	Updated graphics/tex-pstricks-doc to 2.94 [markd 2019-01-30]
	Updated print/tex-make4ht to 0.2d [markd 2019-01-30]
	Updated print/tex-make4ht-doc to 0.2d [markd 2019-01-30]
	Updated graphics/tex-pstricks-add to 3.87 [markd 2019-01-30]
	Updated graphics/tex-pstricks-add-doc to 3.87 [markd 2019-01-30]
	Updated print/tex-csbulletin to 1.2 [markd 2019-01-30]
	Updated print/tex-csbulletin-doc to 1.2 [markd 2019-01-30]
	Updated print/tex-babel-serbianc to 3.0 [markd 2019-01-30]
	Updated print/tex-tabu to 2.9 [markd 2019-01-30]
	Updated print/tex-tabu-doc to 2.9 [markd 2019-01-30]
	Updated print/tex-europasscv to 2018.49703 [markd 2019-01-30]
	Updated print/tex-europasscv-doc to 2018.49703 [markd 2019-01-30]
	Updated print/tex-enumitem to 3.7 [markd 2019-01-30]
	Updated print/tex-enumitem-doc to 3.7 [markd 2019-01-30]
	Updated print/tex-babel-hungarian to 1.5c.49701 [markd 2019-01-30]
	Updated math/tex-fp to 2.1d [markd 2019-01-30]
	Updated math/tex-fp-doc to 2.1d [markd 2019-01-30]
	Updated print/tex-fancyvrb to 3.2a [markd 2019-01-30]
	Updated print/tex-fancyvrb-doc to 3.2a [markd 2019-01-30]
	Updated fonts/tex-erewhon to 1.091 [markd 2019-01-30]
	Updated fonts/tex-erewhon-doc to 1.091 [markd 2019-01-30]
	Updated print/tex-elsarticle to 3.1 [markd 2019-01-30]
	Updated print/tex-elsarticle-doc to 3.1 [markd 2019-01-30]
	Updated print/tex-parskip to 2.0c [markd 2019-01-30]
	Updated print/tex-parskip-doc to 2.0c [markd 2019-01-30]
	Updated devel/tex-lualibs to 2.62 [markd 2019-01-30]
	Updated devel/tex-lualibs-doc to 2.62 [markd 2019-01-30]
	Updated fonts/tex-fontspec to 2.6l [markd 2019-01-30]
	Updated fonts/tex-fontspec-doc to 2.6l [markd 2019-01-30]
	Updated print/tex-tex4ht to 2018.49753 [markd 2019-01-30]
	Updated print/tex-tex4ht-doc to 2018.49753 [markd 2019-01-30]
	Updated print/tex-revtex to 4.2c [markd 2019-01-30]
	Updated print/tex-revtex-doc to 4.2c [markd 2019-01-30]
	Updated fonts/tex-luaotfload to 2.94 [markd 2019-01-30]
	Updated fonts/tex-luaotfload-doc to 2.94 [markd 2019-01-30]
	Added textproc/libxlsxwriter version 0.8.4 [leot 2019-01-30]
	Added math/sc-im version 0.7.0 [leot 2019-01-30]
	Updated devel/p5-Ouch to 0.0501 [schmonz 2019-01-30]
	Updated chat/znc to 1.7.2 [nia 2019-01-30]
	Updated chat/py-nbxmpp to 0.6.9 [nia 2019-01-30]
	Updated chat/gajim to 1.1.2 [nia 2019-01-30]
	Updated chat/gajim-plugin-omemo to 2.6.26 [nia 2019-01-30]
	Updated devel/py-typed-ast to 1.3.0 [adam 2019-01-30]
	Updated devel/py-codestyle to 2.5.0 [adam 2019-01-30]
	Updated devel/py-flake8 to 3.7.1 [adam 2019-01-30]
	Updated devel/py-flake8 to 3.7.3 [adam 2019-01-31]
	Updated www/py-django-admin-rangefilter to 0.3.11 [adam 2019-01-31]
	Updated www/py-django-extensions to 2.1.5 [adam 2019-01-31]
	Updated devel/py-anytree to 2.5.0 [adam 2019-01-31]
	Updated lang/nodejs to 10.15.1 [adam 2019-01-31]
	Updated www/py-scrapy to 1.6.0 [adam 2019-01-31]
	Updated archivers/unrar to 5.7.1 [adam 2019-01-31]
	Updated devel/py-cachetools to 3.1.0 [adam 2019-01-31]
	Updated databases/py-ldap3 to 2.5.2nb1 [leot 2019-01-31]
	Updated emulators/qemu to 3.1.0nb4 [martin 2019-01-31]
	Updated devel/doxygen to 1.8.15 [wiz 2019-01-31]
	Updated devel/py-setuptools to 40.7.2 [adam 2019-02-01]
	Updated devel/py-flake8 to 3.7.4 [adam 2019-02-01]
	Updated devel/py-test-flake8 to 1.0.4 [adam 2019-02-01]
	Updated math/py-numpy to 1.16.1 [adam 2019-02-01]
	Updated emulators/libretro-fceumm to 20190106 [nia 2019-02-01]
	Updated emulators/libretro-cap32 to 20190128 [nia 2019-02-01]
	Updated devel/py-test to 4.2.0 [adam 2019-02-01]
	Updated devel/py-hypothesis to 4.4.3 [adam 2019-02-01]
	Updated net/libvncserver to 0.9.12 [tnn 2019-02-01]
	Updated x11/x11vnc to 0.9.16 [tnn 2019-02-01]
	Updated graphics/MesaLib18 to 18.3.3 [tnn 2019-02-01]
	Updated www/drupal7 to 7.63 [prlw1 2019-02-01]
	Added www/py-flask-restplus version 0.12.1 [kleink 2019-02-01]
	Added devel/lld version 7.0.1 [mgorny 2019-02-01]
	Updated www/firefox to 65.0nb1 [ryoon 2019-02-01]
	Updated www/firefox-l10n to 65.0 [ryoon 2019-02-01]
	Updated net/restclient-ui to 3.7.1 [abs 2019-02-01]
	Added www/gnurl version 7.63.0 [gdt 2019-02-01]
	Updated mail/mutt to 1.11.3 [tron 2019-02-01]
	Updated net/ucspi-tcp6 to 1.10.2 [schmonz 2019-02-01]
	Updated graphics/tex-pstricks to 2.95 [markd 2019-02-01]
	Updated graphics/tex-pstricks-doc to 2.95 [markd 2019-02-01]
	Updated graphics/tex-pst-circ to 2.16 [markd 2019-02-01]
	Updated graphics/tex-pst-circ-doc to 2.16 [markd 2019-02-01]
	Updated graphics/tex-animate to 20190123 [markd 2019-02-01]
	Updated graphics/tex-animate-doc to 20190123 [markd 2019-02-01]
	Updated print/tex-amstex to 2.2.49810 [markd 2019-02-01]
	Updated print/tex-amstex-doc to 2.2.49810 [markd 2019-02-01]
	Updated print/tex-todonotes to 1.1.2 [markd 2019-02-01]
	Updated print/tex-todonotes-doc to 1.1.2 [markd 2019-02-01]
	Updated print/tex-europecv to 2018.49814 [markd 2019-02-01]
	Updated print/tex-europecv-doc to 2018.49814 [markd 2019-02-01]
	Updated print/tex-changes to 3.1.2 [markd 2019-02-01]
	Updated print/tex-changes-doc to 3.1.2 [markd 2019-02-01]
	Updated print/tex-bezos to 49850 [markd 2019-02-01]
	Updated print/tex-bezos-doc to 49850 [markd 2019-02-01]
	Updated fonts/tex-gothic to 2018 [markd 2019-02-01]
	Updated fonts/tex-gothic-doc to 2018 [markd 2019-02-01]
	Updated fonts/tex-fontspec to 2.7a [markd 2019-02-01]
	Updated fonts/tex-fontspec-doc to 2.7a [markd 2019-02-01]
	Updated print/tex-babel-french to 3.5d [markd 2019-02-01]
	Updated print/tex-make4ht to 0.2e [markd 2019-02-01]
	Updated print/tex-make4ht-doc to 0.2e [markd 2019-02-01]
	Updated print/tex-tex4ht to 2018.49879 [markd 2019-02-01]
	Updated print/tex-tex4ht-doc to 2018.49879 [markd 2019-02-01]
	Updated devel/tex-l3kernel to 2018.49853 [markd 2019-02-01]
	Updated devel/tex-l3kernel-doc to 2018.49853 [markd 2019-02-01]
	Updated devel/tex-l3experimental to 2018.49853 [markd 2019-02-01]
	Updated print/tex-updmap-map to 2018.49829 [markd 2019-02-01]
	Updated print/tex-texdoc to 2018.47946 [markd 2019-02-01]
	Updated print/tex-texdoc-doc to 2018.47946 [markd 2019-02-01]
	Added print/tex-texdoctk version 0.6.0 [markd 2019-02-01]
	Added print/tex-texdoctk-doc version 0.6.0 [markd 2019-02-01]
	Added graphics/tex-metapost-colorbrewer version 2018 [markd 2019-02-02]
	Added graphics/tex-metapost-colorbrewer-doc version 2018 [markd 2019-02-02]
	Updated print/tex-texlive-scripts to 2018.49884 [markd 2019-02-02]
	Updated print/tex-texlive.infra to 2018.49228 [markd 2019-02-02]
	Updated print/tex-tetex to 3.0.49829 [markd 2019-02-02]
	Updated print/tex-tetex-doc to 3.0.49829 [markd 2019-02-02]
	Updated pkgtools/texlive2pkg to 1.4 [markd 2019-02-02]
	Added graphics/tex-pgf-umlsd version 0.7 [markd 2019-02-02]
	Added graphics/tex-pgf-umlsd-doc version 0.7 [markd 2019-02-02]
	Added print/tex-bigfoot version 2.1 [markd 2019-02-02]
	Added print/tex-bigfoot-doc version 2.1 [markd 2019-02-02]
	Added print/tex-keycommand version 3.1415 [markd 2019-02-02]
	Added print/tex-keycommand-doc version 3.1415 [markd 2019-02-02]
	Added print/tex-semantic version 2.0 [markd 2019-02-02]
	Added print/tex-semantic-doc version 2.0 [markd 2019-02-02]
	Updated ham/hackrf to 2018.01.1 [tnn 2019-02-02]
	Removed sysutils/memtest86 successor sysutils/memtestplus [gdt 2019-02-02]
	Updated ham/rtl-sdr to 0.6.0 [tnn 2019-02-02]
	Updated databases/p5-App-Sqitch to 0.9999 [schmonz 2019-02-02]
	Updated misc/moreutils to 0.63 [leot 2019-02-02]
	Updated sysutils/pflogsumm to 1.1.3 [scole 2019-02-02]
	Updated comms/gammu to 1.40.0 [leot 2019-02-03]
	Updated net/nicovideo-dl to 0.0.20190126 [tsutsui 2019-02-03]
	Updated devel/ruby-gnome2-atk to 3.3.2 [tsutsui 2019-02-03]
	Updated devel/ruby-gnome2-gio to 3.3.2 [tsutsui 2019-02-03]
	Updated devel/ruby-gnome2-glib to 3.3.2 [tsutsui 2019-02-03]
	Updated devel/ruby-gnome2-gobject-introspection to 3.3.2 [tsutsui 2019-02-03]
	Updated devel/ruby-gnome2-pango to 3.3.2 [tsutsui 2019-02-03]
	Updated graphics/ruby-gnome2-cairo-gobject to 3.3.2 [tsutsui 2019-02-03]
	Updated graphics/ruby-gnome2-clutter to 3.3.2 [tsutsui 2019-02-03]
	Updated graphics/ruby-gnome2-clutter-gdk to 3.3.2 [tsutsui 2019-02-03]
	Updated graphics/ruby-gnome2-clutter-gtk to 3.3.2 [tsutsui 2019-02-03]
	Updated graphics/ruby-gnome2-gdk3 to 3.3.2 [tsutsui 2019-02-03]
	Updated graphics/ruby-gnome2-gdkpixbuf to 3.3.2 [tsutsui 2019-02-03]
	Updated graphics/ruby-gnome2-rsvg to 3.3.2 [tsutsui 2019-02-03]
	Updated multimedia/ruby-gnome2-clutter-gstreamer to 3.3.2 [tsutsui 2019-02-03]
	Updated multimedia/ruby-gnome2-gstreamer to 3.3.2 [tsutsui 2019-02-03]
	Updated print/ruby-gnome2-poppler to 3.3.2 [tsutsui 2019-02-03]
	Updated www/ruby-gnome2-webkit-gtk to 3.3.2 [tsutsui 2019-02-03]
	Updated www/ruby-gnome2-webkit-gtk2 to 3.3.2 [tsutsui 2019-02-03]
	Updated x11/ruby-gnome2-gtk to 3.3.2 [tsutsui 2019-02-03]
	Updated x11/ruby-gnome2-gtk3 to 3.3.2 [tsutsui 2019-02-03]
	Updated x11/ruby-gnome2-gtksourceview2 to 3.3.2 [tsutsui 2019-02-03]
	Updated x11/ruby-gnome2-gtksourceview3 to 3.3.2 [tsutsui 2019-02-03]
	Updated x11/ruby-gnome2-vte to 3.3.2 [tsutsui 2019-02-03]
	Added lang/ruby26-base version 2.6.1 [taca 2019-02-03]
	Added lang/ruby26 version 2.6.1 [taca 2019-02-03]
	Updated lang/pear to 1.10.7nb1 [taca 2019-02-03]
	Updated mail/fml to 7.99.1 [taca 2019-02-03]
	Updated databases/ruby-sequel to 5.17.0 [taca 2019-02-03]
	Updated devel/ruby-facade to 1.1.0 [taca 2019-02-03]
	Updated devel/ruby-globalid to 0.4.2 [taca 2019-02-03]
	Updated devel/ruby-highline to 2.0.1 [taca 2019-02-03]
	Updated devel/ruby-libyajl2 to 2.0.0 [taca 2019-02-03]
	Added devel/ruby-i18n12 version 1.2.0 [taca 2019-02-03]
	Updated devel/ruby-activesupport32 to 3.2.22.5nb3 [taca 2019-02-03]
	Added time/ruby-tzinfo1 version 1.2.5 [taca 2019-02-03]
	Updated devel/ruby-activesupport42 to 4.2.11nb2 [taca 2019-02-03]
	Updated devel/ruby-activesupport51 to 5.1.6.1nb1 [taca 2019-02-03]
	Updated devel/ruby-i18n to 1.5.3 [taca 2019-02-03]
	Updated time/ruby-tzinfo to 2.0.0 [taca 2019-02-03]
	Updated time/ruby-tzinfo-data to 1.2018.9 [taca 2019-02-03]
	Updated mail/ruby-mail to 2.7.1 [taca 2019-02-03]
	Updated www/ruby-rack to 2.0.6 [taca 2019-02-03]
	Updated www/ruby-rack16 to 1.6.11 [taca 2019-02-03]
	Updated www/ruby-rack-contrib to 2.1.0 [taca 2019-02-03]
	Updated sysutils/ruby-chef to 14.10.9 [taca 2019-02-03]
	Updated sysutils/ruby-chef-config to 14.10.9 [taca 2019-02-03]
	Updated misc/ruby-ohai to 14.8.10 [taca 2019-02-03]
	Updated sysutils/ruby-chef-zero to 14.0.11 [taca 2019-02-03]
	Updated archivers/ruby-mixlib-archive to 1.0.1 [taca 2019-02-03]
	Updated x11/dmenu to 4.9 [leot 2019-02-03]
	Updated wm/dwm to 6.2 [leot 2019-02-03]
	Updated emulators/mame to 0.206 [wiz 2019-02-03]
	Updated x11/kitty to 0.13.3 [gutteridge 2019-02-04]
	Updated finance/bitcoin to 0.16.3 [khorben 2019-02-04]
	Updated net/unbound to 1.9.0 [he 2019-02-05]
	Updated misc/rhash to 1.3.8 [adam 2019-02-05]
	Updated devel/cmake to 3.13.4 [adam 2019-02-05]
	Updated databases/py-psycopg2 to 2.7.7 [adam 2019-02-05]
	Updated devel/py-cython to 0.29.4 [adam 2019-02-05]
	Updated devel/py-flake8 to 3.7.5 [adam 2019-02-05]
	Updated devel/py-atomicwrites to 1.3.0 [adam 2019-02-05]
	Updated textproc/py-sphinx to 1.8.4 [adam 2019-02-05]
	Updated www/php-apcu to 5.1.16 [bsiegert 2019-02-05]
	Updated chat/anope to 2.0.6 [nia 2019-02-05]
	Updated audio/lv2 to 1.16.0 [bsiegert 2019-02-05]
	Updated databases/mysql56-client to 5.6.43 [adam 2019-02-05]
	Updated databases/mysql56-server to 5.6.43 [adam 2019-02-05]
	Updated databases/mysql57-client to 5.7.25 [adam 2019-02-05]
	Updated databases/mysql57-server to 5.7.25 [adam 2019-02-05]
	Updated net/gallery-dl to 1.7.0 [leot 2019-02-05]
	Updated mail/dovecot2 to 2.3.4.1 [taca 2019-02-06]
	Updated mail/dovecot2-gssapi to 2.3.4.1 [taca 2019-02-06]
	Updated mail/dovecot2-ldap to 2.3.4.1 [taca 2019-02-06]
	Updated mail/dovecot2-mysql to 2.3.4.1 [taca 2019-02-06]
	Updated mail/dovecot2-pgsql to 2.3.4.1 [taca 2019-02-06]
	Updated mail/dovecot2-sqlite to 2.3.4.1nb1 [taca 2019-02-06]
	Updated devel/geany to 1.34.1nb1 [gutteridge 2019-02-06]
	Updated www/curl to 7.64.0 [adam 2019-02-06]
	Updated security/easy-rsa to 3.0.6 [adam 2019-02-06]
	Updated www/py-test-django to 3.4.7 [adam 2019-02-06]
	Updated devel/py-test-mock to 1.10.1 [adam 2019-02-06]
	Updated time/py-dateutil to 2.8.0 [adam 2019-02-06]
	Updated time/py-tzdata to 2018.9 [adam 2019-02-06]
	Updated devel/py-requests-toolbelt to 0.9.1 [adam 2019-02-06]
	Updated devel/py-typed-ast to 1.3.1 [adam 2019-02-06]
	Updated emulators/retroarch to 1.7.6 [nia 2019-02-06]
	Updated emulators/libretro-core-info to 1.7.6 [nia 2019-02-06]
	Removed emulators/libretro-glsl-shaders [nia 2019-02-06]
	Updated net/py-twython to 3.7.0 [adam 2019-02-06]
	Updated devel/py-xopen to 0.5.0 [adam 2019-02-06]
	Updated devel/gobject-introspection to 1.56.1nb1 [martin 2019-02-06]
	Updated devel/xfce4-conf to 4.13.6nb1 [martin 2019-02-06]
	Updated graphics/papirus-icon-theme to 20190203 [nia 2019-02-06]
	Updated print/ghostscript to 9.26 [wiz 2019-02-06]
	Updated www/ruby-jekyll to 3.8.5 [taca 2019-02-06]
	Updated www/ruby-sinatra to 2.0.5 [taca 2019-02-06]
	Updated www/ruby-sinatra-contrib to 2.0.5 [taca 2019-02-06]
	Updated www/ruby-padrino-support to 0.14.4 [taca 2019-02-06]
	Updated www/ruby-padrino-helpers to 0.14.4 [taca 2019-02-06]
	Updated www/ruby-padrino-core to 0.14.4 [taca 2019-02-06]
	Updated www/ruby-padrino-admin to 0.14.4 [taca 2019-02-06]
	Updated www/ruby-padrino-cache to 0.14.4 [taca 2019-02-06]
	Updated www/ruby-padrino-gen to 0.14.4 [taca 2019-02-06]
	Updated www/ruby-padrino-mailer to 0.14.4 [taca 2019-02-06]
	Updated www/ruby-padrino to 0.14.4 [taca 2019-02-06]
	Updated devel/ruby-rspec-support to 3.8.0 [taca 2019-02-06]
	Updated devel/ruby-rspec-core to 3.8.0 [taca 2019-02-06]
	Updated devel/ruby-rspec-expectations to 3.8.2 [taca 2019-02-06]
	Updated devel/ruby-rspec to 3.8.0 [taca 2019-02-06]
	Updated devel/ruby-rspec-rails to 3.8.2 [taca 2019-02-06]
	Updated math/ruby-spreadsheet to 1.1.9 [taca 2019-02-06]
	Updated math/ruby-roo to 2.8.2 [taca 2019-02-06]
	Updated databases/postgresql10-server to 10.6nb1 [schmonz 2019-02-06]
	Updated databases/postgresql11-server to 11.1nb1 [schmonz 2019-02-06]
	Updated databases/postgresql93-server to 9.3.25nb1 [schmonz 2019-02-06]
	Updated databases/postgresql94-server to 9.4.20nb1 [schmonz 2019-02-06]
	Updated databases/postgresql95-server to 9.5.15nb1 [schmonz 2019-02-06]
	Updated databases/postgresql96-server to 9.6.11nb1 [schmonz 2019-02-06]
	Updated net/syncthing to 1.0.1 [gdt 2019-02-07]
	Updated devel/geany to 1.34.1nb2 [gutteridge 2019-02-07]
	Updated editors/lyx to 2.3.2 [markd 2019-02-07]
	Updated sysutils/bacula to 9.4.1 [markd 2019-02-07]
	Updated sysutils/bacula-clientonly to 9.4.1 [markd 2019-02-07]
	Updated sysutils/bacula-qt-console to 9.4.1 [markd 2019-02-07]
	Updated sysutils/bacula-tray-monitor to 9.4.1 [markd 2019-02-07]
	Added sysutils/bacula-qt5-console version 9.4.1 [markd 2019-02-07]
	Added sysutils/bacula-tray-monitor-qt5 version 9.4.1 [markd 2019-02-07]
	Removed sysutils/bacula-wx-console [markd 2019-02-07]
	Updated sysutils/zabbix to 4.0.4 [he 2019-02-07]
	Updated chat/cgiirc to 0.5.12 [nia 2019-02-07]
	Updated lang/php72 to 7.2.15 [taca 2019-02-07]
	Updated lang/php73 to 7.3.2 [taca 2019-02-07]
	Added ham/kalibrate-hackrf version 20160704 [tnn 2019-02-07]
	Added ham/kalibrate-rtl version 20131215 [tnn 2019-02-07]
	Updated chat/atheme to 7.2.9 [nia 2019-02-07]
	Updated chat/eggdrop to 1.8.4 [nia 2019-02-07]
	Updated www/ikiwiki to 3.20190207 [schmonz 2019-02-07]
	Updated net/dhcpcd to 7.1.1 [roy 2019-02-07]
	Updated mail/getmail to 5.9 [schmonz 2019-02-07]
	Updated net/youtube-dl to 20190208 [leot 2019-02-07]
	Updated textproc/py-openpyxl to 2.6.0 [adam 2019-02-08]
	Updated textproc/py-natsort to 6.0.0 [adam 2019-02-08]
	Updated chat/ircd-hybrid to 8.2.24 [fox 2019-02-08]
	Updated chat/psi to 1.4 [nia 2019-02-08]
	Updated databases/lbdb to 0.48.1 [tonio 2019-02-08]
	Updated www/p5-HTML-Restrict to 2.5.0 [wen 2019-02-08]
	Updated www/drupal8 to 8.6.9 [wen 2019-02-09]
	Updated www/drupal7 to 7.64 [wen 2019-02-09]
	Updated databases/p5-Data-Table to 1.77 [wen 2019-02-09]
	Updated databases/p5-DBD-ODBC to 1.60 [wen 2019-02-09]
	Updated devel/p5-File-ChangeNotify to 0.31 [wen 2019-02-09]
	Updated devel/p5-glib2 to 1.329 [wen 2019-02-09]
	Updated devel/p5-Inline to 0.81 [wen 2019-02-09]
	Updated print/p5-biblatex-biber to 2.12 [markd 2019-02-09]
	Added devel/p5-Regexp-Trie version 0.02 [wen 2019-02-09]
	Added devel/p5-Perl-PrereqScanner-NotQuiteLite version 0.9904 [wen 2019-02-09]
	Updated devel/p5-Module-CPANTS-Analyse to 1.00 [wen 2019-02-09]
	Updated devel/p5-Test-Kwalitee to 1.28 [wen 2019-02-09]
	Updated textproc/p5-Encode to 3.00 [wen 2019-02-09]
	Updated sysutils/memtestplus to 5.01nb6 [maya 2019-02-09]
	Updated www/webkit-gtk to 2.22.6 [leot 2019-02-09]
	Updated x11/st-term to 0.8.2 [leot 2019-02-09]
	Updated math/ppl to 1.2 [wen 2019-02-09]
	Updated sysutils/py-diffoscope to 110 [khorben 2019-02-09]
	Updated chat/unrealircd to 4.2.1.1 [nia 2019-02-09]
	Updated devel/py-setuptools to 40.8.0 [adam 2019-02-09]
	Updated devel/py-pip to 19.0.2 [adam 2019-02-09]
	Updated textproc/py-lxml to 4.3.1 [adam 2019-02-09]
	Updated devel/py-cython to 0.29.5 [adam 2019-02-09]
	Updated net/dante to 1.4.2nb1 [rhialto 2019-02-09]
	Added games/libretro-2048 version 20181229 [nia 2019-02-10]
	Updated audio/audacity to 2.2.2 [nia 2019-02-10]
	Updated x11/xf86-video-apm to 1.3.0 [wiz 2019-02-10]
	Updated x11/xf86-video-s3virge to 1.11.0 [wiz 2019-02-10]
	Updated x11/bitmap to 1.0.9 [wiz 2019-02-10]
	Updated x11/libXau to 1.0.9 [wiz 2019-02-10]
	Updated multimedia/mkvtoolnix to 31.0.0 [adam 2019-02-11]
	Updated databases/rrdtool to 1.7.1 [adam 2019-02-11]
	Updated databases/py-rrdtool to 1.7.1 [adam 2019-02-11]
	Updated databases/ruby-rrdtool to 1.7.1 [adam 2019-02-11]
	Updated multimedia/ffmpeg4 to 4.1.1 [adam 2019-02-11]
	Updated multimedia/ffplay4 to 4.1.1 [adam 2019-02-11]
	Updated audio/cmus to 2.8.0 [nia 2019-02-11]
	Updated databases/sqlite3 to 3.27.1 [adam 2019-02-11]
	Updated devel/libuv to 1.26.0 [adam 2019-02-11]
	Updated devel/py-test-testmon to 0.9.15 [adam 2019-02-11]
	Updated devel/py-configargparse to 0.14.0 [adam 2019-02-11]
	Updated devel/libextractor to 1.8 [gdt 2019-02-11]
	Updated textproc/libxlsxwriter to 0.8.5 [leot 2019-02-11]
	Updated sysutils/py-borgbackup to 1.1.9 [bsiegert 2019-02-11]
	Updated mail/msmtp to 1.8.3 [leot 2019-02-11]
	Added textproc/libxls version 1.5.0 [leot 2019-02-11]
	Updated math/sc-im to 0.7.0nb1 [leot 2019-02-11]
	Updated chat/irssi to 1.2.0 [maya 2019-02-12]
	Updated time/py-rfc3339 to 1.1 [adam 2019-02-12]
	Updated fonts/py-fonttools to 3.37.3 [adam 2019-02-12]
	Added textproc/py-manuel version 1.10.1 [adam 2019-02-12]
	Updated devel/py-ZopeConfiguration to 4.3.1 [adam 2019-02-12]
	Updated net/unbound to 1.9.0nb1 [he 2019-02-12]
	Updated net/py-botocore to 1.12.92 [adam 2019-02-12]
	Updated net/py-s3transfer to 0.2.0 [adam 2019-02-12]
	Updated net/py-boto3 to 1.9.92 [adam 2019-02-12]
	Updated net/py-awscli to 1.16.102 [adam 2019-02-12]
	Updated print/py-weasyprint to 44nb1 [kleink 2019-02-12]
	Updated sysutils/augeas to 1.11.0 [adam 2019-02-12]
	Updated sysutils/py-augeas to 1.0.3 [adam 2019-02-12]
	Updated print/py-weasyprint to 44nb2 [kleink 2019-02-12]
	Updated security/py-acme to 0.31.0 [adam 2019-02-12]
	Updated security/py-certbot to 0.31.0 [adam 2019-02-12]
	Updated security/py-certbot-dns-ovh to 0.31.0 [adam 2019-02-12]
	Updated security/py-certbot-dns-rfc2136 to 0.31.0 [adam 2019-02-12]
	Updated security/py-certbot-dns-route53 to 0.31.0 [adam 2019-02-12]
	Updated security/py-certbot-dns-sakuracloud to 0.31.0 [adam 2019-02-12]
	Updated security/py-certbot-nginx to 0.31.0 [adam 2019-02-12]
	Added security/py-certbot-apache version 0.31.0 [adam 2019-02-12]
	Updated www/py-django to 1.11.20 [adam 2019-02-12]
	Updated www/py-django2 to 2.1.7 [adam 2019-02-12]
	Updated www/py-django-admin-rangefilter to 0.3.12 [adam 2019-02-12]
	Updated www/py-django-js-asset to 1.2.1 [adam 2019-02-12]
	Updated multimedia/adobe-flash-player to 32.0.0.142 [tsutsui 2019-02-12]
	Updated multimedia/libdvdread to 6.0.1 [adam 2019-02-12]
	Updated multimedia/libbluray to 1.1.0 [adam 2019-02-12]
	Updated textproc/py-xmltodict to 0.12.0 [adam 2019-02-12]
	Updated textproc/py-html-sanitizer to 1.6.4 [adam 2019-02-12]
	Updated shells/fish to 3.0.0 [maya 2019-02-12]
	Updated net/mikutter to 3.8.5 [tsutsui 2019-02-12]
	Updated textproc/xapian to 1.4.10 [schmonz 2019-02-12]
	Updated textproc/xapian-omega to 1.4.10 [schmonz 2019-02-12]
	Updated textproc/libhighlight to 3.49 [schmonz 2019-02-12]
	Updated textproc/highlight to 3.49 [schmonz 2019-02-12]
	Updated textproc/p5-highlight to 3.49 [schmonz 2019-02-12]
	Updated multimedia/libvpx to 1.8.0 [adam 2019-02-12]
	Updated mail/getmail to 5.10 [schmonz 2019-02-12]
	Updated emulators/qemu to 3.1.0nb5 [kamil 2019-02-13]
	Added emulators/haxm version 0.c072ad9b68e1d558a9fb791511468d10a1a9b319 [kamil 2019-02-13]
	Updated mail/fdm to 2.0 [leot 2019-02-13]
	Updated lang/erlang to 21.2.5 [nia 2019-02-13]
	Updated devel/py-anytree to 2.6.0 [adam 2019-02-13]
	Updated devel/py-uvloop to 0.12.1 [adam 2019-02-13]
	Updated textproc/py-sphinx-rtd-theme to 0.4.3 [adam 2019-02-13]
	Updated time/py-dateparser to 0.7.1 [adam 2019-02-13]
	Updated converters/qrencode to 4.0.2 [tnn 2019-02-13]
	Updated devel/py-test to 4.2.1 [adam 2019-02-13]
	Updated devel/py-test-assume to 1.2.2 [adam 2019-02-13]
	Updated www/py-daphne to 2.2.5 [adam 2019-02-13]
	Updated www/py-channels to 2.1.7 [adam 2019-02-13]
	Updated security/libassuan2 to 2.5.3 [adam 2019-02-13]
	Updated security/gnupg2 to 2.2.13 [adam 2019-02-13]
	Updated net/py-amqp to 2.4.1 [adam 2019-02-13]
	Updated net/py-kombu to 4.3.0 [adam 2019-02-13]
	Updated news/libcanlock to 3.1.0 [wiz 2019-02-13]
	Updated news/canlock-hp to 3.1.0 [wiz 2019-02-13]
	Updated emulators/haxm to 0.c072ad9b68e1d558a9fb791511468d10a1a9b319nb1 [kamil 2019-02-13]
	Updated misc/khard to 0.13.0 [wiz 2019-02-13]
	Updated fonts/SDL2_ttf to 2.0.15 [wiz 2019-02-13]
	Updated devel/meld to 3.20.0 [wiz 2019-02-13]
	Updated security/libsecret to 0.18.7 [wiz 2019-02-13]
	Updated textproc/gsed to 4.7 [wiz 2019-02-13]
	Updated security/caff to 2.8 [wiz 2019-02-13]
	Updated devel/libgsf to 1.14.45 [wiz 2019-02-13]
	Updated audio/abcde to 2.9.3 [wiz 2019-02-13]
	Updated devel/bison to 3.2.4 [wiz 2019-02-13]
	Updated security/libssh to 0.86 [wiz 2019-02-13]
	Updated fonts/harfbuzz to 2.3.1 [wiz 2019-02-13]
	Updated www/py-mechanize to 0.4.0 [wiz 2019-02-13]
	Updated print/libpaper to 1.1.26 [wiz 2019-02-13]
	Updated net/gssdp to 1.0.3 [wiz 2019-02-13]
	Updated devel/boehm-gc to 8.0.2 [wiz 2019-02-13]
	Updated converters/libetonyek to 0.1.9 [wiz 2019-02-13]
	Updated x11/xkeyboard-config to 2.26 [wiz 2019-02-13]
	Updated x11/xf86-video-nouveau to 1.0.16 [wiz 2019-02-13]
	Updated mail/notmuch to 0.28.1 [wiz 2019-02-13]
	Updated converters/libqxp to 0.0.2 [wiz 2019-02-13]
	Updated mail/thunderbird-enigmail to 2.0.9 [wiz 2019-02-13]
	Updated converters/libcdr to 0.1.5 [wiz 2019-02-13]
	Updated shells/fish to 3.0.0nb1 [maya 2019-02-13]
	Updated net/libcmis to 0.5.2 [wiz 2019-02-13]
	Updated audio/libopenmpt to 0.4.3 [wiz 2019-02-13]
	Updated x11/libxkbcommon to 0.8.3 [wiz 2019-02-13]
	Updated math/mpfr to 4.0.2 [wiz 2019-02-13]
	Updated devel/readline to 8.0 [wiz 2019-02-13]
	Updated audio/fasttracker2 to 2.135 [fox 2019-02-14]
	Updated lang/ruby25-base to 2.5.3nb1 [taca 2019-02-14]
	Updated x11/pixman to 0.38.0 [wiz 2019-02-14]
	Updated net/gst-plugins1-libnice to 0.1.15 [wiz 2019-02-14]
	Updated devel/py-decorator to 4.3.2 [adam 2019-02-14]
	Updated devel/py-joblib to 0.13.2 [adam 2019-02-14]
	Updated net/libnice to 0.1.15 [wiz 2019-02-14]
	Updated devel/py-mercurial to 4.9 [wiz 2019-02-14]
	Updated graphics/ImageMagick to 7.0.8.27 [wiz 2019-02-14]
	Updated net/filezilla to 3.40.0 [wiz 2019-02-14]
	Updated www/py-google-api-python-client to 1.7.8 [wiz 2019-02-14]
	Updated lang/npm to 6.8.0 [adam 2019-02-14]
	Updated x11/gtk3 to 3.24.5 [adam 2019-02-14]
	Added textproc/py-css-parser version 1.0.4 [wiz 2019-02-14]
	Updated misc/calibre to 3.39.1 [wiz 2019-02-14]
	Updated security/py-cryptopp to 0.7.1 [adam 2019-02-14]
	Updated net/zeromq to 4.3.1 [adam 2019-02-14]
	Updated databases/db4 to 4.8.30nb1 [thorpej 2019-02-14]
	Updated net/hub to 2.9.0 [leot 2019-02-14]
	Updated emulators/haxm to 1.20190214.3bdfd1a39021df9b4dfe69e05a277e4e6456494a [kamil 2019-02-14]
	Updated emulators/haxm to 1.20190214.3bdfd1a39021df9b4dfe69e05a277e4e6456494anb1 [kamil 2019-02-15]
	Updated devel/py-test-forked to 1.0.2 [adam 2019-02-15]
	Updated devel/py-test-runner to 4.4 [adam 2019-02-15]
	Added x11/xcursor-themes version 1.0.6 [wiz 2019-02-15]
	Updated meta-pkgs/modular-xorg-apps to 1.14.1.8 [wiz 2019-02-15]
	Updated devel/py-wheel to 0.33.0 [adam 2019-02-15]
	Updated www/py-WebTest to 2.0.33 [adam 2019-02-15]
	Updated textproc/py-xlsxwriter to 1.1.4 [adam 2019-02-15]
	Updated lang/py-mypy to 0.670 [adam 2019-02-15]
	Updated lang/runawk to 1.6.1 [cheusov 2019-02-15]
	Updated parallel/paexec to 1.1.1 [cheusov 2019-02-15]
	Updated devel/libmaa to 1.4.3 [cheusov 2019-02-15]
	Updated devel/cproto to 4.7o [wiz 2019-02-15]
	Updated editors/vile to 9.8t [wiz 2019-02-15]
	Updated editors/xvile to 9.8t [wiz 2019-02-15]
	Updated lang/mawk to 1.3.4.20171017 [wiz 2019-02-15]
	Updated misc/dialog to 1.3.20190211 [wiz 2019-02-15]
	Updated misc/vttest to 20190105 [wiz 2019-02-15]
	Updated textproc/diffstat to 1.62 [wiz 2019-02-15]
	Updated x11/luit to 2.0.20190106 [wiz 2019-02-15]
	Updated x11/xterm to 344 [wiz 2019-02-15]
	Updated devel/lua-alt-getopt to 0.8.0 [cheusov 2019-02-15]
	Updated sysutils/smartmontools to 7.0nb2 [triaxx 2019-02-15]
	Updated mail/getmail to 5.11 [schmonz 2019-02-16]
	Updated print/poppler to 0.74.0 [wiz 2019-02-16]
	Removed net/go-vultr successor sysutils/vultr [bsiegert 2019-02-16]
	Added devel/empty version 0.6.20b [bsiegert 2019-02-16]
	Updated x11/xf86-video-chips to 1.4.0 [wiz 2019-02-16]
	Updated x11/xf86-video-tdfx to 1.5.0 [wiz 2019-02-16]
	Updated www/caddy to 0.11.4 [bsiegert 2019-02-16]
	Updated devel/MoarVM to 2018.12 [bsiegert 2019-02-16]
	Updated lang/nqp to 2018.12 [bsiegert 2019-02-16]
	Updated devel/py-hypothesis to 4.5.11 [adam 2019-02-16]
	Updated devel/py-cffi to 1.12.1 [adam 2019-02-16]
	Updated sysutils/caja to 1.21.4 [gutteridge 2019-02-17]
	Updated graphics/mate-backgrounds to 1.21.0 [gutteridge 2019-02-17]
	Updated devel/mate-common to 1.21.0 [gutteridge 2019-02-17]
	Updated x11/mate-indicator-applet to 1.21.0 [gutteridge 2019-02-17]
	Updated wm/mate-netbook to 1.21.0 [gutteridge 2019-02-17]
	Updated net/mate-user-share to 1.21.0 [gutteridge 2019-02-17]
	Updated databases/postgresql94 to 9.4.21 [adam 2019-02-17]
	Updated databases/postgresql95 to 9.5.16 [adam 2019-02-17]
	Updated databases/postgresql96 to 9.6.12 [adam 2019-02-17]
	Updated databases/postgresql10 to 10.7 [adam 2019-02-17]
	Updated databases/postgresql11 to 11.2 [adam 2019-02-17]
	Updated devel/py-fakefs to 3.5.7 [adam 2019-02-17]
	Updated sysutils/py-psutil to 5.5.1 [adam 2019-02-17]
	Updated devel/py-rope to 0.12.0 [adam 2019-02-17]
	Updated www/py-httplib2 to 0.12.1 [adam 2019-02-17]
	Added chat/quassel version 0.13.1 [nia 2019-02-17]
	Updated finance/ledger to 3.1.2 [wiz 2019-02-17]
	Updated devel/ninja-build to 1.9.0 [wiz 2019-02-17]
	Added lang/zig version 0.3.0.20190217 [maya 2019-02-17]
	Updated sysutils/xfce4-thunar to 1.8.4 [youri 2019-02-17]
	Updated x11/xfce4-exo to 0.12.4 [youri 2019-02-17]
	Updated x11/xfce4-whiskermenu-plugin to 2.3.1 [youri 2019-02-17]
	Added textproc/yelp-tools version 3.31.90 [triaxx 2019-02-17]
	Updated textproc/yelp-xsl to 3.31.90 [triaxx 2019-02-17]
	Updated news/sfeed to 0.9.8 [leot 2019-02-17]
	Updated x11/xcalc to 1.0.7 [wiz 2019-02-17]
	Updated textproc/py-dominate to 2.3.5 [adam 2019-02-18]
	Updated devel/py-dulwich to 0.19.11 [adam 2019-02-18]
	Updated databases/py-redis to 3.2.0 [adam 2019-02-18]
	Updated www/py-raven to 6.10.0 [adam 2019-02-18]
	Updated www/py-test-httpbin to 1.0.0 [adam 2019-02-18]
	Updated devel/py-zconfig to 3.4.0 [adam 2019-02-18]
	Updated lang/py-js2py to 0.60 [adam 2019-02-18]
	Updated lang/rakudo to 2018.12 [bsiegert 2019-02-18]
	Updated devel/libextractor to 1.9 [gdt 2019-02-19]
	Updated devel/py-test to 4.3.0 [adam 2019-02-19]
	Updated devel/py-flake8 to 3.7.6 [adam 2019-02-19]
	Updated devel/py-ipython to 7.3.0 [adam 2019-02-19]
	Updated www/py-soupsieve to 1.8 [adam 2019-02-19]
	Updated time/py-arrow to 0.13.1 [adam 2019-02-19]
	Updated security/py-nacl to 1.3.0 [tm 2019-02-19]
	Updated net/py-gevent to 1.4.0 [adam 2019-02-19]
	Updated lang/py-parso to 0.3.4 [adam 2019-02-19]
	Updated www/firefox to 65.0.1 [ryoon 2019-02-19]
	Updated www/firefox-l10n to 65.0.1 [ryoon 2019-02-19]
	Updated devel/mdds to 1.4.3 [ryoon 2019-02-19]
	Updated math/libixion to 0.14.1 [ryoon 2019-02-19]
	Updated converters/orcus to 0.14.1 [ryoon 2019-02-19]
	Updated devel/transifex-client to 0.13.6 [taca 2019-02-19]
	Updated misc/libreoffice to 6.2.0.3 [ryoon 2019-02-19]
	Updated sysutils/ovmf to 0.0.20181116 [ryoon 2019-02-19]
	Updated www/hugo to 0.54.0 [ryoon 2019-02-19]
	Updated net/youtube-dl to 20190218 [leot 2019-02-19]
	Updated misc/dtach to 0.9 [leot 2019-02-19]
	Updated devel/cbindgen to 0.8.0 [he 2019-02-19]
	Updated devel/py-prompt_toolkit2 to 2.0.9 [adam 2019-02-20]
	Updated devel/py-wheel to 0.33.1 [adam 2019-02-20]
	Updated net/powerdns-recursor to 4.1.11 [adam 2019-02-20]
	Updated net/powerdns to 4.1.6 [adam 2019-02-20]
	Updated www/php-nextcloud to 15.0.4 [ryoon 2019-02-20]
	Updated databases/py-sqlalchemy to 1.2.18 [adam 2019-02-20]
	Updated databases/py-sqlalchemy-migrate to 0.12.0 [adam 2019-02-20]
	Updated sysutils/nnn to 2.3 [leot 2019-02-20]
	Updated sysutils/arm-trusted-firmware-sun50iw1p1 to 20180210nb1 [martin 2019-02-20]
	Updated sysutils/u-boot-pinebook to 2018.11rc3nb1 [martin 2019-02-20]
	Updated geography/proj to 5.2.0 [gdt 2019-02-20]
	Updated misc/libreoffice5-bin to 5.4.7 [tsutsui 2019-02-21]
	Updated print/py-weasyprint to 45 [kleink 2019-02-21]
	Updated time/xclock to 1.0.8 [wiz 2019-02-21]
	Updated devel/py-pip to 19.0.3 [adam 2019-02-21]
	Updated devel/py-pbr to 5.1.2 [adam 2019-02-21]
	Updated x11/xev to 1.2.3 [wiz 2019-02-21]
	Updated x11/xfsinfo to 1.0.6 [wiz 2019-02-21]
	Updated x11/xhost to 1.0.8 [wiz 2019-02-21]
	Updated x11/xlsatoms to 1.1.3 [wiz 2019-02-21]
	Updated x11/xmodmap to 1.0.10 [wiz 2019-02-21]
	Updated x11/xrdb to 1.2.0 [wiz 2019-02-21]
	Updated x11/xstdcmap to 1.0.4 [wiz 2019-02-21]
	Updated x11/xvinfo to 1.1.4 [wiz 2019-02-21]
	Updated fonts/libfontenc to 1.1.4 [wiz 2019-02-21]
	Updated devel/cdk to 5.0.20180306 [wiz 2019-02-21]
	Updated misc/py-tqdm to 4.31.1 [adam 2019-02-21]
	Updated devel/py-Pyro to 4.75 [adam 2019-02-21]
	Updated net/openvpn to 2.4.7 [adam 2019-02-21]
	Updated www/py-django-js-asset to 1.2.2 [adam 2019-02-21]
	Updated www/webkit-gtk to 2.22.6nb1 [maya 2019-02-21]
	Updated pkgtools/pkglint to 5.7.0 [rillig 2019-02-21]
	Updated pkgtools/pkglint to 5.7.1 [rillig 2019-02-21]
	Updated net/bind911 to 9.11.5pl4 [taca 2019-02-22]
	Updated net/bind912 to 9.12.3pl4 [taca 2019-02-22]
	Updated net/tor to 0.3.5.8 [adam 2019-02-22]
	Updated net/py-apache-libcloud to 2.4.0 [adam 2019-02-22]
	Updated audio/fasttracker2 to 2.137 [fox 2019-02-22]
	Updated geography/p5-Geo-ShapeFile to 2.66 [wen 2019-02-22]
	Updated devel/doxygen to 1.8.15nb1 [wiz 2019-02-22]
	Updated mail/p5-Email-Address-List to 0.06 [wen 2019-02-22]
	Updated mail/getmail to 5.12 [schmonz 2019-02-22]
	Updated graphics/MesaLib18 to 18.3.4 [tnn 2019-02-22]
	Added www/tscrape version 0.1 [leot 2019-02-22]
	Updated mail/getmail to 5.13 [schmonz 2019-02-23]
	Updated cad/gtkwave to 3.3.99 [mef 2019-02-23]
	Updated net/mikutter to 3.8.6 [tsutsui 2019-02-23]
	Added sysutils/arm-trusted-firmware-sun50i_a64 version 2.0 [martin 2019-02-23]
	Updated ham/xlog to 2.0.17 [mef 2019-02-23]
	Updated ham/fldigi to 4.1.01 [mef 2019-02-23]
	Updated mail/mblaze to 0.5 [wiz 2019-02-23]
	Added security/py-certbot-dns-nsone version 0.31.0 [triaxx 2019-02-23]
	Added security/py-certbot-dns-luadns version 0.31.0 [triaxx 2019-02-23]
	Updated graphics/p5-GD to 2.71 [mef 2019-02-24]
	Updated mail/p5-Mail-Message to 3.008 [wen 2019-02-24]
	Updated mail/p5-Mail-Box to 3.006 [wen 2019-02-24]
	Added mail/p5-Mail-Transport version 3.003 [wen 2019-02-24]
	Added mail/p5-Mail-Box-IMPAP4 version 3.003 [wen 2019-02-24]
	Added mail/p5-Mail-Box-POP3 version 3.004 [wen 2019-02-24]
	Updated graphics/p5-GD-SecurityImage to 1.75 [mef 2019-02-24]
	Updated devel/libgit2 to 0.28.1 [wiz 2019-02-24]
	Updated sysutils/spice-protocol to 0.12.15 [wiz 2019-02-24]
	Updated audio/icecast to 2.4.4 [wiz 2019-02-24]
	Updated mail/notmuch to 0.28.2 [wiz 2019-02-24]
	Updated time/p5-Time-HiRes to 1.9760 [wen 2019-02-24]
	Removed mail/p5-Mail-Box-IMPAP4 [wen 2019-02-24]
	Added mail/p5-Mail-Box-IMAP4 version 3.003 [wen 2019-02-24]
	Updated emulators/mednafen to 1.22.1 [nia 2019-02-24]
	Updated lang/nodejs to 10.15.1nb1 [rin 2019-02-24]
	Updated net/hub to 2.10.0 [leot 2019-02-24]
	Updated shells/zsh-autosuggestions to 0.5.0 [wiz 2019-02-24]
	Updated devel/pcre to 8.43 [wiz 2019-02-24]
	Updated x11/libxkbcommon to 0.8.4 [wiz 2019-02-24]
	Updated archivers/gtar to 1.32 [wiz 2019-02-24]
	Updated emulators/libretro-np2kai to 0.86.18 [nia 2019-02-24]
	Updated audio/musicpd to 0.21.5 [wiz 2019-02-24]
	Updated graphics/ImageMagick to 7.0.8.28 [wiz 2019-02-24]
	Updated chat/weechat to 2.4 [nia 2019-02-24]
	Added www/ruby-sass-listen version 4.0.0 [taca 2019-02-24]
	Added www/ruby-sass-rails version 5.0.7 [taca 2019-02-24]
	Added www/ruby-sass34 version 3.4.24 [taca 2019-02-24]
	Updated www/ruby-sass to 3.7.3 [taca 2019-02-24]
	Updated www/ruby-sass34 to 3.4.25 [taca 2019-02-24]
	Updated www/ruby-compass-core to 1.0.3nb1 [taca 2019-02-24]
	Updated www/ruby-compass-import-once to 1.0.5nb1 [taca 2019-02-24]
	Updated www/drupal8 to 8.6.10 [taca 2019-02-24]
	Updated devel/py-configparser to 3.7.3 [adam 2019-02-24]
	Updated textproc/py-xlsxwriter to 1.1.5 [adam 2019-02-24]
	Updated mail/exim to 4.92 [adam 2019-02-24]
	Updated mail/exim-html to 4.92 [adam 2019-02-24]
	Updated devel/py-pluggy to 0.9.0 [adam 2019-02-24]
	Updated www/py-django-extensions to 2.1.6 [adam 2019-02-24]
	Added filesystems/ltfs version 2.4.2.0.0 [manu 2019-02-25]
	Added filesystems/ltfs-ltotape version 0.1 [manu 2019-02-25]
	Added devel/py-test-xprocess version 0.12.1 [adam 2019-02-25]
	Updated www/py-flask-caching to 1.5.0 [adam 2019-02-25]
	Updated devel/py-isort to 4.3.6 [adam 2019-02-25]
	Updated textproc/py-jmespath to 0.9.4 [adam 2019-02-25]
	Updated devel/ncurses to 6.1nb5 [jperkin 2019-02-25]
	Updated devel/ncursesw to 6.1nb3 [jperkin 2019-02-25]
	Updated lang/erlang to 21.2.6 [nia 2019-02-25]
	Updated textproc/pdfgrep to 2.1.2 [ryoon 2019-02-25]
	Updated databases/ruby-activeldap to 5.2.3 [taca 2019-02-25]
	Updated databases/ruby-sqlite3 to 1.4.0 [taca 2019-02-25]
	Updated devel/ruby-byebug to 11.0.0 [taca 2019-02-25]
	Updated devel/ruby-test-unit to 3.3.0 [taca 2019-02-25]
	Updated devel/ruby-mustache to 1.1.0 [taca 2019-02-25]
	Updated lang/swi-prolog-lite to 8.0.1 [leot 2019-02-25]
	Updated lang/swi-prolog-packages to 8.0.1 [leot 2019-02-25]
	Updated lang/swi-prolog-jpl to 8.0.1 [leot 2019-02-25]
	Updated lang/swi-prolog to 8.0.1 [leot 2019-02-25]
	Updated security/tor-browser to 8.5 [wiz 2019-02-25]
	Updated textproc/py-markupsafe to 1.1.1 [kleink 2019-02-25]
	Updated devel/ruby-pathname2 to 1.8.1 [taca 2019-02-25]
	Updated devel/ruby-pkg-config to 1.3.4 [taca 2019-02-25]
	Updated devel/ruby-rgl to 0.5.4 [taca 2019-02-25]
	Updated graphics/ruby-RMagick to 3.0.0 [taca 2019-02-25]
	Updated math/ruby-spreadsheet to 1.2.0 [taca 2019-02-25]
	Updated databases/sqlite3 to 3.27.2 [adam 2019-02-25]
	Updated net/fping to 4.2 [adam 2019-02-25]
	Updated emulators/libretro-beetle-ngp to 20190203 [nia 2019-02-25]
	Updated audio/fasttracker2 to 2.138 [fox 2019-02-26]
	Updated archivers/py-zstandard to 0.11.0 [adam 2019-02-26]
	Updated devel/py-isort to 4.3.9 [adam 2019-02-26]
	Updated www/py-websocket-client to 0.55.0 [adam 2019-02-26]
	Updated devel/py-flake8 to 3.7.7 [adam 2019-02-26]
	Updated www/firefox60 to 60.5.2 [ryoon 2019-02-26]
	Updated www/firefox60-l10n to 60.5.2 [ryoon 2019-02-26]
	Updated textproc/fmtlib to 5.3.0 [adam 2019-02-26]
	Updated www/py-WSGIProxy2 to 0.4.6 [adam 2019-02-26]
	Updated mail/thunderbird to 60.5.1 [ryoon 2019-02-26]
	Updated mail/thunderbird-l10n to 60.5.1 [ryoon 2019-02-26]
	Updated devel/git to 2.21.0 [adam 2019-02-26]
	Updated www/firefox to 65.0.1nb1 [rin 2019-02-26]
	Updated chat/py-hangups to 0.4.9 [leot 2019-02-26]
	Updated devel/go-protobuf to 1.3.0 [he 2019-02-26]
	Updated sysutils/arm-trusted-firmware-sun50i_a64 to 2.0.20190222 [martin 2019-02-27]
	Updated sysutils/u-boot-pinebook to 2018.11rc3nb2 [martin 2019-02-27]
	Updated lang/zig to 0.3.0.20190227 [maya 2019-02-27]
	Updated fonts/py-fonttools to 3.38.0 [adam 2019-02-27]
	Updated www/py-test-django to 3.4.8 [adam 2019-02-27]
	Updated www/py-uwsgi to 2.0.18 [adam 2019-02-27]
	Removed www/ap-uwsgi successor www/apache24 [adam 2019-02-27]
	Updated security/py-keyring to 18.0.0 [adam 2019-02-27]
	Added sysutils/trash version 0.9.2 [wiz 2019-02-27]
	Updated x11/modular-xorg-server to 1.20.4 [wiz 2019-02-27]
	Updated devel/ruby-rugged to 0.28.0 [taca 2019-02-27]
	Updated net/py-nyx to 2.1.0 [wiz 2019-02-28]
	Updated devel/py-stem to 1.7.1 [wiz 2019-02-28]
	Updated net/py-txtorcon to 19.0.0 [wiz 2019-02-28]
	Updated devel/py-cffi to 1.12.2 [adam 2019-02-28]
	Updated devel/py-cython to 0.29.6 [adam 2019-02-28]
	Updated security/py-cryptography_vectors to 2.6.1 [adam 2019-02-28]
	Updated security/py-cryptography to 2.6.1 [adam 2019-02-28]
	Updated sysutils/zabbix to 4.0.5 [he 2019-02-28]
	Updated devel/py-astroid to 2.2.0 [adam 2019-02-28]
	Updated devel/py-pylint to 2.3.0 [adam 2019-02-28]
	Updated devel/py-pylint-plugin-utils to 0.5 [adam 2019-02-28]
	Updated www/py-pylint-django to 2.0.6 [adam 2019-02-28]
	Updated sysutils/salt to 2019.2.0 [adam 2019-02-28]
	Updated sysutils/salt-docs to 2019.2.0 [adam 2019-02-28]
	Updated net/py-zmq to 18.0.0 [adam 2019-02-28]
	Updated devel/py-test-randomly to 2.0.0 [adam 2019-02-28]
	Updated misc/pick to 3.0.0 [leot 2019-02-28]
	Updated www/ikiwiki to 3.20190228 [schmonz 2019-02-28]
	Updated net/youtube-dl to 20190301 [leot 2019-02-28]
	Updated emulators/mame to 0.207 [wiz 2019-02-28]
	Updated multimedia/libvdpau to 1.2 [wiz 2019-02-28]
	Added textproc/py-markdown-math version 0.6 [gutteridge 2019-03-01]
	Updated textproc/py-lxml to 4.3.2 [adam 2019-03-01]
	Updated lang/nodejs to 10.15.2 [adam 2019-03-01]
	Updated devel/py-flakes to 2.1.1 [adam 2019-03-01]
	Updated www/py-paste to 3.0.7 [adam 2019-03-01]
	Updated devel/libcerf to 1.13 [adam 2019-03-01]
	Updated www/py-django-cors-headers to 2.4.1 [adam 2019-03-01]
	Updated editors/OmegaT to 4.1.5.03 [ryoon 2019-03-01]
	Updated lang/ecl to 16.1.3 [leot 2019-03-01]
	Updated x11/compton to 5.1 [youri 2019-03-01]
	Updated www/nginx-devel to 1.15.9 [ryoon 2019-03-01]
	Updated graphics/ImageMagick to 7.0.8.29 [youri 2019-03-01]
	Updated www/webkit-gtk to 2.22.7 [leot 2019-03-01]
	Updated devel/libgee to 0.20.1 [youri 2019-03-01]
	Added textproc/py-markups version 3.0.0 [gutteridge 2019-03-01]
	Updated textproc/cldr-emoji-annotation to 34.0.0.0 [tsutsui 2019-03-01]