summaryrefslogtreecommitdiffstats
path: root/ChangeLog.txt
blob: 635616df50568ef6cfc9248a8dade30b0c249e0b (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
Sat Aug 27 23:37:49 UTC 2016
academic/mendeleydesktop: Updated for version 1.16.2.
academic/scipy3: Added (python library).
academic/scipy: Updated for version 0.18.0.
academic/veusz: Updated for version 1.24.
accessibility/unclutter: Fix host.def issue.
audio/abcde: Updated for version 2.7.2.
audio/kid3: Updated for version 3.4.2.
audio/python-audiotools: Updated for version 3.1.1.
audio/qmmp: Updated for version 0.10.3.
audio/snd: Updated for version 16.7.
desktop/ambiance-radiance-flat-colors-gtk-theme: Added (gtk theme).
desktop/areao43-icon-theme: Added (icon theme).
desktop/florence: Added (virtual keyboard).
desktop/glabels: Removed APPROVED line.
desktop/gtk-theme-Albatross: Added (Desktop Suite for Xfce).
desktop/gtk-theme-Blackbird: Added (Dark Desktop Suite for Xfce).
desktop/gtk-theme-Bluebird: Added (Desktop Suite for Xfce).
desktop/gtk-theme-Greybird: Added (Desktop Suite for Xfce).
desktop/gtk-theme-Orion: Added (modern light theme).
desktop/i3lock: Added (simple screen locker).
desktop/lumina: Updated for version 1.0.0-p2 & xinitrc fix.
desktop/pekwm: Update script.
desktop/sawfish: Updated for version 1.12.0.
desktop/wmwebcam: New maintainer, minor fixes.
desktop/xdgurl: Added (install helper program for desktop stuff).
desktop/xfce4-embed-plugin: Updated for version 1.6.0.
desktop/xtrlock: Fix host.def issue.
development/GitEye: Added (Desktop Git Client).
development/THE: Fix html documentation.
development/atom: Updated for version 1.9.9.
development/cycler: Added (composable cycles in python).
development/flow: Updated for version 0.31.0.
development/google-go-lang: Updated for version 1.7.
development/hhvm: Updated for version 3.14.5.
development/mono: Fix source arch on x86.
development/monodevelop-database: Removed (no longer build).
development/monodevelop: Updated for version 6.0.2.73.
development/neovim: Updated for version 0.1.5.
development/numpy-legacy3: Added (a Python extension).
development/numpy-legacy: Updated to match ATLAS version.
development/numpy3: Updated for version 1.11.1
development/numpy: Updated for version 1.11.1.
development/perf: Updated for version 4.4.19.
development/pycharm: Updated for version 2016.2.2.
development/pyenchant: Updated for version 1.6.8.
development/sbcl: Updated for version 1.3.8.
development/simulavr: Updated for version git20160221.
development/uncrustify: Updated for version 0.63.
development/universal-ctags: Updated for version f2d8a3d.
games/angband: i486 -> i586.
games/atanks: i486 -> i586.
games/commandergenius: Added (engine for Commander Keen games).
games/fuse-emulator: Updated for version 1.2.2.
games/koules: Fix host.def issue.
games/moria: i486 -> i586.
games/rogue: i486 -> i586, update DOWNLOAD.
games/stone_soup: i486 -> i586.
games/tome: i486 -> i586.
games/xmahjongg: Added (xmahjongg: Xmahjongg).
gis/CreateCloudMap: Updated for version 0.8.0.
gis/GMT: Updated for gshhg-gmt-2.3.6.
gis/mapnik: Updated for version 3.0.10.
gis/qgis: Updated for version 2.16.2.
graphics/fig2sxd: Updated for version 0.22.1.
graphics/kuickshow: i486 -> i586.
graphics/pngcrush: Updated for version 1.8.4.
graphics/qcomicbook: Fixed downlad link.
graphics/shutter: Updated for version 0.93.1.
graphics/simple-scan: Aded (simple scanning utility).
graphics/xmedcon: Updated for version 0.14.1.
libraries/DateTime: Updated for version 4.1.1.
libraries/PySoundCard: Updated for version 0.5.2.
libraries/SFML: Updated for version 2.4.0.
libraries/afflib: Updated for version 3.7.7.
libraries/atlas: Updated for version 3.10.3.
libraries/bamf: Updated for version 0.5.3.
libraries/botocore: Updated for version 1.4.48.
libraries/console_bridge: Added (Robot OS Library).
libraries/goffice: Updated for version 0.10.32.
libraries/grantlee-qt5: Added (template engine written in Qt5).
libraries/grx: i486 -> i586.
libraries/html5lib: Update DOWNLOAD url.
libraries/lapack-atlas: Updated for version 3.6.1.
libraries/libbde: Updated for version 20160731.
libraries/libburn: Updated for version 1.4.4.
libraries/libesedb: Updated for version 20160622.
libraries/libevt: Updated for version 20160421.
libraries/libevtx: Updated for version 20160421.
libraries/libewf: Updated for version 20140608.
libraries/libfastjson: Added (a fork from json-c).
libraries/libfsntfs: Added (libYAL NTFS library).
libraries/libfvde: Added (libYAL FvDE volume library).
libraries/libfwnt: Added (library to access Windows NT data types).
libraries/libisoburn: Updated for version 1.4.4.
libraries/libisofs: Updated for version 1.4.4.
libraries/libkate: Update DOWNLOAD url.
libraries/liblightgrep: Update DOWNLOAD, i486->i586.
libraries/liblnk: Updated for version 20160420.
libraries/libmsiecf: Updated for version 20160813.
libraries/libolecf: Updated for version 20160814.
libraries/libregf: Updated for version 20160424.
libraries/librelp: Updated for version 1.2.12.
libraries/libsmraw: Updated for version 20160424.
libraries/libspectrum: Updated for version 1.2.2.
libraries/libvslvm: Added (libYAL Linux LVM library).
libraries/live555: Updated for version 2016.08.27
libraries/matplotlibs: Updated for version 1.5.2.
libraries/pcre2: Added (Perl 5-style regular exprs. 2nd version).
libraries/pies2overrides: Updated for version 2.6.7.
libraries/pies: Updated for version 2.6.7.
libraries/protobuf-c: Added (Protocol Buffers in C).
libraries/ptypes: Added (C++ Portable Types Library).
libraries/pylast: Update script and HOMEPAGE.
libraries/python-xlrd: Updated for version 1.0.0.
libraries/tbb: Updated for version 4.4u5.
libraries/urdfdom: Added (Robot Format Header).
libraries/urdfdom_headers: Added (Robot Description Format headers).
libraries/uuid: Added (OSSP Universally Unique Identifier).
libraries/vigra: Updated for version 1.11.0.
misc/mosquitto: Updated for version 1.4.10
misc/ramdefrag: Added (so-called Memory Defragmenter).
misc/subsurface: Updated for version 4.5.6.
misc/xdelta: Update DOWNLOAD url.
multimedia/kodi: Updated for version 16.1
network/PAC: Added (Perl Auto Connector).
network/PySocks: Added (Python SOCKS client module).
network/awscli: Updated for version 1.10.58.
network/bitcoin: Updated for version 0.13.0.
network/chrony: Updated for version 2.4.
network/dianara: Added (Pump.io client written using Qt4).
network/fail2ban: Updated for version 0.9.5.
network/filezilla: Updated for version 3.21.0.
network/flexget: Updated for version 2.3.3.
network/movgrab: Updated for version 1.2.1.
network/nethogs: Updated for version 0.8.5.
network/openfortivpn: Added (PPP+SSL VPN tunnel client).
network/pentadactyl: Updated for version 20160824.
network/pure-ftpd: Updated for version 1.0.43.
network/tcpflow: Added (data capture).
network/telegram: Updated for version 0.10.1.
network/trojita: Updated for version 0.7.
network/vivaldi: Updated for version 1.3.551.38.
network/you-get: Updated for version 0.4.536.
network/youtube-dl: Updated for version 2016.08.22.
office/CherryTree: Updated for version 0.37.4.
office/calibre: Updated for version 2.65.1
office/gnumeric: Updated for version 1.12.32.
office/hamster: Added (Gnome time tracker).
office/hevea: Updated for version 2.29.
perl/Gtk2-GladeXML: Added (perl bindings for Glade 2.x).
perl/perl-Crypt-OpenSSL-Bignum: i486 -> i586.
perl/perl-Crypt-OpenSSL-DSA: Added (DSA using OpenSSL).
perl/perl-Crypt-OpenSSL-EC: Added (OpenSSL EC extension).
perl/perl-Crypt-OpenSSL-ECDSA: Added (perl extn for OpenSSL ECDSA).
perl/perl-Crypt-OpenSSL-RSA: i486 -> i586.
perl/perl-Crypt-OpenSSL-Random: Updated for version 0.11.
perl/perl-Data-Random: Added (Perl module to generate random data).
perl/perl-Digest-GOST: Added (perl module Digest::GOST).
perl/perl-Expect: Added (perl module).
perl/perl-GD: Added (perl bindings for GD image library).
perl/perl-Gnome2-Vte: Added (perl module Gnome2::Vte).
perl/perl-Gtk2-Ex-Simple-List: Added (perl module).
perl/perl-IO-Socket-Timeout: Added (IO::Socket::Timeout).
perl/perl-IO-Stty: Added (perl module IO::Stty).
perl/perl-IO-Tty: Updated for version 1.12.
perl/perl-MailTools: Updated for version 2.18.
perl/perl-Net-ARP: Added (Perl extension for creating ARP packets).
perl/perl-Net-DNS-SEC: Added (DNSSEC extensions to Net::DNS).
perl/perl-PerlIO-via-Timeout: Added (PerlIO::via::Timeout).
perl/perl-Test-SharedFork: Updated for version 0.35.
perl/perl-Test-TCP: Updated for version 2.17.
perl/perl-extutils-makemaker: Updated for version 7.24.
python/Flask-Cors: Updated for version 3.0.0.
python/XlsxWriter: Added (write Excel 2007+ XLSX files).
python/artifacts: Added (ForensicArtifacts.com Artifact Repository).
python/binplist: Updated for version 0.1.5.
python/colorclass: Added (ANSI color text library for Python).
python/dfdatetime: Added (Digital Forensics Date and Time).
python/dfvfs: Updated for version 20160108.
python/distorm: Added (disassembler library).
python/dulwich: Updated for version 0.14.1.
python/hg-git: Updated for version 0.8.5.
python/netifaces: Updated for version 0.10.5
python/pefile: Added (access Portable Executable files).
python/pillowfight: Added (transition from PIL to Pillow).
python/pip: Updated for version 8.1.2.
python/pipdeptree: Updated for version 0.7.0.
python/plaso: Updated for version 1.4.0.
python/prompt_toolkit: Updated for version 1.0.7.
python/pybluez: Fix download link.
python/pyparsing: Updated for version 2.1.8.
python/pyqode.qt: Fix .info file.
python/pyresample: Updated for version 1.2.5.
python/pytest: Updated for version 3.0.0.
python/pytsk: Updated for version 20160721.
python/requirements-detector: Updated for version 0.5.2.
python/virtualenv: Updated for version 15.0.3.
system/Iosevka: Updated for version 1.9.2.
system/argyllcms: Updated for version 1.8.3.
system/cantarell-fonts: Updated for version 0.0.25.
system/crmsh: Added (cluster management shell).
system/ddrescue-gui: Updated for version 1.6.1.
system/distorm3: Moved to python/distorm.
system/letsencrypt.sh: Fix tarball handling.
system/packagekit: Added (packagekit: PackageKit).
system/patchelf: Added (A utility for patching ELF binaries).
system/pdsh: Added (Parallel Distributed Shell).
system/pyarchey: Updated for version 0.7.
system/qemu-guest-agent: Added (QEMU Guest Agent daemon).
system/rsyslog: Updated for version 8.21.0.
system/rxvt-unicode: Fix SlackBuild.
system/sbsigntools: Fixed downlad links.
system/simpleburn: Updated for version 1.8.1.
system/sleuthkit: Updated for version 4.3.0.
system/ttyrec: Fix HOMEPAGE.
system/vagrant: Updated for version 1.8.5.
system/volatility: Updated for version 2.5.
system/zstd: Added (fast lossless compression).
+--------------------------+
Sat Aug 20 00:54:34 UTC 2016
academic/avogadro: Updated for version 1.2.0
academic/ent: i486 => i586.
academic/pianobooster: i486 => i586.
academic/wmcalc: New maintainer, minor fixes.
accessibility/espeak: i486 => i586.
accessibility/flite: i486 => i586.
accessibility/svkbd: i486 => i586.
accessibility/unclutter: i486 => i586.
accessibility/xdotool: i486 => i586.
accessibility/xsel: i486 => i586.
audio/alsa-tools: i486 => i586.
audio/alsacap: i486 => i586.
audio/bristol: i486 => i586.
audio/calf-ladspa: i486 => i586.
audio/calf: i486 => i586.
audio/caps: i486 => i586.
audio/clam: i486 => i586.
audio/clam_annotator: i486 => i586.
audio/clam_voice2midi: i486 => i586.
audio/cmt: i486 => i586.
audio/connie: i486 => i586.
audio/creox4: i486 => i586.
audio/ecasound: i486 => i586.
audio/eyeD3: Updated for version 0.7.9
audio/fIcy: i486 => i586.
audio/fluidsynth-dssi: i486 => i586.
audio/fmmidi: i486 => i586.
audio/foo-yc20: i486 => i586.
audio/ghostess: i486 => i586.
audio/grip2: i486 => i586.
audio/gtklick: i486 => i586.
audio/horgand: i486 => i586.
audio/invada_studio_plugins_lv2: i486 => i586.
audio/jaaa: i486 => i586.
audio/jack-keyboard: i486 => i586.
audio/jack-rack: i486 => i586.
audio/jack-tools: i486 => i586.
audio/jack_delay: i486 => i586.
audio/jackmeter: i486 => i586.
audio/jalv: i486 => i586.
audio/japa: i486 => i586.
audio/jkmeter: i486 => i586.
audio/jnoise: i486 => i586.
audio/klick: i486 => i586.
audio/lingot: i486 => i586.
audio/lsmi: i486 => i586.
audio/lv2-mda-metapiano: i486 => i586.
audio/lv2dynparam1: i486 => i586.
audio/lv2file: i486 => i586.
audio/match-vamp-plugin: i486 => i586.
audio/mda-lv2: i486 => i586.
audio/mididings: i486 => i586.
audio/midillo: i486 => i586.
audio/millennium-plugins: i486 => i586.
audio/mp3gain: i486 => i586.
audio/mp3splt-gtk: Fix typo in MAINTAINER.
audio/mp3splt: Fix typo in MAINTAINER.
audio/mp3val: i486 => i586.
audio/mpd: Updated for version 0.19.18.
audio/ngjackspa: i486 => i586.
audio/nnls-chroma: i486 => i586.
audio/oss: i486 => i586.
audio/qm-vamp-plugins: i486 => i586.
audio/qmidiroute: i486 => i586.
audio/rakarrack: i486 => i586.
audio/rev-plugins: i486 => i586.
audio/rubberband: i486 => i586.
audio/sfc: i486 => i586.
audio/sonic-visualiser: i486 => i586.
audio/sooperlooper: i486 => i586.
audio/swh-plugins-lv2: i486 => i586.
audio/tap_plugins: i486 => i586.
audio/tapiir: i486 => i586.
audio/transcribe: i486 => i586.
audio/vamp-plugin-sdk: i486 => i586.
audio/vcf_plugins: i486 => i586.
audio/vocoder-ladspa: i486 => i586.
audio/vocoder: i486 => i586.
audio/waon: i486 => i586.
audio/wineasio: i486 => i586.
audio/wmusic: New maintainer, minor fixes.
audio/xmms-jack: i486 => i586.
audio/xmms-mp4: i486 => i586.
audio/xsynth-dssi: i486 => i586.
audio/zita-ajbridge: i486 => i586.
audio/zita-dpl1: i486 => i586.
audio/zita-rev1: i486 => i586.
audio/zynjacku: i486 => i586.
desktop/glabels: Added (Label Designer).
desktop/idesk: i486 => i586.
desktop/j4-dmenu-desktop: i486 => i586.
desktop/lumina: Fix xinitrc.
desktop/peksystray: i486 => i586.
desktop/slock: Updated for version 1.3.
desktop/spectrwm: Updated for version 3.0.2.
desktop/tint2: Update script.
desktop/trayer-srg: i486 => i586.
desktop/wmblob: New maintainer, minor fixes.
desktop/wmclock: i486 => i586.
desktop/wmmon: i486 => i586.
desktop/wmtimer: New maintainer, minor fixes.
desktop/wmudmount: Updated for version 2.2, new maintainer.
desktop/wmweather+: New maintainer, minor fixes.
desktop/wmxss: New maintainer, minor fixes.
desktop/xtrlock: i486 => i586.
development/OpenCobolIDE: Updated for version 4.7.4.
development/as31: i486 => i586.
development/atasm: i486 => i586.
development/atom: Updated for version 1.9.8.
development/cc65: i486 => i586.
development/chicken: Updated for version 4.11.0.
development/dhex: i486 => i586.
development/ex-vi: i486 => i586.
development/fsharp: Don't run cert-sync (moved to mono).
development/gnulib: i486 => i586.
development/hub: Updated for version 2.2.5.
development/inform: i486 => i586.
development/ldns: Script cleanup
development/leo: Updated for version 5.3.final.
development/love-legacy072: i486 => i586.
development/love-legacy080: i486 => i586.
development/ltrace: i486 => i586.
development/mono: Updated for version 4.4.2.11.
development/mutagen: Updated for version 1.34.1.
development/nodejs: Updated for version 4.5.0.
development/obcpl: i486 => i586.
development/p4v: Updated for version 2015.2.1315639.
development/pcc: i486 => i586.
development/pyenchant: Updated for version 1.6.6 + new maintainer.
development/referenceassemblies-pcl: Added (Reference Assemblies).
development/snappy: Updated for version 1.1.3.
development/sphinx_rtd_theme: Added (sphinx theme).
development/spyder: Updated for version 2.3.9
development/squirrel-sql: Updated for version 3.7.1.
development/srecord: i486 => i586.
development/tstoolbox: Updated for version 0.12.12.8.
development/unifdef: i486 => i586.
development/xa: i486 => i586.
development/xtruss: i486 => i586.
games/adl: i486 => i586.
games/aklabeth: Added (remake of Richard Garriott's Ultima prequel).
games/alephone: i486 => i586.
games/atari++: i486 => i586.
games/atari800: i486 => i586.
games/bastet: i486 => i586.
games/brickout: i486 => i586.
games/bstone: Added (first-person shooter game).
games/burgerspace: i486 => i586.
games/ceferino: i486 => i586.
games/chocolate-doom: i486 => i586.
games/circuslinux: i486 => i586.
games/clonekeen: i486 => i586.
games/colem: i486 => i586.
games/cosmosmash: i486 => i586.
games/defendguin: i486 => i586.
games/doomretro: Adds the .desktop file and icon.
games/doomseeker: i486 => i586.
games/dunelegacy: i486 => i586.
games/dungeon: i486 => i586.
games/eduke32: Fix SDL2=auto build.
games/fizmo: Fix REQUIRES.
games/frotz: i486 => i586.
games/glbsp: i486 => i586.
games/gtkballs: i486 => i586.
games/gtklife: i486 => i586.
games/icebreaker: i486 => i586.
games/jezzball-kazzmir: i486 => i586.
games/jfsw: i486 => i586.
games/jzintv: i486 => i586.
games/kardsgt: i486 => i586.
games/koules: i486 => i586.
games/liquidwar6: i486 => i586.
games/lmarbles: i486 => i586.
games/madbomber: i486 => i586.
games/maelstrom: i486 => i586.
games/mame: i486 => i586.
games/megamario: Added (Super Mario Brothers clone).
games/mgba: Fixed MD5SUM.
games/micropolis: i486 => i586.
games/nevernoid: i486 => i586.
games/nexuiz: i486 => i586.
games/noteye: i486 => i586.
games/o2em: i486 => i586.
games/oblige-legacy4: i486 => i586.
games/oblige: i486 => i586.
games/odamex: i486 => i586.
games/openjazz: i486 => i586.
games/openmortal: i486 => i586.
games/opentyrian: i486 => i586.
games/openyahtzee: i486 => i586.
games/ostrichriders: i486 => i586.
games/pacman-arena: i486 => i586.
games/penguin-command: i486 => i586.
games/pentagram: i486 => i586.
games/pom1: i486 => i586.
games/rott: i486 => i586.
games/skulltag: i486 => i586.
games/smc: i486 => i586.
games/sms_sdl: i486 => i586.
games/snes9x: i486 => i586.
games/solarwolf: i486 => i586.
games/stratagus: i486 => i586.
games/supermariowar: i486 => i586.
games/syobonaction: i486 => i586.
games/taipan: i486 => i586.
games/tmw: Update DOWNLOAD url.
games/torcs: i486 => i586.
games/trackballs: i486 => i586.
games/transfusion: i486 => i586.
games/typhoon_2001: i486 => i586.
games/ucr: i486 => i586.
games/ufoai: i486 => i586.
games/uqm: i486 => i586.
games/vectoroids: i486 => i586.
games/wargus: i486 => i586.
games/wmquake: New maintainer, fix build.
games/wolf4sdl: i486 => i586.
games/xcowsay: i486 => i586.
games/xroar: i486 => i586.
games/xu4: i486 => i586.
games/yae: i486 => i586.
games/yahtzee: i486 => i586.
games/yar: i486 => i586.
games/z26: i486 => i586.
games/zennode: i486 => i586.
games/zoom: i486 => i586.
games/zsnes: i486 => i586.
games/ztools: i486 => i586.
gis/geographiclib-python: Added (Python geodesic routines).
gis/pyshp: Updated for version 1.2.9.
graphics/GraphicsMagick: i486 => i586.
graphics/baires: i486 => i586.
graphics/fbida: Fix typo in EMAIL.
graphics/fbv: i486 => i586.
graphics/flpsed: i486 => i586.
graphics/gifsicle: i486 => i586.
graphics/graph-easy: Updated for version 0.76.
graphics/imgmin: Added (Automated lossy JPEG optimization).
graphics/mcomix: i486 => i586.
graphics/paraview: Enable optional PythonQt embedding support
graphics/psftools: i486 => i586.
graphics/vuescan: Updated for version 9.5.54.
libraries/aqbanking: Updated for version 5.6.12.
libraries/argtable: i486 => i586.
libraries/botocore: Updated for version 1.4.47.
libraries/configobj: i486 => i586.
libraries/crossguid: Added (cross platform C++ GUID/UUID library).
libraries/dcadec: Added (DTS Coherent Acoustics decoder).
libraries/flatzebra: i486 => i586.
libraries/girara: i486 => i586.
libraries/gwenhywfar: Updated for version 4.15.3.
libraries/jbig2dec: i486 => i586.
libraries/lgi: Updated for version 0.9.1.
libraries/libfdk-aac: Update 32bit ARCH + new maintainer
libraries/libicns: i486 => i586.
libraries/libmp3splt: Fix typo in MAINTAINER.
libraries/libnfs: Updated for version 1.10.0
libraries/libpst: Fix typo in MAINTAINER.
libraries/libpst: i486 => i586.
libraries/libsigc++-legacy12: i486 => i586.
libraries/libsmf: i486 => i586.
libraries/libtsm: i486 => i586.
libraries/libuchardet: Fix DOWNLOAD url.
libraries/libwebsockets: Added (C websocket library).
libraries/ltm: i486 => i586.
libraries/lvtk: i486 => i586.
libraries/podofo: Updated for version 0.9.4
libraries/pyqode.core: Updated for version 2.10.0.
libraries/zita-convolver: i486 => i586.
misc/cwiid: i486 => i586.
misc/heyu: i486 => i586.
misc/jmri: Updated for version 3.10.1 + new maintainer.
misc/keychain: Updated for version 2.8.3
multimedia/MediathekView: Updated for version 11.
multimedia/apetag: New maintainer, minor fixes.
multimedia/devedeng: Updated for version 4.8.0.
multimedia/glyr: Updated for version 1.0.9, new maintainer.
multimedia/gpac: Updated for version 0.6.1.
multimedia/gpodder: Updated for version 3.9.0.
multimedia/l-smash: Updated for version 2.9.1, new maintainer.
multimedia/lsdvd: i486 => i586.
multimedia/mtpfs: i486 => i586.
multimedia/nted: i486 => i586.
multimedia/obs-studio: Updated for version 0.15.4 + new maintainer
multimedia/vitunes-mplayer: i486 => i586.
network/FireWorks: Updated for version 1.3.4.
network/Pafy: Updated for version 0.5.2.
network/amavisd-new: Updated for version 2.11.0.
network/authbind: i486 => i586.
network/awscli: Updated for version 1.10.57.
network/bmon: i486 => i586.
network/cicb: i486 => i586.
network/clamav-unofficial-sigs: Updated for version 5.4.1.
network/flexget: Updated for version 2.2.20.
network/httpie: Updated for version 0.9.6.
network/irssi_otr: i486 => i586.
network/museek+: i486 => i586.
network/offlineimap: Updated for version 7.0.5.
network/phpmyadmin: Updated for version 4.6.4.
network/rhapsody: i486 => i586.
network/socat: Updated for version 1.7.3.1
network/surf: i486 => i586.
network/tor-browser: Updated for version 6.0.4.
network/transmission: i486 => i586.
network/tribler: i486 => i586.
network/uTox: Updated for version 0.9.8 + new maintainer
network/uget: i486 => i586.
network/wmnd: New maintainer, minor fixes.
network/youtube-dl: Updated for version 2016.08.13.
office/calibre: Updated for version 2.64.0
office/convertlit: i486 => i586.
office/diffpdf: Added (Compare PDF Files).
office/xtrkcad: Updated for version 4.2.3b.
office/zathura-cb: i486 => i586.
office/zathura-djvu: i486 => i586.
office/zathura-pdf-mupdf: i486 => i586.
office/zathura-ps: i486 => i586.
office/zathura: i486 => i586.
perl/perl-Math-GMPq: Updated for version 0.41.
perl/perl-Module-Build: Updated for version 0.4220.
perl/perl-data-dump: i486 => i586.
perl/perl-lwp-useragent-cached: i486 => i586.
perl/perl-text-unaccent: i486 => i586.
perl/perl-xml-fast: i486 => i586.
python/Flask-Cors: Updated for version 2.1.3.
python/Pygments: Updated for version 2.1.3.
python/Scrapy: Updated for version 1.1.2.
python/fabric: Added (tool for remote execution and deployment).
python/flask-paginate: Added (Simple paginate support for flask).
python/githubpy: Added (A simple GitHub v3 API SDK for Python).
python/gmpy: i486 => i586.
python/gunicorn: Added (WSGI HTTP Server for UNIX).
python/prompt_toolkit: Updated for version 1.0.6.
python/pyliblo: i486 => i586.
python/pyqode.cobol: Added (Adds COBOL support to pyqode.core).
python/pyqode.qt: Added (Wrapper library for PyQt and PySIde).
python/python-keybinder: i486 => i586.
python/python-requests-kerberos: Updated for version 0.10.0.
python/python-requests: Update DOWNLOAD url.
python/python3-future: Added (Python 2/3 compatibility).
python/s3transfer: Updated for version 0.1.2.
python/stevedore: Updated for version 1.17.1.
ruby/rubygem-gosu: Updated for version 0.10.8.
system/a2tools: i486 => i586.
system/aha: i486 => i586.
system/arc: i486 => i586.
system/arj: i486 => i586.
system/blake2: Updated for version 20160619.
system/borgbackup: Added (deduplicating backup program).
system/cbmbasic: i486 => i586.
system/conky: Updated for version 1.10.4.
system/cpmtools: i486 => i586.
system/csh: i486 => i586.
system/d52: i486 => i586.
system/dar: Updated for version 2.5.5.
system/ded: i486 => i586.
system/dos33fsprogs: i486 => i586.
system/findpkg: Updated for version 20160710.
system/forkstat: Updated for version 0.01.14.
system/fsv: i486 => i586.
system/fsviewer: i486 => i586.
system/gphotofs: i486 => i586.
system/isomd5sum: i486 => i586.
system/kegs: i486 => i586.
system/kmscon: i486 => i586.
system/kvpm: Fix download link.
system/lbzip2: i486 => i586.
system/lhasa: i486 => i586.
system/linuxconsoletools: i486 => i586.
system/lz4: i486 => i586.
system/macutils: i486 => i586.
system/man-db: i486 => i586.
system/man-pages-es: Remove unused SLKCFLAGS.
system/mlterm: Updated for version 3.7.2.
system/pipemeter: i486 => i586.
system/polyglotman: i486 => i586.
system/read-edid: i486 => i586.
system/reptyr: i486 => i586.
system/rmw: Updated for version 2016.08.17.01a.
system/rtirq: Use ARCH=noarch.
system/sandy: i486 => i586.
system/sdl-jstest: Fix typo in MAINTAINER.
system/sdl-jstest: i486 => i586.
system/suckless-tools: i486 => i586.
system/sysdig: Updated for version 0.11.0
system/tabbed: i486 => i586.
system/trackfs: i486 => i586.
system/u3-tool: i486 => i586.
system/unac: i486 => i586.
system/unshield: i486 => i586.
system/usbmon: i486 => i586.
system/vcp: i486 => i586.
system/vinterm: i486 => i586.
system/wmgtemp: New maintainer, minor fixes.
system/xautomation: i486 => i586.
system/xonsh: Updated for version 0.4.5.
system/zerofree: i486 => i586.
+--------------------------+
Sun Aug 14 02:16:18 UTC 2016
development/cppcheck: Updated for version 1.75.
development/hhvm: Updated for version 3.14.4.
games/ds-models: /usr/bin => /usr/games.
games/mame: Fix MD5SUM.
games/sdlpop: Added (Prince of Persia rewrite).
games/wordwarvi: Fix script.
libraries/botocore: Updated for version 1.4.46.
libraries/dropbox-python: Updated for version 6.7.0.
libraries/enca: Updated for version 1.18
libraries/hdf: Fixes to build script.
libraries/irrlicht: Updated for version 1.8.4
libraries/libxml++: Removed dep.
libraries/qt5: Rename linguist desktop file
multimedia/Mopidy: Updated for version 2.0.1.
multimedia/spotify: Updated for version 1.0.36.120.g536a862f.
network/awscli: Updated for version 1.10.56.
network/flexget: Updated for version 2.2.17.
network/youtube-dl: Updated for version 2016.08.12.
python/python-requests: Updated for version 2.11.0.
system/cantarell-fonts: Use noarch.
system/rover: Fix typo + remove config.h.
+--------------------------+
Sat Aug 13 00:24:40 UTC 2016
academic/fet: Updated for version 5.30.2.
academic/reduce-algebra: Added (portable computer algebra system).
accessibility/pastebinit: Updated for version 1.5.
accessibility/unclutter: Fix gcc5 warnings.
accessibility/wgetpaste: Updated for version 2.28.
audio/eawpats: Fix HOMEPAGE.
audio/fmmidi: Updated for version 1.0.1.
audio/guitarix: Updated for version 0.35.1.
audio/match-vamp-plugin: Updated for version 1.0.
audio/nnls-chroma: Updated for version 1.1.
audio/ponymix: Updated for version 5
audio/qmidiroute: Updated for version 0.4.0.
audio/sonic-visualiser: Updated for version 2.5.
audio/transcribe: Fix DOWNLOAD, add libpng-legacy12 to REQUIRES.
audio/vamp-plugin-sdk: Updated for version 2.6.
desktop/cwp: Updated for version 1.12.1.
desktop/gxkb: Updated for version 0.7.7.
desktop/j4-dmenu-desktop: Updated for version 2.14.
desktop/lumina: Updated for version 1.0.0-p1.
desktop/obmenu-generator: Update script.
desktop/sawfish: Updated for version 1.11.91.
desktop/xdgmenumaker: Updated for version 0.9.
desktop/xtrlock: Updated for version 2.8.
development/SQLAlchemy: Add python3 support.
development/bas55: Updated for version 1.10.
development/conan: Added (distributed package manager).
development/ex-vi: Fix build.
development/fossil: Updated for version 1.35.
development/kaaedit: Updated for version 0.53.0.
development/komodo-edit: Fix ARCH detection.
development/komodo-ide: Fix ARCH detection.
development/openjdk6: Added (Open Implementation of JDK).
development/openjdk8: Added (Open Implementation of JDK).
development/openjdk: Updated for version 7u111b01.
development/pycharm: Updated for version 2016.2.1.
development/unifdef: Updated for version 2.11.
development/uz80as: Added (Micro Z80 assembler).
games/an: Updated for version 1.2.
games/bloodcm: Added (first-person shooter game).
games/burgerspace: Fix HOMEPAGE and DOWNLOAD.
games/colem: Updated for version 3.7.
games/cosmosmash: Fix HOMEPAGE and DOWNLOAD.
games/crispy-doom: Updated for version 3.4.
games/dhewm3: Updated for version 1.4.1.
games/doomretro: Added (The classic, refined DOOM source port).
games/eduke32: Updated for version 20160704_5811.
games/fbalpha: Added (libretro port of Final Burn Alpha).
games/fizmo: Updated for version 0.7.10.
games/fortune_doctor_who: Updated for version 20150503.
games/freedoom: Updated for version 0.10.1.
games/gzdoom: Updated for version 2.1.1.
games/hatari: Updated for version 1.9.0.
games/innoextract: Updated for version 1.6 (Moved from system).
games/koules: Update README with pulseaudio info.
games/libretro-fba: Removed (replaced by fbalpha).
games/libretro-lutro: Updated for version 2016.08.07_9f8464d.
games/maelstrom: Fix build.
games/mame: Updated for version 0.176.
games/mgba: Updated for version 0.4.1.
games/micropolis: Fix DOWNLOAD.
games/openyahtzee: Updated for version 1.9.3.
games/ostrichriders: Added (clone of the arcade game "Joust").
games/pangzero: Added (clone of arcade game "Super Pang").
games/pasang-emas: Updated for version 5.0.0.
games/skulltag: Add REQUIRES=libpng-legacy12.
games/smc: Update for 14.2, bump BUILD.
games/sms_sdl: Fix/enhance shell script wrapper.
games/stella: Updated for version 4.7.2.
games/torcs: Updated for version 1.3.7.
games/trigger-rally: Updated for version 0.6.4.
games/vera: Updated for version 1.23.
games/wordwarvi: Updated for version 1.0.2.
games/xarchon: Added (fantasy-themed board game).
games/xu4: Update for 14.2, bump BUILD.
games/yamagi-quake2: Updated for version 5.34.
games/zdbsp: Updated for version 1.19.
gis/GMT: Added (Generic Mapping Tools).
gis/navit: Added (gps navigation system with routing engine)
graphics/mapcrafter: Added (Minecraft map renderer).
graphics/mcomix: Updated for version 1.2.1.
graphics/paraview: Enable Xdmf3
graphics/vsxu: Updated for version 0.5.1
libraries/CherryPy: Updated for version + new maintainer.
libraries/GitPython: Add python3 support.
libraries/botocore: Updated for version 1.4.44.
libraries/cdk: Updated for version 5.0_20160131.
libraries/compiz-plugins-experimental: Fixed REQUIRES.
libraries/dropbox-python: Updated for version 6.6.2.
libraries/flatzebra: Fix HOMEPAGE and DOWNLOAD.
libraries/girara: Updated for version 0.2.6.
libraries/jbig2dec: Updated for version 0.13.
libraries/libdc1394: Updated for version 2.2.4.
libraries/libfaketime: Fixed MD5SUM.
libraries/libpst: Updated for version 0.6.67.
libraries/live555: Updated for version 2016.08.07
libraries/ltm: Updated for version 1.0.
libraries/netcdf: Fixed build with HDF4.
libraries/npth: Added (New GNU Portable Threads Library).
libraries/platform: Updated for version 2.0.1.
libraries/qwt: Updated for version 6.1.3
libraries/tinyxml2: Updated for version 4.0.1.
multimedia/aces-dev: Fixed tarball handling.
multimedia/aces_container: Fixed tarball handling.
multimedia/spotify: Updated for version 1.0.34.146.g28f9eda2.
multimedia/vlc: Updated for version 2.2.4
multimedia/youtube-viewer: Updated for version 3.2.3.
network/CherryMusic: Updated for version 0.37.2.
network/awscli: Updated for version 1.10.54.
network/bmon: Updated for version 3.9.
network/corebird: Fixed REQUIRES.
network/flexget: Updated for version 2.2.16.
network/icecat: Build with -Os to prevent crashes.
network/irssi_otr: Updated for version 1.0.1.
network/lighttpd2: Updated for version 20151204_3a4698d.
network/lighttpd: Refactor configuration, changed maintainer.
network/midori: Remove libunique from REQUIRES, cleanups.
network/nbd: Updated for version 3.14
network/ntop: Fixed build with rrdtool-1.6.0.
network/smcroute: Fixed DOWNLOAD.
network/syncthing: Updated for version 0.14.4.
network/tor: Updated for version 0.2.8.6 + new maintainer.
network/uget: Updated for version 2.0.8.
network/vivaldi: Updated for version 1.3.551.30.
network/x11vnc: Update maintainer details
network/youtube-dl: Updated for version 2016.08.10.
network/yturl: Updated for version 2.0.1.
office/CherryTree: Updated for version 0.37.3.
office/LibreOffice: Updated for version 5.2.0.4
office/convertlit: Fix lit2epub script.
office/fbpdf: Updated for version 20160804.
office/lyx: Updated for version 2.2.1.
office/mupdf: Updated for version 1.9a.
office/zathura-cb: Updated for version 0.1.5.
office/zathura-djvu: Updated for version 0.2.5.
office/zathura-pdf-mupdf: Updated for version 0.3.0.
office/zathura-ps: Updated for version 0.2.3.
office/zathura: Updated for version 0.3.6.
perl/perl-extutils-makemaker: Updated for version 7.20.
python/APScheduler: Updated for version 3.2.0.
python/Flask-Compress: Added (compress responses in your Flask app).
python/Flask-Cors: Added (Flask extension for handling CORS).
python/Flask-Login: Added (User session management for Flask).
python/Flask-RESTful: Added (framework for creating REST APIs).
python/PyGithub: Updated for version 1.27.1.
python/PythonQt: Added (Python binding for Qt).
python/aniso8601: Added (library for parsing ISO 8601 strings).
python/cfgparse: Added (Python Configuration Parser Module).
python/euca2ools: Updated for 3.3.1
python/fasteners: Added (useful locks for Python).
python/feedparser: Updated for version 5.2.1
python/flake8: Updated for version 3.0.4.
python/flask-restplus: Added (Flask extn for building REST APIs).
python/funcsigs: Added (Backport of the PEP 362).
python/monotonic: Added (implementation of time.monotonic()).
python/monty: Updated for version 0.9.0.
python/pathlib: Added (Object-oriented filesystem paths).
python/pyjwt: Added (JSON Web Token implementation in Python).
python/python-Safe: Added (Check the password strength).
python/python-certifi: Updated for version 2016.8.8.
python/python-keybinder: Updated for version 0.3.1.
python/python-patch: Added (library to parse+apply unified diffs).
python/python-requestbuilder: Updated for version 0.5.2
python/python-requests: Updated for version 2.10.0.
python/typing: Added (Type Hints for Python).
system/acpi_call: Added (kernel module for calling ACPI methods).
system/aha: Updated for version 0.4.9.
system/etckeeper: Updated for version 1.18.5.
system/isomd5sum: Updated for version 1.1.0, add Python 3 support.
system/lbzip2: Fix HOMEPAGE.
system/lhasa: Updated for version 0.3.1.
system/linuxconsoletools: Updated for version 1.5.1.
system/localepurge: Added (remove superfluous locale data).
system/macutils: Fix compiler warnings.
system/man-db: Updated for version 2.7.3.
system/man-pages-ja: Updated for version 20160715, use ARCH=noarch.
system/monit: Updated for version 5.19.0.
system/rover: Updated for version 0.4.2.
system/usbmon: Updated for version 6.1.
system/x86_energy_perf_policy: Added (Energy Savings Policy).
system/zerofree: Updated for version 1.0.4.
system/zpaq: Updated for version 7.14
+--------------------------+
Sun Aug  7 11:56:29 UTC 2016
academic/fet: Updated DOWNLOAD.
audio/oss: new maintainer.
desktop/tint2: Updated for version 0.12.12.
desktop/xvkbd: Updated for version 3.7.
development/komodo-edit: Added  (Multi-Language Editor).
development/komodo-ide: Added  (Multi-Language IDE).
development/sqldeveloper: Added (Oracle SQL Developer).
games/CATSFC-libretro: Removed (replaced by snes9x2005).
games/antimicro: Fixed tarball handling.
games/ecwolf: Added (an advanced source port for Wolfenstein 3D).
games/megaglest: Updated REQUIRES.
games/nethack: Update MAINTAINER.
games/pocketsnes-libretro: Removed (replaced by snes9x2002).
games/snes9x-next: Removed (replaced by snes9x2010).
games/snes9x2002: Added (ARM optimized port of SNES9x).
games/snes9x2005: Added (libretro port of SNES9x 1.43).
games/snes9x2010: Added (Port of Snes9x 1.52+ to Libretro).
games/vbam: Updated for version r1507 + new maintainer.
graphics/LDView: Updated for version 4.2.
libraries/libfaketime: Added (FakeTime Preload Library).
libraries/netcdf: Enable netcdf-4 support.
network/dropbox: Updated for version 7.4.30.
network/modsecurity-apache: Fix tarball handling.
network/openssh-krb5: Updated for version 7.3p1.
network/sshguard: Added (SSH brute-force attack protection).
office/focuswriter: Updated for version 1.5.7 + new maintainer.
perl/perl-Sidef: Update DOWNLOAD url.
python/PyGreSQL: Updated for version 5.0
python/boto3: Fixed DOWNLOAD.
python/prompt_toolkit: Updated for version 1.0.5.
system/bareos-client: Fixed tarball handling.
system/bareos: Fixed tarball handling.
system/mongodb: Updated for version 3.2.8.
system/monit: Update script + New Maintainer.
system/oldschool-pc-fonts: Added (remake of PC text mode fonts).
system/openrc-services: Updated for version 20160807.
system/openrc: Updated for version 0.21.3.
system/qtgzmanager: Updated for version 1.0.3.
system/rmw: Updated for version 2016.08.06.01a.
+--------------------------+
Fri  5 Aug 17:17:38 UTC 2016
academic/edsim51di: Moved from development.
academic/fet: Updated for version 5.30.1.
academic/freechartgeany: Updated for version 2.0.3
academic/gwyddion: Updated for version 2.45.
academic/maxima: Update MD5SUM.
academic/sage: Updated for version 7.3.
academic/wxMaxima: Updated for version 16.04.2
academic/wxmacmolplt: Updated for version 7.6.2.
audio/libebur128: Fix tarball handling.
audio/pogo: Updated for version 0.8.7.
audio/xcfa: Update README.
business/stansoft: Updated for version 7.5.
desktop/LX-Colors-Revival: Added (GTK2/GTK3/Openbox themes).
desktop/LX-Colors-themes: Update README.
desktop/bunsen-themes: Updated for version 8.3.1.
desktop/e16: Updated for version 1.0.17.
desktop/kwalletcli: Added mksh dependency.
desktop/moka-icon-theme: Updated for version 5.3.2.
desktop/neofetch: Added (simple system information script).
desktop/notification-daemon: Updated for version 3.18.2
desktop/numix-icon-theme: Updated for version 0.3.812.201606210231.
desktop/paper-gtk-theme: Added (Paper Theme Suite).
desktop/paper-icon-theme: Added (Paper Icons).
desktop/xvkbd: Update HOMEPAGE and DOWNLOAD url.
development/dpkg: Updated for version 1.18.10.
development/envytools: Added (development tools for nouveau).
development/flow: Updated for version 0.30.0.
development/guile1.8: Use correct guile1.8.
development/mutagen: Updated for version 1.34.
development/p4: Updated for version 2016.1.1411799.
development/p4v: Updated for version 2015.2.1315639.
development/pyvim: Updated for version 0.0.19.
development/spice-protocol: Updated for version 0.12.12.
development/tstoolbox: Updated for version 0.11.12.8.
development/vala: New maintainer.
development/valgrind: Updated for version 3.11.0.
games/0ad-data: Update HOMEPAGE.
games/0ad: Update HOMEPAGE.
games/4do-libretro: Added (Port of 4DO/libfreedo to libretro).
games/CATSFC-libretro: Added (libretro port of SNES9x 1.43).
games/Craft-libretro: Added (simple Minecraft clone).
games/Genesis-Plus-GX: Added (enhanced port of Genesis Plus).
games/QuickNES-Core: Added (libretro QuickNES core library).
games/RetroArch: Added (Reference frontend for the libretro API).
games/antimicro: Updated for version 2.22.
games/beetle-bsnes-libretro: Added (fork of Mednafen bSNES).
games/beetle-gba-libretro: Added (fork of Mednafen GBA).
games/beetle-lynx-libretro: Added (fork of Mednafen Lynx).
games/beetle-ngp-libretro: Added (libretro fork of Mednafen NGP).
games/beetle-pce-fast-libretro: Added (fork of Mednafen PCE Fast).
games/beetle-pcfx-libretro: Added (fork of Mednafen PCFX).
games/beetle-psx-libretro: Added (fork of Mednafen PSX).
games/beetle-supergrafx-libretro: Added (fork of Mednafen PCE Fast).
games/beetle-vb-libretro: Added (libretro fork of Mednafen VB).
games/beetle-wswan-libretro: Added (fork of Mednafen WonderSwan).
games/blastem-libretro: Added (fast and accurate Genesis emulator).
games/blueMSX-libretro: Added (libretro port of blueMSX).
games/bsnes-libretro: Added (libretro fork of bsnes).
games/bsnes-mercury: Added (Fork of bsnes).
games/chromium-bsu: Updated for version 0.9.16
games/fceux: Updated for version 2.2.3.
games/fmsx-libretro: Added (libretro port of fMSX).
games/gambatte-libretro: Added (libretro port of libgambatte).
games/gpsp-libretro: Added (libretro port of gpSP).
games/gw-libretro: Added (Game & Watch simulators).
games/instead: Updated for version 2.4.1.
games/libretro-desmume: Added (Port of Desmume to libretro).
games/libretro-fba: Added (libretro port of Final Burn Alpha).
games/libretro-fceumm: Added (FCEUmm libretro port).
games/libretro-handy: Added (Atari Lynx emulator Handy).
games/libretro-lutro: Added (Lua game framework for libretro).
games/libretro-mgba: Added (libretro port of mGBA).
games/libretro-ppsspp: Added (fast and portable PSP emulator).
games/libretro-prboom: Added (Port of prboom to libretro).
games/libretro-reicast: Added (Port of reicast to libretro).
games/libretro-yabause: Added (Yabause port for libretro).
games/megaglest: Updated for version 3.12.0
games/meteor-libretro: Added (libretro port of Meteor GBA emulator).
games/mupen64plus-libretro: Added (libretro port of Mupen64 Plus).
games/nestopia-libretro: Added (Nestopia for Libretro).
games/nxengine-libretro: Added (Port of NxEngine to libretro).
games/openmsx-catapult: Updated for version 0.13.0.
games/openmsx: Updated for version 0.13.0.
games/pcsx-rearmed: Added (ARM optimized PCSX fork).
games/pcsx2: Added (Playstation 2 Emulator).
games/picodrive-libretro: Added (MegaDrive/MegaCD/32X emulator).
games/pocketsnes-libretro: Added (ARM optimized port of SNES9x).
games/ppsspp: Added (fast and portable PSP emulator).
games/prosystem-libretro: Added (libretro port of ProSystem).
games/scummvm-libretro: Added (ScummVM with libretro backend).
games/snes9x-libretro: Added (Portable Super Nintendo emulator).
games/snes9x-next: Added (Port of Snes9x 1.52+ to Libretro).
games/stella-libretro: Added (Port of Stella to libretro).
games/tyrquake-libretro: Added (libretro port of Tyrquake).
games/vba-next: Added (Optimized port of VBA-M to Libretro).
games/vbam-libretro: Added (libretro fork of VBA-M).
games/virtualjaguar-libretro: Added (Virtual Jaguar libretro fork).
games/warsow: Updated for version 2.1.
gis/qgis: Updated for version 2.16.1.
graphics/paraview: Updated for version 5.1.2 + new maintainer
graphics/povray: Update Script + new maintainer.
libraries/BeautifulSoup4: Updated for version 4.5.1.
libraries/GitPython: Updated for version 2.0.8.
libraries/botocore: Updated for version 1.4.43.
libraries/jsoncpp: Updated for version 1.7.4
libraries/libofx: Fix build with c++11.
libraries/libpng-legacy12: Added (old PNG library).
libraries/libuchardet: Fix tarball handling.
libraries/libvirt-glib: Changed from i486 to i586 on 32bit
libraries/libvirt-python: Updated for version 2.1.0.
libraries/libvirt: Updated for version 2.1.0.
libraries/opencv: Don't build the cuda bindings.
libraries/php-oci8: Added (PHP extension to access Oracle Database).
libraries/plyr: Added (Wrapper around libglyr).
libraries/poco: Updated for version 1.7.4.
multimedia/HandBrake: Updated for version 0.10.5.
multimedia/OpenPHT: Added (Plex client).
multimedia/lightspark: Added (Open source flash player).
network/CherryMusic: Updated for version 0.37.1.
network/NetworkManager-openvpn: Updated for version 1.2.4.
network/awscli: Updated for version 1.10.53.
network/boxcryptor: Added (cloud encryption service).
network/corebird: Updated for version 1.3.
network/dropbox: Downgraded for version 6.4.14.
network/exim: Updated for version 4.87.
network/filezilla: Updated for version 3.20.1.
network/google-cli: Fix tarball handling.
network/icecat: Updated for version 38.8.0.
network/krb5: Updated for version 1.14.3.
network/lighttpd: Updated for version 1.4.41.
network/modsecurity-apache: Updated for version 2.9.1.
network/openssh-krb5: Updated for version 7.2p2.
network/owncloud-client: Updated for version 2.2.2.
network/phodav: Added (soup dav server).
network/pidgin-sipe: Updated for version 1.21.1.
network/radicale: Added (Calendar Server).
network/slack: Added (messaging app for teams).
network/spice-gtk: Noted the new optional dependency phodav.
network/spice: Updated for version 0.13.2.
network/ssllabs-scan: Remove Hardcoded path to GOROOT.
network/suricata: Updated for version 3.1.1.
network/tor-browser: Updated for version 6.0.3.
network/transmission-remote-gtk: Updated for version 1.2.
network/weechat: Updated for version 1.5.
network/you-get: Updated for version 0.4.523.
network/youtube-dl: Updated for version 2016.07.30.
office/LibreOffice: Add spell check info to README
office/evince: Updated for version 3.20.1.
office/gummi: Updated for version 0.6.6
office/libreoffice-helppack: Updated for version 5.2.0.
office/libreoffice-langpack: Updated for version 5.2.0.
office/libreoffice: Updated for version 5.2.0.
office/t-prot: Added (TOFU protection script).
office/texmacs: Don't run stuff belonging to doinst.sh during make.
office/texmacs: Use Guile1.8 correctly.
perl/perl-Sidef: Updated for version 2.30.
python/apsw: Updated for version 3.13.0_r1
python/cssselect: Updated for version 0.9.2
python/dnspython: Updated for version 1.14.0
python/filechunkio: Updated for version 1.8
python/flake8: Updated for version 3.0.3.
python/lxml: Updated for version 3.6.1
python/monty: Updated for version 0.8.7.
python/parsel: Updated for version 1.0.3.
python/prompt_toolkit: Updated for version 1.0.4.
python/pymysql: Fix tarball handling.
python/python-certifi: Updated for version 2016.8.2.
python/python-dateutil: Updated for version 2.5.3
python/python-keyczar: Updated for version 0.716
python/python-libnacl: Updated for version 1.4.5
python/python-magic: Updated for version 0.4.12
python/python-mccabe: Updated for version 0.5.2.
python/rsa: Updated for version 3.4.2
python/rst2ansi: Added (A rst converter to ansi-decorated).
python/s3cmd: Updated for version 1.6.1
python/s3transfer: Added (Amazon S3 Transfer Manager).
python/sge-pygame: Updated for version 1.1.
python/simplejson: Updated for version 3.8.2
python/snuggs: Updated for version 1.4.0.
python/stevedore: Updated for version 1.17.0.
python/w3lib: Updated for version 1.15.0.
ruby/ruby-json: Updated for version 2.0.2.
system/bareos-client: Added (bareos client).
system/bareos: Added (managed backup and recovery).
system/fcron: Remove FCRON_UID and FCRON_GID.
system/keybase: Added (CLI Keybase Client).
system/letsencrypt.sh: Update script.
system/mpich: Updated for version 3.2 + new maintainer
system/nvidia-legacy304-kernel: Don't use deprecated mtrr API
system/oracle-instantclient-basic: Added (Oracle DB client).
system/oracle-instantclient-devel: Added (Oracle Devel Headers).
system/oracle-xe: Added (Oracle Database Express Edition).
system/passwdqc: Updated for version 1.3.1.
system/passwordsafe: Updated for version 0.99BETA.
system/pycp: Fix tarball handling.
system/pymux: Updated for version 0.12.
system/qterminal: Added the missing dependency libqxt.
system/redis: Updated for version 3.2.3.
system/run-one: Added (run one instance of command).
system/spl-solaris: Updated for version 0.6.5.7.
system/xonsh: Update HOMEPAGE url.
system/zfs-on-linux: Updated for version 0.6.5.7.
+--------------------------+
Sat Jul 30 01:30:00 UTC 2016
academic/calc: Updated for version 2.12.5.4.
academic/free42: Fixed md5sum
academic/gretl: Fixed md5sums of pdf files
academic/maxima: Updated for version 5.38.1.
audio/aacplusenc: Added High-Efficency AAC Encoder).
audio/alsaequal: Update ARCH.
audio/audacious-aac: Updated for version 3.7.2.
audio/audacious-cue: Updated for version 3.7.2.
audio/audacious-ffmpeg: Added (ffmpeg Decoder Plugin).
audio/audenc: Added (audio converter).
audio/butt: Added (Broadcast Using This Tool).
audio/dcaenc: Added (DTS encoder).
audio/flacon: Updated for version 0.0.5.
audio/libebur128: Added (library for EBU R128 loudness standard).
audio/mp4tools: Added (Encode Audio and Video).
audio/mpd: Updated for version 0.19.17
audio/pulseaudio-ctl: Added (pulseaudio volume control)
audio/soxr: Added (one-dimensional samplerate conversion library).
audio/xcfa: Add (Audio Converter & Splitter).
business/stansoft: Added (Linux Financial Accounting).
desktop/LX-Colors-themes: Fixed DOWNLOAD.
desktop/anki: Updated for version 2.0.36.
desktop/arandr: Updated for version 0.1.9.
desktop/arc-theme: Added (Flat Theme).
desktop/ccsm: Updated for version 0.8.12.4.
desktop/emerald-themes: Updated for version 0.8.12.1.
desktop/emerald: Updated for version 0.8.12.4.
desktop/faba-icon-theme: Updated for version 4.1.2.
desktop/fbrowse-tray: Updated for version 0.06.
desktop/fusion-icon: Updated for version 0.2.2.
desktop/gmusicbrowser-art: Updated for version 0.2.3.
desktop/menutray: Updated for version 0.45.
desktop/moka-icon-theme: Updated for version 5.3.1.
desktop/obbrowser: Updated for version 0.06.
desktop/obmenu-generator: Updated for version 0.67.
desktop/obsession: Update README.
desktop/orchis-gtk-theme: Updated for version 3.1.
desktop/plank: Updated for version 0.11.2.
desktop/pytyle: Added (extensible tiling manager).
desktop/sawfish: Updated for version 1.11.90.
desktop/thunar-vcs-plugin: Updated for version 0.1.5.
desktop/tint2: Updated for version 0.12.11 + new maintainer.
desktop/vivacious-colors-gtk-icon-theme: Added (icon theme).
desktop/vivacious-colors-gtk-theme: Added (gtk theme).
desktop/xfce4-cpufreq-plugin: Updated for version 1.1.3.
desktop/xfce4-dict: Updated for version 0.7.2.
development/android-studio: Updated for version 2.1.2.0_143_2915827.
development/cmocka: Updated for version 1.0.1.
development/composer: Updated for version 1.2.0.
development/cudatoolkit: Updated for version 7.5.18.
development/dpkg: Updated for version 1.18.9 + new maintainer.
development/dwarf: Updated for version 20160613.
development/flow: Fix building on 32-bit.
development/freetds: Updated for version 1.00.9.
development/google-go-lang: Fix csh profile script
development/hhvm: Updated for version 3.14.3.
development/ioncube-loader: Updated for version 5.1.2.
development/lcov: Updated for version 1.12.
development/libb2: Updated for version 0.97.
development/mutagen: Updated for version 1.33.2 + new maintainer.
development/nexus: Updated for version 3.0.1_01.
development/oniguruma: Updated for version 5.9.6.
development/opendbx: Added (Database Access Library).
development/p4: Fixed md5sums
development/sonarqube: Updated for version 5.6.1.
development/staruml: Added (Software UML modeler).
development/universal-ctags: Updated for version 60e9073.
development/vala: Downgraded to 0.30.2.
development/watchman: Fix building on 32-bit.
development/wheel: Add python3 support.
games/angband: Updated for version 4.0.5.
games/antimicro: Updated for version 2.20.
games/chessx: Added (Chess database program).
games/greed: Added (clone of Pac-Man and Tron).
games/hedgewars: Fixed md5sum
games/ioquake3: Updated for version r20160627.
games/oolite: Added (an open-world space opera).
games/openmw: Updated for version 0.39.0.
games/pcsxr: Use PulseAudio.
games/steam: Updated for version 1.0.0.52.
games/stone_soup: Updated for version 0.18.1.
games/taipan: Fixed md5sum
gis/gdal: Updated for version 2.1.1.
gis/qmapshack: Updated for version 1.6.3.
git/README: Updated for new protocol and URL.
graphics/fontforge: Update DOWNLOAD url.
graphics/gimagereader: Updated for version 3.1.91.
graphics/leocad: Updated for version 0.83.
graphics/leocad_pieces: Updated for version 9306.
graphics/vuescan: Fixed md5sums
libraries/compiz-bcop: Updated for version 0.8.12.
libraries/compiz-plugins-experimental: Added (Compiz Plugins).
libraries/compiz-plugins-extra: Updated for version 0.8.12.1.
libraries/compiz-plugins-main: Updated for version 0.8.12.2.
libraries/compiz-plugins-unsupported: Removed (merged).
libraries/compizconfig-backend-kconfig4: Removed.
libraries/compizconfig-python: Updated for version 0.8.12.1.
libraries/dropbox-python: Updated for version 6.6.0.
libraries/http-parser: Updated for version 2.7.1
libraries/libbluray: Updated for version 0.9.3
libraries/libcompizconfig: Updated for version 0.8.12.1.
libraries/libconfig: Updated for version 1.5.
libraries/libdbusmenu: Updated for version 16.04.0.
libraries/libfilezilla: Updated for version 0.6.1.
libraries/librep: Updated for version 0.92.6.
libraries/libuchardet: Updated for version 0.0.5.
libraries/lvtk: Fixed md5sum
libraries/mysqltcl: Updated for version 3.052.
libraries/nx-libs: Updated for version 3.5.0.32.
libraries/ogre: Update MD5SUM and commit ID.
libraries/pgtcl-ng: Fix DOWNLOAD url.
libraries/php-memcache: Updated for version 3.0.8.
libraries/php-ssh2: Updated for version 0.13.
libraries/rep-gtk: Moved from desktop and updated to 0.90.8.3.
libraries/rrdtool: Updated for version 1.6.0.
libraries/rudiments: Updated for version 0.55.0.
libraries/squish: Fixed md5sum
libraries/wxSQLite3: Updated for version 3.3.1.
misc/bbrun: Added (Run Utility for BlackBox).
misc/fcitx-mozc: Updated for version 2.17.2313.102.1.
misc/qtspell: Updated for version 0.8.1.
multimedia/aces-dev: Added (reference dev kit).
multimedia/aces_container: Added (ACES file writer).
multimedia/ctl: Added (colour transform language and ctlrender app).
multimedia/flowblade: Updated for version 1.6.
multimedia/mozplugger: Updated for version 2.1.6
multimedia/plexmediaserver: Updated for version 1.0.2.2413.
multimedia/tstools: Updated for version 20151030_db1f79f.
multimedia/vivaldi-codecs-ffmpeg-extra: Updated to 51.0.2704.79.
network/btsync: Fixed md5sums
network/clipgrab: Updated for version 3.6.1.
network/corebird: Added (Twitter Client).
network/cyrus-imapd: Updated for version 2.5.8.
network/dokuwiki: Updated for version 20160626a.
network/dovecot-pigeonhole: Updated for version 0.4.15.
network/dovecot: Added PostgreSQL support.
network/filezilla: Updated for version 3.20.0.
network/fping3: Updated for version 3.13.
network/google-cli: Updated for version 2.6.
network/graphite-carbon: Updated for version 0.9.15.
network/jdownloader: Fixed md5sum
network/limnoria: Updated for version git20160728.
network/nghttp2: Added (HTTP/2 implementation).
network/openvswitch-utils: Updated for version 2.5.0.
network/postfix: Updated for version 3.1.1.
network/postgrey: Fix sed command.
network/pydio-agent: Added (desktop sync client for Pydio).
network/pydio-sync: Updated for version 1.2.6.
network/qTox: Updated for version 20160724_e6e666f.
network/smcroute: Updated for version 2.1.0.
network/sqlrelay: Updated for version 0.65.0.
network/sstp-client: Updated for version 1.0.10.
network/viber: Updated for version 6.0.1.5.
network/vivaldi: Updated for version 1.2.490.43.
network/wildfly: Updated for version 10.0.0.
network/wireshark: Updated for version 2.0.5.
network/x2goclient: Updated for version 4.0.5.1.
network/x2goserver: Updated for version 4.0.1.19.
network/youtube-dl: Updated for version 2016.07.28.
office/LibreOffice: Updated for version 5.1.4.2
office/moneydance: Updated for version 2015.1358.
office/texlive: fixed segfault in upmendex ; tweaked prep stuff
perl/mod_perl: Added (Perl Interpreter for Apache).
perl/perl-File-Remove: Updated for version 1.57.
perl/perl-Math-BigInt-GMP: Added (Use GMP for Math::BigInt routines)
perl/perl-Math-BigInt: Added (arbitrary size integer/float math)
perl/perl-Math-GMPq: Added (perl interface to the GMP library)
perl/perl-Math-GMPz: Added (perl interface to the GMP library)
perl/perl-Math-MPC: Added (perl interface to the MPC library)
perl/perl-Math-MPFR: Added (perl interface to the MPFR library)
perl/perl-Module-Build: Updated for version 0.4218.
perl/perl-Module-ScanDeps: Updated for version 1.21.
perl/perl-Number-Bites-Human: Updated for version 0.10.
perl/perl-Path-Class: Updated for version 0.36.
perl/perl-Proc-Simple: Added (launch/control background processes).
perl/perl-Sidef: Updated for version 2.26.
perl/perl-extutils-makemaker: Updated for version 7.18.
perl/perl-linux-desktop-files: Updated for version 0.11.
python/astroid: Updated for version 1.4.8.
python/boto3: Updated for version 1.3.1
python/boto: Updated for version 2.42.0
python/dbus-python3: Added (Python3 bindings for dbus).
python/flake8: Updated for version 3.0.2.
python/pygobject3-python3: Downgraded to 3.18.2.
python/pymysql: Updated for version 0.7.5
python/python-mccabe: Updated for version 0.5.1.
python/python-whisper: Updated for version 0.9.15.
python/python3-xlib: Added (X Library module for Python3).
python/pyxdg: New maintainer; add python3 support
python/setuptools-scm: Added (manage versions by scm tags)
python/websocket-client: Updated for version 0.37.0.
ruby/heroku-client: Fixed md5sum
ruby/rbenv: Added (Groom your app's Ruby environment).
ruby/ruby-build: Added (Compile and install Ruby).
ruby/ruby-faraday: Updated for version 0.9.2.
ruby/ruby-json: Updated for version 2.0.1.
system/CNS11643-font: Fixed md5sum
system/I-Nex: Added (System information tool).
system/MySQL-Sandbox: Updated for version 3.1.11
system/btrbk: Added (backup tool for btrfs subvolumes).
system/cantarell-fonts: Updated for version 0.0.24.
system/cndrvcups-capt: Updated for version 2.70.
system/cndrvcups-common: Updated for version 3.20.
system/conky: Updated for version 1.10.4.
system/cpuinfo2cpuflags: Added (CPU Flags detector).
system/ddrescue-gui: Updated for version 1.6.
system/debootstrap: Update DOWNLOAD url.
system/drbd-utils: Updated for version 8.9.7.
system/eltclsh: Added (editline tcl shell).
system/eventlog: Updated for version 20151122_a5c1916.
system/fcron: Updated for version 3.2.1.
system/findpkg: Added (find Slackware packages).
system/fio: Updated for version 2.13.
system/fira-fonts: Added (Open Source Type Font).
system/fish: Updated for version 2.3.1.
system/foomatic-db: Updated for version 20160724.
system/forkstat: Fixed md5sum
system/fpm2: New maintainer and some added patches
system/gitolite: Updated for version 3.6.5.
system/graphite-web: Updated for version 0.9.15.
system/hplip-plugin: Added (Binary plugin for HP devices).
system/intel-microcode: Updated for version 20160607.
system/ioping: Added (monitor I/O latency in real time).
system/jenkins: Updated for version 2.7.1.
system/letsencrypt.sh: Added (letsencrypt client).
system/letsencrypt: Updated for version 0.8.1.
system/nix: Updated for version 1.11.2.
system/opam: Added (OCaml Package Manager).
system/parallel: Updated for version 20160722.
system/pycp: Updated for version 7.2.2.
system/rar2fs: Updated for version 1.22.0.
system/rar: Updated for version 5.4.b3.
system/rxvt-unicode: Updated for version 9.22.
system/slackware-grub2-theme: Added (Slackware theme for grub2).
system/sqlcipher: Updated for version 3.4.0.
system/symbola-font-ttf: Added (unicode symbol blocks)
system/syslog-ng: Updated for version 3.7.3.
system/unrar: Updated for version 5.4.2.
system/xen: Additional features, patches and script fixes.
system/xnp2: Added (PC-9801 emulator).
system/zuluCrypt: Updated for version 5.0.0.
+--------------------------+
Sun Jul 24 00:30:29 UTC 2016
desktop/awesome: Updated for version 3.5.9.
development/google-go-lang: Updated for version 1.6.3.
development/google-webdesigner: Updated for version 1.6.1.0620.
development/pycharm: Updated for version 2016.2.
development/sdcc: Updated for version 3.6.0.
graphics/digikam: Update DOWNLOAD url.
libraries/OpenAL: Build bump, disable example programs.
libraries/libfilezilla: Updated for version 0.6.0
libraries/libvterm: Fix download handling.
libraries/live555: Updated for version 2016.07.19
libraries/php-mssql: Updated for version 5.6.24.
libraries/php-pdo_dblib: Updated for version 5.6.24.
libraries/php-pgsql: Updated for version 5.6.24.
libraries/qt3: Rework LD_LIBRARY_PATH to build everything.
multimedia/x265: Updated for version 2.0.
network/awstats: Updated for version 7.5.
network/filezilla: Updated for version 3.19.0.
network/mod_wsgi: Fixed homepage link in slack-desc
network/privoxy: Updated for version 3.0.24.
network/ufw: Updated for version 0.35.
network/youtube-dl: Updated for version 2016.07.22.
office/texlive-extra: Fixed download link and MD5SUM
office/texlive-fonts: Fixed download link and MD5SUM
office/texlive: Fixed some checksums in .info file
perl/perl-CPANPLUS-Dist-Build: Fix DOWNLOAD.
perl/perl-CPANPLUS: Fix DOWNLOAD.
perl/perl-Image-Size: Update DOWNLOAD url.
perl/perl-SDL: Update DOWNLOAD url.
perl/perl-Test-SharedFork: Update DOWNLOAD url.
python/pyusb: Updated for version 1.0.0.
python/regex: Updated for version 2016.07.21.
system/atop: Fix build script.
system/p7zip: Fix build with GUI.
system/usbview: Update README.
system/xonsh: Updated for version 0.4.4.
+--------------------------+
Thu Jul 21 03:48:48 UTC 2016
development/flow: Updated for version 0.29.0.
libraries/BeautifulSoup4: Updated for version 4.5.0.
office/texlive-docs: Fix download link
office/texlive: Fix download link
office/xpad: Updated for version 4.8.0.
+--------------------------+
Wed Jul 20 19:49:56 UTC 2016
development/jdk: Updated for version 8u102.
network/lighttpd: Updated for version 1.4.40.
+--------------------------+
Wed Jul 20 19:22:13 UTC 2016
academic/coq: Updated for version 8.5pl1.
development/atom: Updated for version 1.8.0.
development/camlp4: Added (ocaml preprocessor and pretty-printer).
development/camlp4: Depend on ocamlbuild, install meta file.
development/camlp5: Updated for version 6.16.
development/coccinelle: Updated for version 1.0.5.
development/flow: Updated for version 0.28.0.
development/hhvm: Depend on ocamlbuild.
development/menhir: Depend on ocamlbuild.
development/menhir: Updated for version 20160526.
development/ocaml: Updated for version 4.03.
development/ocamlbuild: Added (ocaml build tool).
games/fuse-emulator: Updated for version 1.2.1.
graphics/mlbrot: Updated for version 1.01.
libraries/GitPython: Updated for version 2.0.7.
libraries/evernote-python: Updated for version 1.25.2.
libraries/lablgtk: Updated for version 0.18.4.
libraries/libcpuid: Updated for version 0.3.0.
libraries/libspectrum: Updated for version 1.2.1.
libraries/ocaml-batteries: Updated for version 2.5.0.
libraries/ocaml-bisect: Changed dep from ocaml to camlp4.
libraries/ocaml-camomile: Depend on camlp4.
libraries/ocaml-findlib: Build with -j1.
libraries/ocaml-findlib: Updated for version 1.6.2.
libraries/ocaml-ounit: Depend on ocamlbuild.
multimedia/TeamSpeak3: Updated for version 3.0.19.4.
multimedia/ffmpeg: Enable zeromq support.
network/mldonkey: Updated for version 3.1.5, README cleanups.
network/sks-keyserver: Fix build with ocaml-4.03.
network/youtube-dl: Updated for version 2016.07.17.
office/hevea: Depend on ocamlbuild.
office/texlive-docs: Added (this replaces texlive-texmf-docs)
office/texlive-extra: Added (this replaces texlive-texmf-extra)
office/texlive-fonts: Added (extra fonts for TeXLive)
office/texlive-texmf-docs: Removed (replaced by texlive-docs)
office/texlive-texmf-extra: Removed (replaced by texlive-extra)
office/texlive: Updated for version 20160523.
office/wyrd: Changed dep from ocaml to camlp4.
perl/perl-gtk2-imageview: Remove make test.
python/ptpython: Updated for version 0.35.
python/pymongo: Updated for version 3.3.0.
system/unison: Updated for version 2.48.4.
+--------------------------+
Sun Jul 17 08:34:26 UTC 2016
gis/qgis: Add missing file.
network/dropbox: Updated for version 7.3.28.
network/tornado: Updated for version 4.4.0.
+--------------------------+
Sun Jul 17 00:52:17 UTC 2016
academic/jalview: Remove p7zip dep.
audio/lxmusic: Updated for version 0.4.7.
audio/opus: Updated for version 1.1.3.
audio/speex: Removed leftover patch.
desktop/lxlauncher: Updated for version 0.2.5.
desktop/meliae-icon-theme: Fix scalable icons sizes.
desktop/ptwit: Updated for version 0.0.9.
desktop/spectrwm: Update DOWNLOAD and HOMEPAGE url.
development/brackets: Updated for version 1.7.
development/geany-plugins: Updated for version 1.28.
development/geany: Updated for version 1.28.
development/git-lfs: Updated for version 1.2.1.
development/idlex: Updated for version 1.13.
development/nedit: Added desktop shortcut and icon.
development/ninja: Updated for version 1.7.1
development/watchman: Updated for version 4.6.0.
games/freeciv: Updated for version 2.5.4.
games/javacpc: Updated for version 2.9.5b.
gis/qgis: Updated for version 2.16.0.
graphics/FreeCAD: Fix build with OpenCASCADE libs in /usr.
graphics/OpenCASCADE: Updated for version 6.9.1.
graphics/mypaint: Fix library location.
libraries/ConfigParser: Updated for version 3.5.0.
libraries/VTK: Moved to /usr from /opt.
libraries/evernote-python: Updated for version 1.25.1.
libraries/facebook-python: Fix build.
libraries/libalkimia: New maintainer.
libraries/libbluray: Enable xine-plugin.
libraries/libhtp: Updated for version 0.5.20.
libraries/libvterm: Updated for version 20160104.
libraries/pexpect: Updated for version 4.2.
libraries/pyftpdlib: Updated for version 1.5.1.
libraries/pylast: Updated for version 1.6.0.
libraries/zeromq: Updated for version 4.1.5.
multimedia/ffmpeg: Update README about openjpeg.
multimedia/flashplayer-plugin: Updated for version 11.2.202.632.
multimedia/gst-plugins-bad: Remove libdvdnav.
network/aria2: Updated for version 1.25.0
network/mps-youtube: Update MD5SUM.
network/pysub-dl: Updated for version 0.3.3.
network/spice: Updated for version 0.12.8.
network/suricata: Updated for version 3.1.
network/teamviewer: Add documentation for MULTILIB.
network/youtube-dl: Updated for version 2016.07.09.
office/CherryTree: Updated for version 0.37.2.
office/LanguageTool: Updated for version 3.4.
office/kmymoney: New maintainer.
office/texmaker: Update optional DEP.
office/texstudio: Updated for version 2.11.0.
perl/perl-Socket6: Updated for version 0.28.
python/PySDL2: Updated for version 0.9.4.
python/Scrapy: Updated for version 1.1.1.
python/boto3: Removed the optional dependency pysetuptools.
python/cssselect: Removed the optional dependency pysetuptools.
python/dfvfs: Removed the optional dependency pysetuptools.
python/monty: Updated for version 0.8.6.
python/pipdeptree: Updated for version 0.6.0.
python/psutil: Removed the optional dependency pysetuptools.
python/psutil: Updated for version 4.3.0.
python/pyinotify: Removed the optional dependency pysetuptools.
python/pymongo: Updated for version 3.2.2.
python/python-cheetah: Removed the optional dependency pysetuptools.
python/python-keyring: Updated for version 9.3.1.
python/simplejson: Removed the optional dependency pysetuptools.
python/soundcloud: Updated for version 0.5.0.
python/stevedore: Updated for version 1.16.0.
python/w3lib: Updated for version 1.14.3.
ruby/rubygem-pry: Updated for version 0.10.4.
system/PySixel: Updated for version 0.1.11.
system/fakeroot: Updated for version 1.21.
system/file-roller: Revert commit c03b269.
system/inxi: Updated for version 2.3.0.
system/logkeys: Updated for version 0.1.1c.
system/lxinput: Updated for version 0.3.5.
system/lxrandr: Updated for version 0.3.1.
system/lxtask: Updated for version 0.1.7.
system/openrc-services: Updated for version 20160711.
system/openrc: Updated for version 0.21.2.
system/p7zip: Updated for version 16.02.
system/redis-py: Updated for version 2.10.5.
system/sbbdep: Updated for version 0.2.6.
system/slpkg: Updated for version 3.1.7.
system/ttop: Updated for version 0.9.1.
system/udftools: Fix building with gcc-5.x.
system/yelp: Updated for version 3.20.1.
+--------------------------+
Sat Jul  9 01:01:55 UTC 2016
academic/gcompris: Update DOWNLOAD url.
desktop/Pulse-Glass: Update DOWNLOAD url.
desktop/e16: Fix perms on build script
desktop/gr1d: Update DOWNLOAD url.
desktop/vbox-runner: Update HOMEPAGE and DOWNLOAD url.
development/SQLAlchemy: Updated for version 1.0.14.
development/gradle: Updated for version 2.14.
development/rust: Updated for version 1.10.0.
development/xemacs: Update DOWNLOAD url.
games/pychess: Updated for version 0.12.4.
games/supextuxkart: Updated for version 0.9.2.
graphics/darktable: Updated for version 2.0.5.
graphics/djview4: Updated for version 4.10.6.
graphics/leocad: Update DOWNLOAD url.
libraries/CGAL: Updated for version 4.8.1.
libraries/HawkNL: Update HOMEPAGE url.
libraries/OpenAL: Updated for version 1.17.2.
libraries/exiftool: Updated for version 10.20.
libraries/facebook-python: Updated for version 1.0.0.
libraries/hdf: Updated for version 4.2.12.
libraries/libalkimia: Updated for version 5.0.0.
libraries/libvdpau-va-gl: Updated for version 0.4.0.
libraries/libxkbcommon: Updated for version 0.6.1.
libraries/musicbrainzngs: Updated for version 0.6.
libraries/netcdf: Updated for version 4.4.1.
libraries/rarfile: Updated for version 2.8.
libraries/xerces-c: Updated for version 3.1.4.
misc/kde_cdemu: Update HOMEPAGE and DOWNLOAD url.
multimedia/plexmediaserver: Updated for version 1.0.0.2261.
network/aldryn-client: Updated for version 2.3.2.
network/dovecot: Updated for version 2.2.25.
network/dropbox: Updated for version 5.4.24.
network/gajim: Update DEP.
network/knemo: Update HOMEPAGE and DOWNLOAD url.
network/mps-youtube: Updated for version 0.2.7.1.
network/phpmyadmin: Updated for version 4.6.3.
network/squid: Updated for version 3.5.20.
network/you-get: Updated for version 0.4.486.
network/youtube-dl: Updated for version 2016.07.06.
office/kate-latex-plugin: Update DOWNLOAD url.
office/kmymoney: Updated for version 4.8.0.
office/pdf2djvu: Updated for version 0.9.4.
perl/perl-tree-dagnode: Updated for version 1.29.
perl/perl-www-mechanize: Updated for version 1.75.
python/astroid: Updated for version 1.4.7.
python/llfuse: Updated for version 1.1.
python/pyperclip: Updated for version 1.5.27.
python/python-oauth2client: Updated for version 2.2.0.
python/python2-pythondialog: Updated for version 3.4.0.
python/python3-dugong: Updated for version 3.7.
python/wcwidth: Updated for version 0.1.7.
system/bleachbit: Updated for version 1.12.
system/komparator4: Update HOMEPAGE and DOWNLOAD url.
system/parallel: Updated for version 20160622.
system/s3ql: Updated for version 2.19.
system/sbotools: Updated for version 2.0.
system/slpkg: Updated for version 3.1.6.
system/trmaid: Updated for version 0.6.6.
system/udiskie: Updated for version 1.5.1.
system/wacomtablet: Updated for version 2.1.
+--------------------------+
Sat Jul  2 14:27:42 UTC 2016
development/lazarus: Fix MD5SUM.
network/toxcore: Update DEP.
+--------------------------+
Sat Jul  2 00:09:35 UTC 2016
This is not a drill. Slackware 14.2 has been released.
  Here it is! The launch of the SlackBuilds.org repository into the 14.2 era.
  With the help of our amazing community we spent the last couple of months
  testing, fixing, and updating the scripts in the repository for the latest
  Slackware release.  We are happy to say that we think it has never been
  better (yes, we say this every time)  :-)
We've added a new template script (haskell) and made some minor tweaks to
  the existing templates, so be sure to check those out before starting to
  submit new scripts.
We'd like to take this time to welcome the newest member of our admin team,
  David Spencer (idlemoor) - it seems that we have one new member during 
  each release cycle, so start making your bids now ;-)
Thanks to all of our users and maintainers for continuing to do what you
  do - your dedication and attention to detail is greatly appreciated.
We've recently added our repos on gitlab to provide another way, perhaps
  easier for some, to accept changes and new submissions - we're not exactly
  sure how it will go, but we're going to give it a try anyway. Merge requests
  are welcome: https://gitlab.com/groups/SlackBuilds.org
Enjoy!
+--------------------------+