summaryrefslogtreecommitdiffstats
path: root/ChangeLog.txt
blob: 5ff48d7ccd77f6a51fc5550b510887fc524b7afa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
Sat Oct 22 01:50:45 UTC 2016
academic/gwyddion: Allow build without libminizip.
accessibility/speech-dispatcher: Updated for version 0.8.5.
audio/guitarix: Updated for version 0.35.2.
audio/jalv: Updated for version 1.4.6.
audio/sayonara-player: Updated source.
audio/transcribe: Updated for version 8.65.
desktop/Pulse-Glass: Switch to i586.
desktop/fbmenugen: Updated for version 0.77.
desktop/menutray: Updated for version 0.46.
desktop/numix-icon-theme: Updated for version 0.3.871.201610060518.
desktop/obmenu-generator: Updated for version 0.68.
desktop/recoll: Updated for version 1.22.3.
desktop/xdgmenumaker: Update README.
desktop/xdgmenumaker: Updated for version 1.1.
desktop/xfce4-volumed-pulse: Added (XFCE Volume Daemon).
development/SDL2_gfx: Switch to i586.
development/SQLAlchemy: Updated for version 1.1.2.
development/atasm: Updated for version 1.07d, fix man page.
development/dwarf: Updated for version 20161001.
development/google-go-lang: Updated for version 1.7.3.
development/gradle: Updated for version 3.1.
development/gtest: Switch to i586.
development/hhvm: Updated for version 3.15.2.
development/julia: Updated for version 0.4.7.
development/leveldb: Update DOWNLOAD and HOMEPAGE url.
development/nodejs: Updated for version 6.8.1.
development/nvi: Remove --enable-threads parameter.
development/pkgconf: Added (compiler and linker metadata toolkit).
development/pyvim: Updated for version 0.0.20.
development/scite: Updated for version 3.7.0.
games/blobwars: Updated for version 2.00.
games/colem: Updated for version 3.8.
games/connectagram: Updated for version 1.2.4.
games/empire: Added (strategy game).
games/fizmo: Updated for version 0.8.2, docs, /usr/games.
games/fortune-dune: New HOMEPAGE.
games/freeorion: Updated for version 0.4.6.
games/jfsw_demo_data: Fix HOMEPAGE.
games/jzintv: New HOMEPAGE.
games/megamario: New HOMEPAGE.
games/mrrescue: Updated for version 1.02e.
games/oblige: Updated for version 7.50.
games/openmw: Add patch against bullet 2.85.1.
games/ostrichriders: Updated for version 0.6.4.
games/snes9x: Updated for version 1.54.1.
games/starfighter: Updated for version 2.0.2.
games/supermariowar: Updated for version 2.0beta1.
games/xarchon: Remove non-functional Adept game.
games/xcowsay: Updated for version 1.4.
games/xroar: Updated for version 0.34.5.
gis/google-earth: Updated for version 7.1.7.2606.
graphics/GraphicsMagick: Updated for version 1.3.25.
graphics/fbida: Updated for version 2.12.
graphics/gnofract4d: Switch to i586.
graphics/pngcrush: Updated for version 1.8.8.
graphics/pyformex: Switch to i586.
graphics/tintii: Switch to i586.
graphics/yesplz: Updated for version 22102016.
libraries/CEGUI0.7: Switch to i586.
libraries/GitPython: Updated for version 2.0.9.
libraries/QDarkStyle: Switch to i586.
libraries/SDL2: Updated for version 2.0.5.
libraries/SlowAES: Update HOMEPAGE and DOWNLOAD url.
libraries/alure: Switch to i586.
libraries/assimp: Updated for version 3.3.1.
libraries/botocore: Updated for version 1.4.62.
libraries/bullet: Updated for version 2.85.1.
libraries/facebook-python: Switch to i586.
libraries/flatzebra: New HOMEPAGE.
libraries/gitdb2: Added (IO of git-style object databases).
libraries/gssdp: Updated for version 1.0.1.
libraries/gupnp: Updated for version 1.0.1.
libraries/libearth: Switch to i586.
libraries/libmirage: Updated for version 3.0.5
libraries/libpst: Updated for version 0.6.68.
libraries/libu2f-host: Updated for version 1.1.3.
libraries/log4cplus: Added (A C++ logger).
libraries/lunatic-python: Switch to i586.
libraries/lvtk: Fix HOMEPAGE.
libraries/ntl: Updated for version 10.1.0.
libraries/pyte: Switch to i586.
libraries/secp256k1: Updated for version 7d15cd78.
libraries/smmap2: Added (A sliding memory map manager).
libraries/yaml-cpp0.3: Switch to i586.
libraries/yaml-cpp: Switch to i586.
misc/KeePass: Updated for version 2.34.
misc/deb2tgz: Added (convert Debian packages).
misc/sbo-templates: Switch to i586.
multimedia/freshplayerplugin: Updated for version 0.3.6.
multimedia/mlt: Updated for version 6.2.0.
multimedia/mp3fm: Switch to i586.
multimedia/pepperflash-plugin: Added (flash PPAPI plugin).
multimedia/pngnq-s9: Updated for version 2.0.2.
multimedia/youtube-viewer: Updated for version 3.2.4.
network/Electrum: Updated for version 2.7.9.
network/aldryn-client: Updated for version 2.3.3.
network/awscli: Updated for version 1.11.5.
network/flexget: Updated for version 2.3.45.
network/ganglia-web: Added (distributed monitoring web interface).
network/ganglia: Added (distributed monitoring system).
network/glusterfs: Updated for version 3.8.5.
network/jdownloader: Removed (no longer working).
network/pysub-dl: Switch to i586.
network/python-onedrive: Switch to i586.
network/r8168: Updated for version 8.043.01.
network/teamviewer: Updated for version 11.0.67687.
network/telegram: Updated for version 0.10.16.
network/translate: Switch to i586.
network/twine: Added (Utilities for interacting with PyPI).
network/vcspull: Switch to i586.
network/weetwit: Switch to i586.
network/youtube-dl: Updated for version 2016.10.16.
office/calibre: Updated for version 2.70.0
office/qute: Switch to i586.
perl/perl-Date-Manip: Updated for version 6.56.
perl/perl-IO-Socket-SSL: Updated for version 2.038.
perl/perl-linux-desktop-files: Updated for version 0.12.
python/PySDL2: Updated for version 0.9.5.
python/Scrapy: Updated for version 1.2.1.
python/aniso8601: Updated for version 1.2.0.
python/argcomplete: Updated for version 1.6.0.
python/chump: Updated for version 1.5.2.
python/clint: Updated for version 0.5.1.
python/gmpy: Fix HOMEPAGE.
python/helpy: Switch to i586.
python/jmespath: Switch to i586.
python/pendulum: Updated for version 0.6.3.
python/pkginfo: Added (API for querying the distutils metadata).
python/prompt_toolkit: Updated for version 1.0.8.
python/ptpython: Updated for version 0.36.
python/pyresample: Updated for version 1.2.6.
python/python-keybinder: New HOMEPAGE.
python/python-keyring: Updated for version 10.0.2.
python/python-mccabe: Switch to i586.
python/python-tabulate: Switch to i586.
python/regex: Updated for version 2016.10.22.
python/requests-toolbelt: Added (utilities for python-requests).
python/s3transfer: Updated for version 0.1.8.
python/selenium: Updated for version 3.0.1.
python/sge-pygame: Updated for version 1.2.
python/stevedore: Updated for version 1.18.0.
python/terminaltables: Updated for version 3.1.0.
python/threadpool: Updated for version 1.3.2.
python/tox: Updated for version 2.4.1.
python/tqdm: Added (progress bar for Python).
python/tzlocal: Updated for version 1.3.
python/w3lib: Switch to i586.
ruby/rubygem-bundler: Updated for version 1.13.5.
system/aha: Updated for version 0.4.10.
system/avfs: Updated for version 1.0.4.
system/cdemu-client: Updated for version 3.0.4
system/cdemu-daemon: Updated for version 3.0.5
system/findpkg: Fix VERSION in .info.
system/info2man: New HOMEPAGE.
system/linuxconsoletools: Updated for version 1.6.0.
system/man-db: Fix VERSION in .info file.
system/man-pages-ja: Updated for version 20161015.
system/nvidia-legacy304-driver: Added nvidia-installer.
system/pymux: Updated for version 0.13.
system/qemu-guest-agent: Updated for version 2.7.0.
system/qemu: Updated for version 2.7.0.
system/sdl-jstest: Updated for version 20160824git.
system/slpkg: Updated for version 3.2.0.
system/trachet: Switch to i586.
system/unrtf: Updated for version 0.21.9.
system/untex: Added (strip LaTeX commands from source file).
system/veracrypt: Updated for version 1.19.
system/vhba-module: Updated for version 20161009
system/vinterm: Fix HOMEPAGE.
system/wine-staging: Updated for version 1.9.21.
system/worker: Updated for version 3.8.4.
system/xarchiver: Updated for version 0.5.4.7.
+--------------------------+
Sat Oct 15 00:10:43 UTC 2016
academic/fet: Updated for version 5.30.4.
academic/gwyddion: Updated for version 2.46.
academic/lapacke: Added (C interface to LAPACK).
academic/wmcalc: Updated for version 0.6.
accessibility/svkbd: Fix HOMEPAGE, add missing man page src.
accessibility/unclutter-xfixes: Added (X11 tool).
accessibility/xdotool: Updated for version 3.20160805.1.
audio/sayonara-player: Updated for version 0.9.2-git6-20161010.
desktop/xed: Added (small and lightweight text editor).
desktop/xkblayout-state: Added (get/set the keyboard layout).
development/SQLAlchemy: Updated for version 1.1.1.
development/bpython: Updated for version 0.16.
development/cppcheck: Updated for version 1.76.
development/flow: Updated for version 0.33.0.
development/fsharp: Updated for version 4.0.1.13.
development/komodo-edit: Updated for version 10.1.1.
development/komodo-ide: Updated for version 10.1.1.
development/magit: Removed (No longer maintained).
development/monkey-studio: Fix DOWNLOAD url.
development/p4: Updated for version 2016.1.1443785.
development/p4d: Added (Perforce Helix VCS server).
development/sbcl: Updated for version 1.3.10.
development/sqlitebrowser: Updated for version 3.9.1.
games/GLupeN64: Updated for version 2016.10.12_4378f48.
games/connectagram: Updated for version 1.2.3.
games/cutemaze: Updated for version 1.1.1.
games/doomretro: Fixed README and icon installation.
games/etlegacy: Updated for version 2.75.
games/hexalate: Updated for version 1.1.0.
games/peg-e: Updated for version 1.2.2
games/tanglet: Updated for version 1.4.0.
gis/basemap: Switch to i586.
graphics/PyMOL: Updated for version 1.8.4.0.
graphics/openimageio: Updated for version 1.7.7
libraries/GeoIP-Python: updated for version 1.3.2.
libraries/Ipopt: Added (Interior Point OPTimizer).
libraries/SDL2_image: Fix JPEG support.
libraries/botocore: Updated for version 1.4.60.
libraries/fifechan: Switch to i586.
libraries/jsoncpp: Updated for version 1.7.7
libraries/libmseed: Updated for version 2.18.
libraries/libuchardet: Updated for version 0.0.6.
libraries/pyechonest: Switch to i586.
libraries/pyftpdlib: Switch to i586.
libraries/uptime: Switch to i586.
libraries/webkit2gtk: Updated for version 2.14.1.
multimedia/flashplayer-plugin: Updated for version 11.2.202.637.
multimedia/opera-developer-ffmpeg-codecs: Added (Extra codec).
network/EarthReader-Web: Switch to i586.
network/Electrum: Updated for version 2.7.8.
network/awscli: Updated for version 1.11.2.
network/cacti-spine: Updated for version 0.8.8h.
network/cacti: Updated for version 0.8.8h.
network/chromium: Updated for version 53.0.2785.143.
network/cowpatty: Switch to i586.
network/deis: Switch to i586.
network/flexget: Updated for version 2.3.43.
network/opensmtpd: Updated for version 6.0.2p1.
network/opera-developer: Updated for version 42.0.2372.0.
network/pidgin-extprefs: Switch to i586.
network/privoxy: Updated for version 3.0.26.
network/tixati: Updated for version 2.47_1.
network/youtube-dl: Updated for version 2016.10.07.
network/znc: Update DOWNLOAD url.
office/texstudio: Updated for version 2.11.2
perl/libpurple-kwallet-plugin: Fix DOWNLOAD url.
perl/perl-DateTime-Format-Strptime: Update DOWNLOAD url.
perl/perl-DateTime-Locale: Fix DOWNLOAD url.
perl/perl-IO-Socket-INET6: Update DOWNLOAD url.
perl/perl-Log-Dispatch: Update DOWNLOAD url.
perl/perl-Sidef: Updated for version 2.32.
perl/perl-Text-Iconv: Switch to i586.
perl/perl-WWW-Curl: Fix Build.
python/argcomplete: Updated for version 1.5.1.
python/curtsies: Updated for version 0.2.10.
python/ipaddr-py: Update DOWNLOAD url.
python/piprot: Updated for version 0.9.7.
python/s3transfer: Updated for version 0.1.7.
python/tox: Updated for version 2.4.0.
python/wcwidth: Switch to i586.
ruby/ncurses-ruby: Update MD5SUM.
ruby/ruby-gist: Added (A single function that uploads a gist).
ruby/rubygem-bundler: Updated for version 1.13.3.
system/PySixel: Switch to i586.
system/letsencrypt: Updated for version 0.9.3.
system/logkeys: Switch to i586.
system/lsyncd: Updated for version 2.1.6.
system/openmpi: Updated for version 1.10.4.
system/ossec-agent: Added (Open Source Host-based IDS).
system/ossec-local: Added (Open Source Host-based IDS).
system/ossec-server: Added (Open Source Host-based IDS).
system/postgresql: Updated for version 9.6.0.
system/slpkg: Updated for version 3.1.8.
system/watch-fs: Switch to i586.
system/xen: Added XSA-190 security advisory patch.
+--------------------------+
Sat Oct  8 01:09:57 UTC 2016
academic/biblesync: Switch to i586.
academic/cblas: Updated for version 3.6.1.
academic/stellarium: Updated for version 0.15.0.
academic/xiphos: Switch to i586.
audio/flacon: Updated for version 2.1.0.
audio/qmmp-plugin-pack: Updated for version 0.10.2.
audio/snd: Updated for version 16.8.
audio/sunvox: Updated for version 1.9.1.
desktop/faenza-icon-theme: Fix DOWNLOAD url.
desktop/gxkb: Updated for version 0.7.8.
desktop/i3minator: Switch to i586.
desktop/luna-wallpapers: Fix DOWNLOAD url.
desktop/moka-icon-theme: Updated for version 5.3.5.
desktop/neofetch: Updated for version 1.8.1.
desktop/numix-gtk-theme: Added (modern flat theme).
desktop/paper-icon-theme: Updated for version 1.3.4.
desktop/pyful: Switch to i586.
desktop/xfce4-eyes-plugin: Switch to i586.
development/SQLAlchemy: Updated for version 1.1.0.
development/hub: Updated for version 2.2.9.
development/mono: Updated for version 4.6.1.3.
development/monodevelop: Updated for version 6.1.1.15.
development/pandas: Updated for version 0.19.0.
development/rarian: Switch to i586.
games/doomretro: Updated for version 2.3.1.
games/ember: Switch to i586.
games/fuse-emulator: Updated for version 1.3.0.
games/mgba: Updated for version 0.5.1.
games/miscom: Added (textmode Missile Command clone).
games/trackballs: Install icons correctly.
graphics/Blender: Updated for version 2.78
graphics/CairoSVG: Switch to i586.
graphics/PyMOL: Switch to i586.
graphics/fim: Switch to i586.
graphics/pngcrush: Updated for version 1.8.7.
graphics/ristretto: Updated for version 0.8.1.
libraries/HawkNL: Switch to i586.
libraries/blas: Updated for version 3.6.1.
libraries/futures: Switch to i586.
libraries/gtk-qt-engine: Update DOWNLOAD url.
libraries/imageloader: Switch to i586.
libraries/lapack: Updated for version 3.6.1.
libraries/libspectrum: Updated for version 1.3.0.
libraries/ordereddict: Switch to i586.
libraries/python-librtmp: Switch to i586.
multimedia/beets: Switch to i586.
multimedia/devedeng: Updated for version 4.8.2.
multimedia/vivaldi-codecs-ffmpeg-extra: Updated for version 53.0.
multimedia/x265: Updated for version 2.1.
network/DarTui: Switch to i586.
network/Electrum: Updated for version 2.7.2.
network/Free-Cinema: Switch to i586.
network/aldryn-client: Switch to i586.
network/aria2: Updated for version 1.27.1.
network/asciinema: Updated for version 1.3.0.
network/flexget: Updated for version 2.3.41.
network/google-cli: Updated for version 2.8.
network/krb5: Updated for version 1.14.4.
network/mps-youtube: Switch to i586.
network/mps: Switch to i586.
network/mrtg: Switch to i586.
network/opensmtpd: Updated for version 6.0.1p1.
network/opera-developer: Added (Fast and secure web browser).
network/opera-next: Removed (replaced with opera-developer).
network/opera: New maintainer.
network/r2e: Update README.
network/telegram: Updated for version 0.10.11.
network/vivaldi: Updated for version 1.4.589.38.
network/wireshark: Updated for version 2.2.1.
network/youtube-dl: Updated for version 2016.10.02.
office/sigil: Update download link
office/teapot: Added (ncurses based spreadsheet).
office/tpp: Added (text based presentation tool for the CLI).
python/PyColorizer: Switch to i586.
python/PyGithub: Updated for version 1.29.
python/Scrapy: Updated for version 1.2.0.
python/asciimatics: Added (APIs to create ASCII art animations).
python/cairocffi: Switch to i586.
python/colorama: Switch to i586.
python/coverage: Updated for version 4.2.
python/cryptography: Restore DEPS.
python/dnspython: Updated for version 1.15.0
python/docopt: Switch to i586.
python/fudge: Updated for version 1.1.0.
python/monty: Updated for version 0.9.6.
python/npyscreen: Switch to i586.
python/path.py: Switch to i586.
python/progressive: Switch to i586.
python/ptpython: Switch to i586.
python/pySmartDL: Switch to i586.
python/python-distro: Added (Linux OS platform information API).
python/python-future: Switch to i586.
python/python-keyring: Switch to i586.
python/python-tvrage: Switch to i586.
python/python3-future: Switch to i586.
python/selenium: Switch to i586.
python/tox: Switch to i586.
python/virtualenv-clone: Updated for version 0.2.6 + new maintainer.
python/virtualenvwrapper: Updated for version 4.7.2, new maintainer.
ruby/ncurses-ruby: Added (Ruby module for accessing the ncurses).
ruby/ruby-sass: Added (Sass is an extension of CSS).
system/Iosevka: Updated for version 1.9.4.
system/conky: Updated for version 1.10.5.
system/ddg: Switch to i586.
system/eaglemode: Switch to i586.
system/forkstat: Updated for version 0.01.15.
system/genext2fs: Added (generate ext2 filesystem as a normal user).
system/guix: Remove patch.
system/letsencrypt: Updated for version 0.9.1.
system/openrc: Updated for version 0.22.2.
system/sentimental-skk: Switch to i586.
system/tmuxp: Updated for version 1.2.2.
system/webmin: Updated for version 1.820.
system/wine-staging: Updated for version 1.9.20.
system/xonsh: Updated for version 0.4.7.
+--------------------------+
Sat Oct  1 23:25:41 UTC 2016
development/composer: Updated for version 1.2.1.
development/dwarf: Updated for version 20160929.
development/hhvm: Updated for version 3.15.1.
development/meld3: Updated for version 3.16.3.
development/nodejs: Updated for version 4.6.0.
development/textadept: Updated for version 9.0.
development/universal-ctags: Updated for version 29ae3cc.
graphics/converseen: Updated for version 0.9.5.2.
libraries/CherryPy: Updated for version 8.1.2.
network/filezilla: Updated for version 3.22.0.
network/pentadactyl: Updated for version 20160924.
office/calibre: Updated for version 2.69.0
perl/perl-Test-Simple: Updated for version 1.302059.
perl/perlbrew: Added (Manage perl installations).
system/progress: Added (Linux tool to show progress).
+--------------------------+
Sat Oct  1 00:30:20 UTC 2016
academic/bibletime: Updated for version 2.11_rc2.
academic/sword-data-kjv: Updated for version 1.7.5.
academic/sword: Updated for version 1.7.5a1.
audio/quodlibet: Updated for version 3.7.1.
audio/sayonara-player: Update HOMEPAGE and README.
desktop/Ater-MPlayer-skin: Switch to i586 + update HOMEPAGE & DOWNLOAD.
desktop/faenza-cupertino: Added (gnome icon theme).
desktop/moka-icon-theme: Updated for version 5.3.3.
desktop/numix-icon-theme-circle: Updated for version 2.0.3.9.
desktop/paper-icon-theme: Updated for version 1.3.3.
desktop/perwindowlayoutd: Switch to i586.
development/Bottleneck: Switch to i586.
development/Naked: Switch to i586.
development/PythonToolkit: Switch to i586.
development/coccinelle: Switch to i586.
development/dreampie: Switch to i586.
development/global: Updated for version 6.5.5.
development/love: Updated for version B.02.18.
development/menhir: Switch to i586.
development/squeak-vm: Update README.
development/sublime_text: Updated for version 3.1.26.
development/tstoolbox: Updated for version 1.12.12.9.
development/wheel: Switch to i586.
development/xsp: Added (Mono's ASP.NET hosting server).
games/FlightGear-data: Updated for version 2016.3.1, new maintainer.
games/FlightGear: Updated for version 2016.3.1, new maintainer.
games/doomretro: Updated for version 2.3.
games/gzdoom: Updated for version 2.2.0.
games/mame: Updated for version 0.178, add bgfx support.
games/snes9x: Fix crash in "open recent" menu.
gis/postgis: Updated for version 2.3.0.
graphics/grafx2: Added alternate source.
graphics/oyranos: Switch to i586.
graphics/phatch: Switch to i586.
graphics/pygraphviz: Switch to i586.
graphics/shotwell: Updated for version 0.24.0.
libraries/Atlas-C++: Switch to i586.
libraries/CherryPy: Updated for version 8.1.1.
libraries/ConfigParser: Switch to i586.
libraries/PrettyTable: Switch to i586.
libraries/PyODE: Switch to i586.
libraries/SimGear: Updated for version 2016.3.1 + new maintainer.
libraries/async: Switch to i586.
libraries/audioread: Switch to i586.
libraries/avbin: Switch to i586.
libraries/bcdoc: Switch to i586.
libraries/botocore: Updated for version 1.4.58.
libraries/cchardet: Switch to i586.
libraries/curses_ex: Switch to i586.
libraries/discogs-client: Switch to i586.
libraries/dropbox-python: Updated for version 6.9.0.
libraries/enum34: Switch to i586.
libraries/evernote-python: Switch to i586.
libraries/gallerize: Updated for version 0.3.2.
libraries/guppy: Switch to i586.
libraries/hurry-filesize: Switch to i586.
libraries/jsoncpp: Updated for version 1.7.6
libraries/kaadbg: Switch to i586.
libraries/libclaw: Switch to i586.
libraries/libedit: Updated for version 20160903_3.1.
libraries/libfilezilla: Updated for version 0.7.0.
libraries/libunibreak: Updated for version 3.0.
libraries/libwfut: Switch to i586.
libraries/plumbum: Switch to i586.
libraries/pykdtree: Updated for version 1.2.1.
libraries/pysendfile: Switch to i586.
libraries/rarfile: Switch to i586.
libraries/rpyc: Switch to i586.
libraries/setproctitle: Switch to i586.
libraries/smmap: Switch to i586.
libraries/toro: Switch to i586.
libraries/urdfdom: Updated for version 0.4.1.
libraries/urdfdom_headers: Updated for version 0.4.1.
libraries/varconf: Switch to i586.
libraries/web.py: Switch to i586.
libraries/webkit2gtk: Updated for version 2.14.0.
libraries/wxGTK3: Update README.
libraries/wxPython3: Add webkitgtk detection.
multimedia/Poor-Mans-Spotify: Removed (Project name renamed).
multimedia/ffmpegyag: Switch to i586.
network/Flootty: Switch to i586.
network/PaleMoon: Updated for version 26.5.0.
network/awscli: Updated for version 1.11.0.
network/etherpoke: Switch to i586.
network/flexget: Updated for version 2.3.33.
network/krb5: Avoid overwriting Slackware's package.
network/light-firefox: Added (A light browser based on Mozilla).
network/livestreamer-curses: Switch to i586.
network/livestreamer: Switch to i586.
network/offlineimap: Updated for version 7.0.7.
network/pms-youtube: Switch to i586.
network/qTox: Updated for version 20160927_427176a.
network/r2e: Updated for version 2.71 + new maintainer.
network/rubygem-showterm: Switch to i586.
network/tixati: Updated for version 2.45_1.
network/toxcore: Updated for version 20160921_161ab46.
network/turbolift: Switch to i586.
network/vacuum-im: Updated for version 1.2.5.
network/wakeonlan: Switch to i586.
network/yoda: Switch to i586.
network/youtube-dl: Updated for version 2016.09.27.
office/LibreOffice: Updated for version 5.2.2.2
office/TaskCoach: Switch to i586.
office/etm: Removed (replaced with etmtk).
office/etmtk: Added (event and task manager for console and GUI).
office/libreoffice-helppack: Updated for version 5.2.2.
office/libreoffice-langpack: Updated for version 5.2.2.
office/libreoffice: Updated for version 5.2.2.
office/marave: Switch to i586.
office/minidjvu: Switch to i586.
office/pyspread: Switch to i586.
office/tudu: Added (todo list program).
perl/perl-CPAN-Perl-Releases: Added (Mapping Perl releases).
perl/perl-Devel-PatchPerl: Added (Patch perl source).
perl/perl-File-pushd: Added (change directory temporarily).
perl/perl-Package-DeprecationManager: Update DOWNLOAD url.
perl/perl-Readonly: Updated for version 2.05.
perl/perl-Scalar-List-Utils: Removed (included in perl 5.22).
perl/perl-Test-Output: Added (Utilities to test STDOUT and STDERR).
perl/perl-Test-Simple: Updated for version 1.302056.
perl/perl-Test-Spec: Added (Write tests).
perl/perl-local-lib: Added (create and use a local lib/).
python/PyDispatcher: Switch to i586.
python/PySDL2: Switch to i586.
python/argcomplete: Switch to i586.
python/argh: Switch to i586.
python/args: Switch to i586.
python/blessings: Switch to i586.
python/chump: Switch to i586.
python/cov-core: Switch to i586.
python/drawille: Switch to i586.
python/functools32: Switch to i586.
python/guess-language: Switch to i586.
python/guessit: Updated for version 2.0.4.
python/i3-py: Switch to i586.
python/jedi: Switch to i586.
python/jsonschema: Switch to i586.
python/kaptan: Switch to i586.
python/lxml: Fix download url
python/minidb: Switch to i586.
python/ndg_httpsclient: Switch to i586.
python/pendulum: Updated for version 0.6.2.
python/pilkit: Switch to i586.
python/pluggy: Switch to i586.
python/purl: Switch to i586.
python/py: Switch to i586.
python/pydot: Update DOWNLOAD url + switch to i586.
python/pyglet: Switch to i586.
python/pymongo: Switch to i586.
python/pytest: Updated for version 3.0.3.
python/python-certifi: Updated for version 2016.9.26.
python/python-keyutils: Switch to i586.
python/python-libtmux: Switch to i586.
python/python-notify2: Switch to i586.
python/python-unicodecsv: Switch to i586.
python/python-wrapt: Switch to i586.
python/python-xcffib: Switch to i586.
python/pywebkitgtk: Update download url
python/queuelib: Switch to i586.
python/s3transfer: Updated for version 0.1.5.
python/singledispatch: Switch to i586.
python/soundcloud: Switch to i586.
python/sql: Switch to i586.
python/termcolor: Switch to i586.
python/trollius: Switch to i586.
python/tzlocal: Switch to i586.
python/wsgiref: Switch to i586.
ruby/rubygem-bundler: Updated for version 1.13.2.
ruby/rubygem-coderay: Switch to i586.
ruby/rubygem-method_source: Switch to i586.
ruby/rubygem-pry: Switch to i586.
ruby/rubygem-slop3: Switch to i586.
system/TermRecord: Switch to i586.
system/autoarchive: Switch to i586.
system/barman: Updated for version 2.0.
system/findcmd: Switch to i586.
system/flashcards: Switch to i586.
system/graphterm: Switch to i586 + update HOMEPAGE.
system/iucode_tool: Switch to i586 + new maintainer.
system/lshw: Updated for version B.02.18.
system/mdocml: Updated for version 1.13.4.
system/mongo-tools: Updated for version 3.2.9.
system/mongodb: Updated for version 3.2.9.
system/mucommander: Update DOWNLOAD url.
system/patool: Switch to i586.
system/phoronix-test-suite: Updated for version 6.6.1.
system/pstate-frequency: Updated for version 3.5.1.
system/qdirstat: Added (disk space information).
system/rar2fs: Updated for version 1.23.1.
system/rar: Updated for version 5.4.0.
system/redis-py: Switch to i586.
system/rename: Switch to i586.
system/repeat: Switch to i586.
system/syslog-ng: Updated for version 3.8.1.
system/termsaver: Switch to i586.
system/udiskie: Switch to i586.
system/unrar: Updated for version 5.4.5.
system/zstd: Updated for version 1.1.0.
+--------------------------+
Sun Sep 25 00:06:32 UTC 2016
academic/galculator: Switch to i586.
academic/gcompris: Switch to i586.
audio/sayonara-player: Updated for version 0.9.2.
desktop/homerun: Switch to i586.
desktop/murrine: Switch to i586.
development/anjuta: Switch to i586.
development/bas55: Switch to i586.
development/byacc: Switch to i586.
development/gengetopt: Switch to i586.
development/scratch: Switch to i586.
development/squeak-vm: Switch to i586.
development/wxHexEditor: Switch to i586.
games/wesnoth: Switch to i586.
gis/qgis: Updated for version 2.16.3.
graphics/grafx2: Update DOWNLOAD url + switch to i586.
graphics/pinta: Switch to i586.
graphics/qcad: Updated for version 3.15.5.3
libraries/LucenePlusPlus: Switch to i586.
libraries/SlowAES: Switch to i586.
libraries/botocore: Updated for version 1.4.56.
libraries/bullet: Switch to i586.
libraries/crossguid: Updated for version 20160705
libraries/ctemplate: Switch to i586.
libraries/ffms2: Switch to i586.
libraries/gdata: Update download link
libraries/gdl: Switch to i586.
libraries/gf2x: Switch to i586.
libraries/gtksourceview3: Switch to i586.
libraries/hidapi: Switch to i586.
libraries/imlib: Switch to i586.
libraries/jansson: Updated for version 2.9
libraries/leptonica: Switch to i586.
libraries/libgda: Switch to i586.
libraries/libgit2-glib: Switch to i586.
libraries/libgusb: Switch to i586.
libraries/libmygpo-qt: Updated for version 1.0.9.
libraries/libseccomp: Switch to i586.
libraries/libu2f-host: Switch to i586.
libraries/liburcu: Switch to i586.
libraries/mysql-connector-c++: Switch to i586.
libraries/mysql-connector-python: Switch to i586.
libraries/nacl: Switch to i586.
libraries/oath-toolkit: Updated for version 2.6.2.
libraries/ocaml-bisect: Switch to i586.
libraries/pugixml: Switch to i586.
libraries/rest: Switch to i586.
libraries/secp256k1: Switch to i586.
libraries/vsqlite++: Switch to i586.
libraries/xmlsec: Switch to i586.
misc/fcrackzip: Switch to i586.
misc/rsibreak: Switch to i586.
multimedia/TeamSpeak3: Switch to i586.
multimedia/gimp-gap: Switch to i586.
multimedia/gtkpod: Switch to i586.
multimedia/guvcview: Switch to i586.
multimedia/pngnq-s9: Switch to i586.
network/PaleMoon: Added alternate extract routine.
network/awscli: Updated for version 1.10.66.
network/bwm-ng: Switch to i586.
network/darkstat: Switch to i586.
network/dnstracer: Switch to i586.
network/hostsblock: Switch to i586.
network/mod_bw: Switch to i586.
network/netcat: Switch to i586.
network/putty: Switch to i586.
network/sshblock: Switch to i586.
network/telegram: Updated for version 0.10.8.
network/you-get: Updated for version 0.4.555.
network/youtube-dl: Updated for version 2016.09.24.
office/Ted: Switch to i586.
python/babelfish: Updated for version 0.5.5.
python/ecdsa: Switch to i586.
python/monty: Updated for version 0.9.5.
python/pyrfc3339: Switch to i586.
python/python-jsonrpclib: Switch to i586.
python/python-parsedatetime: Switch to i586.
python/python-pbkdf2: Switch to i586.
python/python-qrcode: Switch to i586.
python/python-tlslite: Updated for version 0.4.9.
python/rebulk: Added (Advanced searches in strings).
system/acpi: Switch to i586.
system/apache-activemq: Updated for version 5.14.0.
system/autocutsel: Switch to i586.
system/colord: Switch to i586.
system/ext4magic: Switch to i586.
system/gdmap: Switch to i586.
system/gimp-help: Switch to i586.
system/gtk-vnc: Updated for version 0.6.0.
system/md5deep: Switch to i586.
system/multitail: Switch to i586.
system/mysql-utilities: Switch to i586.
system/netatop: Switch to i586.
system/pdfgrep: Switch to i586.
system/sqlite2: Switch to i586.
system/suhosin: Switch to i586.
system/swatch: Switch to i586.
system/tomb: Switch to i586.
system/unicode-character-database: Switch to i586.
system/vbindiff: Switch to i586.
system/yelp-tools: Switch to i586.
system/yelp-xsl: Switch to i586.
system/yelp: Switch to i586.
+--------------------------+
Sat Sep 24 00:06:42 UTC 2016
academic/bibletime: Add NOTE about qt5.
academic/labplot2: Updated for version 2.3.0.
academic/reduce-algebra: Updated for version 20160913svn3783.
audio/sayonara-player: Added (small, clear and fast audio player).
desktop/alarm: Switch to i586.
desktop/fvwm-crystal: Switch to i586.
desktop/gr1d: Switch to i586.
desktop/matrixgl: Switch to i586.
desktop/notion: Switch to i586.
desktop/ptwit: Updated for version 0.2.
desktop/qtile: Switch to i586.
desktop/screensaver-icon: Switch to i586.
desktop/ssr: Fix build problem.
desktop/sun: Switch to i586.
desktop/xfce4-battery-plugin: Switch to i586.
desktop/xfce4-fsguard-plugin: Switch to i586.
development/Cython-Kivy: Switch to i586.
development/FreeBASIC: Switch to i586.
development/bpython: Switch to i586.
development/extra-cmake-modules: Added (CMake extra modules).
development/git-lfs: Switch to i586.
development/gitstats: Switch to i586.
development/ipython: Add new optional dependency.
development/libretro-samples: Added (libretro API samples).
development/meld: Switch to i586.
development/mysql-workbench: Switch to i586.
development/pandas: Switch to i586.
development/poedit: Updated for version 1.8.9.
development/sublime_text: Updated for version 3.1.14.
games/3D-Fasteroids: Switch to i586.
games/BeastieWorker-levels: Switch to i586.
games/BeastieWorker: Switch to i586.
games/OpenXcom: Switch to i586.
games/Sokoban: Switch to i586.
games/SpaceZero: Switch to i586.
games/ardentryst: Switch to i586.
games/arnold-cpc: Switch to i586.
games/arx-libertatis: Switch to i586.
games/asc: Switch to i586.
games/assaultcube-reloaded: Switch to i586.
games/astromenace: Switch to i586.
games/berusky-data: Switch to i586.
games/berusky2-data: Switch to i586.
games/berusky2: Switch to i586.
games/berusky: Switch to i586.
games/bomberclone: Switch to i586.
games/boswars: Switch to i586.
games/caph: Switch to i586.
games/cgames: Switch to i586.
games/conquest: Switch to i586.
games/crossfire-client: Switch to i586.
games/curseofwar: Switch to i586.
games/cyphesis: Switch to i586 and update HOMEPAGE.
games/doomsday: Switch to i586.
games/fifengine: Switch to i586.
games/flare-game: Switch to i586.
games/flare: Switch to i586.
games/freedroid: Switch to i586.
games/freeorion: Switch to i586.
games/galaxyv2: Switch to i586.
games/game_1945: Switch to i586.
games/glob2: Switch to i586 and merge patches.
games/goonies: Switch to i586.
games/haxima-nazghul: Switch to i586.
games/hexglass: Switch to i586.
games/higan: Updated for version 101.
games/javacpc: Switch to i586.
games/libretro-mgba: Updated for version 2016.09.19_def5a46.
games/mars: Switch to i586.
games/mednafen: Updated for version 0.9.39.2.
games/minetest: Switch to i586.
games/minetest_game: Switch to i586.
games/mog: Switch to i586.
games/nFlood: Switch to i586.
games/nSnake: Switch to i586.
games/ninvaders: Switch to i586.
games/nlarn: Switch to i586.
games/npush: Switch to i586.
games/openclonk: Switch to i586.
games/openlierox: Switch to i586.
games/openspades: Switch to i586.
games/openttd: Updated for version 1.6.1.
games/pybik: Switch to i586.
games/pychess: Switch to i586.
games/roadfighter: Switch to i586.
games/simplesok: Switch to i586.
games/smashbattle: Switch to i586.
games/sokowiz: Switch to i586.
games/stormbaancoureur: Added (Simulated Obstacle Course).
games/sumwars: Switch to i586.
games/sumwars: Switch to i586.
games/teeworlds: Switch to i586.
games/term2048: Switch to i586.
games/tome4: Switch to i586.
games/triplea: Switch to i586.
games/tty-solitaire: Switch to i586.
games/tuxfootball: Switch to i586.
games/tworld: Switch to i586.
games/unknown-horizons: Switch to i586.
games/unnethack: Switch to i586.
games/unvanquished: Switch to i586.
games/vms-empire: Switch to i586.
games/xcpc: Switch to i586.
games/xpilot-ng: Switch to i586.
games/yetris: Switch to i586.
games/znake: Switch to i586.
games/zod-engine: Switch to i586.
graphics/digikam: Switch to i586.
graphics/enblend-enfuse: Updated for version 4.2.
graphics/jp2a: Switch to i586.
libraries/Kivy: Switch to i586.
libraries/SFML: Update script.
libraries/botocore: Updated for version 1.4.55.
libraries/cffi: Updated for version 1.8.3.
libraries/gssdp: Updated for version 1.0.0.
libraries/gupnp: Updated for version 1.0.0.
libraries/lensfun: Switch to i586.
libraries/libast: Switch to i586.
libraries/libkface: Update DOWNLOAD url + switch to i586.
libraries/libkgeomap4: Update DOWNLOAD url + switch to i586.
libraries/libkvkontakte: Switch to i586.
libraries/liblqr: Switch to i586.
libraries/libpgf: Switch to i586.
libraries/libwebp: Updated for version 0.5.1.
libraries/live555: Updated for version 2016.09.22
libraries/plib: Switch to i586.
libraries/pymediainfo: Updated for version 2.5.1.
libraries/python3-dvdvideo: Added (Video DVD reader library).
libraries/qt5: Switch to i586.
libraries/webkit2gtk: Updated for version 2.12.5.
libraries/webkitgtk3: Switch to i586.
libraries/webkitgtk: Switch to i586.
libraries/wxGTK3: Switch to i586.
libraries/wxGTK: Switch to i586.
misc/no-more-secrets: Added (Sneakers effect).
multimedia/spotify: Updated for version 1.0.38.171.g5e1cd7b2.
multimedia/vlsub: Switch to i586.
multimedia/yarock: Switch to i586.
network/BitchX: Switch to i586.
network/CherryMusic: Updated for version 0.38.0.
network/ClusterSSH: Updated for version 4.07.
network/Electrum: Switch to i586.
network/PaleMoon: Added (web browser).
network/awscli: Updated for version 1.10.65.
network/flexget: Updated for version 2.3.28.
network/netsniff-ng: Switch to i586.
network/otter: Switch to i586.
network/pastebincl: Switch to i586.
network/r8168: Updated for version 8.042.
network/sabnzbd: Updated for version 1.1.0.
network/sieve-connect: Updated for version 0.88.
network/speedtest-cli: Switch to i586.
network/telegram: Updated for version 0.10.7.
network/tor-browser: Updated for version 6.0.5.
network/vivaldi: Updated for version 1.4.589.29.
network/weathercli: Switch to i586.
network/youtube-dl: Updated for version 2016.09.18.
network/zmap: Switch to i586.
office/alot: Added (MUA based on notmuch mail).
office/calibre: Updated for version 2.68.0
office/mu: Updated for version 0.9.16.
office/notmuch: Updated for version 0.22.2.
office/sc-im: Added (spreadsheet).
perl/perl-Math-Complex_C-L: Added (interface to C's long double).
perl/perl-Math-Complex_C-Q: Added (interface to C's __complex128).
perl/perl-Math-Complex_C: Added (interface to C's double precision).
perl/perl-Math-Decimal64: Added (interface to C's _Decimal64).
perl/perl-Math-GMPf: Added (interface to GMP library's FP).
perl/perl-Math-GMPq: Update README.
perl/perl-Math-GMPz: Update README.
perl/perl-Math-LongDouble: Added (interface to C's long double).
perl/perl-Math-MPC: Update README.
perl/perl-Math-MPFR: Update README.
perl/perl-Module-ScanDeps: Updated for version 1.22.
perl/perl-PAR: Updated for version 1.011.
python/Flask: Switch to i586.
python/Scrapy: Updated for version 1.1.3.
python/click-default-group: Added (click extends).
python/click: Switch to i586.
python/colored: Updated for version 1.3.1.
python/invoke: Updated for version 0.13.0.
python/monty: Updated for version 0.9.4.
python/numpydoc: Updated for version 0.6.0.
python/pendulum: Updated for version 0.6.1.
python/psutil: Updated for version 4.3.1
python/pygrametl: Updated for version 2.5.0.
python/python-libnacl: Updated for version 1.5.0
python/python-libtmux: Updated for version 0.6.0.
python/regex: Updated for version 2016.09.22.
python/requests-oauthlib: Updated for version 0.7.0.
python/xtermcolor: Switch to i586.
ruby/sequel: Updated for version 4.38.0.
system/Attic: Switch to i586.
system/Eterm: Switch to i586.
system/TLP: Updated for version 0.9.
system/brasero: Switch to i586.
system/caprice32: Switch to i586.
system/dehydrated: Added (letsencrypt/acme client).
system/em: Switch to i586.
system/fakeroot: Re-adding copyright note.
system/fr: Switch to i586.
system/gentoo: Switch to i586.
system/guix: Updated for version 0.11.0.
system/intel-microcode: Updated for version 20160714.
system/iucode_tool: Updated for version 2.0.
system/linkchecker: Switch to i586.
system/openrc: Updated for version 0.21.7.
system/porg: Updated for version 0.10.
system/pstate-frequency: Added (Control Intel p-state driver).
system/pysed: Switch to i586.
system/rmw: Updated for version 2016.09.19.01a.
system/slpkg: Switch to i586.
system/termenu: Switch to i586.
system/thinkfan: Updated for version 0.9.3.
system/tmuxp: Updated for version 1.2.1.
system/ttf-paratype-pt-fonts: Added (Public Type (PT) fonts).
system/ttygif: Switch to i586.
system/ttyrec: Switch to i586.
system/wine-staging: Updated for version 1.9.19.
+--------------------------+
Sat Sep 17 07:23:50 UTC 2016
audio/ncmpcpp: Updated for version 0.7.4.
audio/puddletag: Updated for version 1.1.1 + new maintainer.
desktop/gtk-theme-Greybird: Updated for version 3.20.1.
development/autogen: Fix README.
development/guile1.8: Disable static.
games/GLupeN64: Updated for version 2016.09.15_6baff60.
games/qmc2: Update HOMEPAGE.
gis/qmapshack: Updated for version 1.7.1.
graphics/leocad: Updated for version 0.83.1.
libraries/cryptopp: Bring back required .pc file.
libraries/jansson: Updated for version 2.8
libraries/libxnvctrl: Added (NVIDIA NV-CONTROL X extension).
libraries/live555: Updated for version 2016.09.12
multimedia/vivaldi-codecs-ffmpeg-extra: Updated for version 52.0.
network/aria2: Updated for version 1.27.0.
network/flexget: Updated for version 2.3.27.
network/glusterfs: Added (scalable network filesystem).
network/opensmtpd: Updated for version 6.0.0p1.
network/tor: Updated for version 0.2.8.7.
network/vivaldi: Updated for version 1.4.589.15.
network/yadifa: Added (Yet Another DNS Implementation For All).
network/youtube-dl: Updated for version 2016.09.15.
office/hunspell-de: Added (German hunspell dictionaries).
office/task: Updated for version 2.5.1.
office/taskjuggler: Updated for version 3.6.0.
office/timetrap: Updated for version 1.12.0.
perl/perl-Sidef: Updated for version 2.31.
python/python-editor: Added (Programmatically open an editor).
python/pyzmq: Updated for version 15.4.0.
system/USBdev: Added (Recognition tool of USB devices).
system/fzf: Fix VERSION.
system/gradm: Updated for version 3.1_201608131257.
system/letsencrypt.sh: Removed (letsencrypt trademark violation).
system/spl-solaris: Updated for version 0.6.5.8.
system/vifm: Updated for version 0.8.2.
system/zfs-on-linux: Updated for version 0.6.5.8.
+--------------------------+
Wed Sep 14 12:35:58 UTC 2016
libraries/cryptopp: Removed cryptopp.pc.
multimedia/flashplayer-plugin: Fix VERSION.
+--------------------------+
Wed Sep 14 12:08:01 UTC 2016
desktop/py3status: Updated for version 3.1.
development/autogen: Updated for version 5.18.12.
development/kicad: Updated for version 4.0.4.
development/openjdk6: Updated for version 6b40.
development/pycharm: Updated for version 2016.2.3.
development/watchman: Updated for version 4.7.0.
games/freeblocks: Added (puzzle game).
games/mupen64plus-libretro: Updated for version 2016.09.12_5b86c3e.
games/openmw: Updated for version 0.40.0.
games/pinball: Use -j1.
graphics/xmedcon: Fix VERSION.
libraries/Botan: Updated for version 1.11.31.
libraries/CherryPy: Updated for version 8.1.0.
libraries/botocore: Updated for version 1.4.54.
libraries/cryptopp: Updated for version 5.6.4.
libraries/dietlibc: Switch to i586.
libraries/libdsk: Updated for version 1.4.0.
libraries/libhtp: Updated for version 0.5.22.
libraries/libmp4v2: Update DOWNLOAD url.
libraries/libofa: Update DOWNLOAD url.
libraries/libowfat: Switch to i586.
libraries/poco: Updated for version 1.7.5.
libraries/tmdb3: Updated for version 0.7.2.
multimedia/flashplayer-plugin: Updated for version 11.2.202.635.
multimedia/shotcut: Update DOWNLOAD url.
network/awscli: Updated for version 1.10.64.
network/flexget: Updated for version 2.3.26.
network/offlineimap: Updated for version 7.0.6.
network/onioncat: Updated for version 0.2.2.r569.
network/razor-agents: Switch to i586.
network/suricata: Updated for version 3.1.2.
network/telegram: Updated for version 0.10.6.
network/urlwatch: Updated for version 2.5.
office/hunspell-pl: Updated for version 20160907.
office/jstock: Moved from misc + updated for version 1.0.7.16.
office/openoffice.org: Fix build.
perl/perl-Archive-Extract: Updated for version 0.78.
perl/perl-CPANPLUS-Dist-Build: Updated for version 0.80.
perl/perl-CPANPLUS-Dist-Slackware: Updated for version 1.024.
perl/perl-CPANPLUS: Updated for version 0.9160.
perl/perl-DBIx-Simple: Switch to i586.
perl/perl-Log-Message-Simple: Switch to i586.
perl/perl-Log-Message: Switch to i586.
perl/perl-Module-Pluggable: Switch to i586.
perl/perl-Object-Accessor: Switch to i586.
perl/perl-Package-Constants: Switch to i586.
perl/perl-Term-ReadLine-Gnu: Updated for version 1.34.
perl/perl-Term-UI: Switch to i586.
perl/perl-WebService-MusicBrainz: Updated for version 0.94.
perl/perl-cgi-minimal: Added (alternative to the CGI.pm module).
python/Flask-Cors: Updated for version 3.0.2.
python/Markdown: Updated for version 2.6.6.
python/PyGithub: Updated for version 1.28.
python/Unidecode: Updated for version 0.04.19.
python/blinker: Updated for version 1.4.
python/buildbot-slave: Updated for version 0.8.12.
python/curtsies: Updated for version 0.2.9.
python/feedgenerator: Updated for version 1.9.
python/pelican: Updated for version 3.6.3.
python/pendulum: Updated for version 0.6.0.
python/pycryptopp: Updated for version 0.7.1.
python/python-libsass: Updated for version 0.11.1.
python/s3transfer: Updated for version 0.1.4.
ruby/rbenv: Fix broken /etc/profile.d/rbenv.csh.
ruby/ruby-build: Updated for version 20160913.
ruby/rubygem-bundler: Updated for version 1.13.1.
system/aespipe: Switch to i586.
system/fzf: Added (A command-line fuzzy finder).
system/jsawk: Added (like awk, but for JSON).
system/jshon: Added (a fast JSON parser).
system/mksh: Updated for version R53a.
system/powerline-status: Added (ultimate statusline/prompt utility).
system/ptop: Updated for version 1.0.0.
+--------------------------+
Sun Sep 11 16:57:44 UTC 2016
libraries/ipaddress: Updated for version 1.0.17.
python/pyOpenSSL: Fix VERSION.
ruby/rubygem-bundler: Updated for version 1.13.0.
system/containerd: Fix DOWNLOAD url.
system/dar: Updated for version 2.5.6.
system/webmin: Updated for version 1.810.
+--------------------------+
Sun Sep 11 01:55:42 UTC 2016
academic/libqalculate: Added (desktop caculator library).
academic/qalculate-gtk: Added (GUI for libqalculate).
audio/xwax: Updated for version 1.6.
desktop/awesome-appmenu: Added (application menu tool for awesome).
desktop/insync-thunar: Updated REQUIRES.
development/codeblocks: Updated for version 16.01.
development/flow: Updated for version 0.32.0.
development/hub: Updated for version 2.2.6.
development/komodo-edit: Updated for version 10.1.0.
development/komodo-ide: Updated for version 10.1.0.
development/poedit: Switch to i586.
development/scite: Updated for version 3.6.7.
development/tig: Updated for version 2.2.
development/uz80as: Fix MD5SUM.
development/vstudio: Updated for version 6.5.12.
games/7kaa: Added (Seven Kingdoms, a real-time strategy game).
games/GLupeN64: Added (mupen64plus + RSP-HLE + GLideN64 + libretro).
games/blastem-libretro: Updated for version 2016.09.08_27b3f8e.
games/bnes-libretro: Added (libretro implementation of bNES).
games/chromium-bsu: Updated for version 0.9.16.1
games/firestorm: Updated for version 4.7.9.50527.
gis/Shapely: Updated for version 1.5.17.
gis/google-earth: Add 64 bit support.
gis/pdal: Updated for version 1.3.0.
graphics/converseen: Updated for version 0.9.5.1.
graphics/gmic: Added (image processing framework).
graphics/mapcrafter: Updated for version 2.3.1.
libraries/CherryPy: Updated for version 8.0.0.
libraries/Nevow: Updated for version 0.14.2.
libraries/VitaMTP: Added (Vita's MTP protocol library).
libraries/botocore: Updated for version 1.4.52.
libraries/cffi: Updated for version 1.8.2.
libraries/cfitsio: Updated for version 3.39.
libraries/cryptopp: Updated for version 5.6.3.
libraries/dropbox-python: Updated for version 6.8.0.
libraries/enca: Updated for version 1.19
libraries/gtkspell3: Updated for version 3.0.9.
libraries/jsoncpp: Updated for version 1.7.5
libraries/libgadu: Updated for version 1.12.1 + new maintainer.
libraries/libvirt-python: Updated for version 2.2.0.
libraries/libvirt: Updated for version 2.2.0.
libraries/live555: Updated for version 2016.09.08
libraries/ntl: Updated for version 9.11.0.
libraries/php-memcache: Fixed build with gnu89 flag.
libraries/wxPython3: Added (Crossplatform GUI Toolkit).
misc/QCMA: Added (Cross-platform content manager assistant).
misc/qtspell: Updated for version 0.8.2.
multimedia/aegisub: Switch to i586.
multimedia/gpodder: Updated for version 3.9.1.
multimedia/lives: Updated for version 2.8.0.
multimedia/plexmediaserver: Updated for version 1.1.3.2700.
network/Pyrit: Added (WPA precomputed cracker).
network/allmydata-tahoe: Removed (replaced by tahoe-lafs).
network/awscli: Updated for version 1.10.62.
network/bitlbee-steam: Updated for version 1.4.2.
network/boxcryptor: Updated for version 2.1.409.160.
network/flexget: Updated for version 2.3.16.
network/freeradius-server: Updated for version 2.2.9.
network/imapproxy: i486 -> i586.
network/midori: Switch to webkit2gtk.
network/nghttp2: Updated for version 1.14.0.
network/nzbget: Updated for version 17.1.
network/postfix: Updated for version 3.1.2.
network/qTox: Updated for version 20160901_76c4cf7.
network/reaver: Update DOWNLOAD url.
network/sipcalc: i486 -> i586.
network/sphinx: Updated for version 2.2.11.
network/sshguard: Updated for version 1.7.0.
network/sshuttle: Updated for version 0.78.1.
network/sslh: Updated for version 1.18.
network/tahoe-lafs: Added (Secure File Store).
network/tornado: Add backports-abc dependency.
network/toxcore: Updated for version 20160727_755f084.
network/vivaldi: Updated for version 1.4.589.11.
network/wireshark: Updated for version 2.2.0.
network/youtube-dl: Updated for version 2016.09.08.
office/LibreOffice: Updated for version 5.2.1.2
office/calibre: Updated for version 2.67.0
office/gnucash: Updated for version 2.6.13.
office/libreoffice-helppack: Updated for version 5.2.1.
office/libreoffice-langpack: Updated for version 5.2.1.
office/libreoffice: Updated for version 5.2.1.
office/odt2txt: Updated for version 0.5.
office/openoffice.org: Add security hotfix patch.
office/pstoedit: Updated for version 3.70.
python/attrs: Added (attributes without boilerplate).
python/backports-abc: Added (backport of the collections.abc).
python/cryptography: Updated for version 1.5.
python/curtsies: Updated for version 0.2.6.
python/foolscap: Updated for version 0.12.3.
python/google-api-python-client: Updated for version 1.5.3.
python/idna: Updated for version 2.1.
python/pendulum: Updated for version 0.5.5.
python/pyOpenSSL: Updated for version 0.16.1.
python/pyasn1-modules: Updated for version 0.0.8.
python/pyasn1: Updated for version 0.1.9.
python/pytest: Updated for version 3.0.2.
python/python-configargparse: Updated for version 0.11.0.
python/python-django-tagging: Updated for version 0.4.3.
python/python-django: Updated for version 1.10.
python/python-jsonrpclib: Update HOMEPAGE.
python/python-memcached: Updated for version 1.58 + new maintainer.
python/python-oauth2client: Updated for version 3.0.0.
python/python-oauthlib: Updated for version 2.0.0.
python/python-swiftclient: Updated for version 3.1.0.
python/python-twisted: Updated for version 16.4.0.
python/requests-oauthlib: Updated for version 0.6.2.
python/service_identity: Updated for version 16.0.0.
python/sge-pygame: Updated for version 1.1.1.
ruby/rubygem-sass: Added (a CSS extension).
system/containerd: Added (linux containers manager).
system/fakeroot: Change maintainer + new script option.
system/firejail: Updated for version 0.9.42.
system/parallel: Updated for version 20160822.
system/pcsc-perl: Updated for version 1.4.14.
system/pcsc-tools: Updated for version 1.4.27.
system/phoronix-test-suite: Updated for version 6.6.0.
system/qemu-guest-agent: Updated for version 2.6.1.
system/qemu: Updated for version 2.6.1.
system/rmw: Updated for version 2016.09.04.01a.
system/runc: Added (lightweight portable containers).
system/s3ql: Updated for version 2.20.
system/usbredir: Updated for version 0.7.1.
system/wine-staging: Updated for version 1.9.18.
system/xen: Updated for version 4.7.0.
+--------------------------+
Sat Sep  3 00:50:31 UTC 2016
academic/irsim: Added (A digital circuit simulator).
academic/magic: Added (A VLSI layout design tool).
academic/pspp: Updated for version 0.10.2.
accessibility/xdotool: Fix script.
audio/mpd: Updated for version 0.19.19.
audio/qmmp-plugin-pack: Updated for version 0.10.1.
audio/quodlibet: Updated for version 3.7.0.
business/stansoft: Updated for version 7.6.
desktop/ceti-2-theme: Added (GTK2|GTK3 themes).
desktop/i3pystatus: Updated for version 3.35.
desktop/numix-gtk-theme: Removed (per maintainer request).
desktop/numix-icon-theme-bevel: Updated for version 1.0.2014102123.
desktop/numix-icon-theme-circle: Updated for version 2.0.3.7.
desktop/numix-icon-theme: Updated for version 0.3.824.201608071940.
desktop/numix-pack: Added (Icons, Themes, Wallpapers).
desktop/qmmp-skins: Added (skins for Qmmp player).
desktop/tint2: Update DOWNLOAD url.
desktop/zuki-themes: Added (Themes for GTK, gnome-shell and more).
development/SQLAlchemy: Updated for version 1.0.15.
development/atom: Updated for version 1.10.0.
development/cycler: Update DOWNLOAD url.
development/meld3: Updated for version 3.16.2.
development/nodejs: Update DOWNLOAD.
development/npm2tgz: Switch to nodejs.
development/qbs: Updated for version 1.6.0.
development/qt-creator: Updated for version 4.1.0.
development/radare2: Updated for version 0.10.5 + new maintainer.
development/sphinx_rtd_theme: Update dep.
development/uz80as: Updated for version 1.02.
games/SLADE: Updated for version 3.1.1.3.
games/mednafen: Updated for version 0.9.39.1.
games/pioneer: Updated for version 20160814.
games/yabause: Updated for version 0.9.15
gis/google-earth: Updated for version 7.1.7.2600.
gis/libLAS: Added (C/C++ library for the LAS LiDAR format).
libraries/IMAPClient: Updated for version 0.13.
libraries/SDL2_mixer: Fixed libmodplug support.
libraries/botocore: Updated for version 1.4.51.
libraries/matplotlib: Update DOWNLOAD url.
libraries/mini18n: Updated for version 0.2.1
libraries/webkit2gtk: Updated for version 2.12.4.
misc/moreutils: Updated for version 0.60.
misc/nixnote: Fix build and update dep.
misc/subsurface: Remove unused patch
multimedia/ffmpeg2theora: Updated for version 0.30.
network/PAC: Update REQUIRES.
network/aggregate: Switch to i586.
network/aria2: Updated for version 1.26.1.
network/awscli: Updated for version 1.10.61.
network/dropbox: Updated for version 8.4.21.
network/etherpad-lite: Switch to nodejs.
network/flexget: Updated for version 2.3.13.
network/gmvault: Added (gmail backup-restore tool).
network/google-cli: Updated for version 2.7.
network/ike: Fixed SlackBuild.
network/iojs: Update README.
network/iperf3: Added (bandwidth measurement tool).
network/keybase-client: Switch to nodejs.
network/mailman: Updated for version 2.1.23.
network/node: Removed (replaced by nodejs).
network/ssmtp: Update script.
network/youtube-dl: Updated for version 2016.08.28.
office/MasterPDFEditor: Switch to i586.
office/calibre: Updated for version 2.66.0
perl/Net-SSLeay: Updated for version 1.78.
perl/perl-Capture-Tiny: Updated for version 0.44.
perl/perl-Class-Method-Modifiers: Updated for version 2.12.
perl/perl-Data-Random: Update script and email.
perl/perl-Date-Manip: Updated for version 6.54.
perl/perl-IO-Socket-SSL: Updated for version 2.037.
perl/perl-Moo: Updated for version 2.002004.
perl/perl-Role-Tiny: Updated for version 2.000003.
python/Flask-Cors: Updated for version 3.0.1.
python/Logbook: Added (A logging replacement for Python).
python/buildbot: Added (automated compile/test cycle).
python/lxml: Updated for version 3.6.4
python/monty: Updated for version 0.9.1.
python/msgpack-python: Updated for version 0.4.8.
python/pendulum: Added (Python datetimes made easy).
python/ply: Updated for version 3.9.
python/poster: Added (streaming HTTP uploads).
python/pytest: Updated for version 3.0.1.
python/python-certifi: Updated for version 2016.8.31.
python/python-gflags: Updated for version 3.0.6.
python/python-requests: Updated for version 2.11.1.
python/python-scandir: Updated for version 1.3.
python/regex: Updated for version 2016.08.27.
python/s3transfer: Updated for version 0.1.3.
python/sqlparse: Added (SQL parser for Python).
python/waitress: Updated for version 1.0.0.
system/MySQL-Sandbox: Updated for version 3.1.13.
system/borgbackup: Updated for version 1.0.7.
system/dymo-cups-drivers: Moved from office + update script.
system/fsarchiver: Updated for version 0.8.0.
system/keybase: Updated for version 1.0.17.
system/nvidia-driver: Updated for version 367.44.
system/nvidia-kernel: Updated for version 367.44.
system/salt: Added (configuration management engine).
system/ttf-zekton: Added (True Type Font).
system/veracrypt: Added (free disk encryption software).
system/wine-staging: Updated for version 1.9.17.
system/xonsh: Updated for version 0.4.6.
system/zstd: Updated for version 1.0.0.
system/zuluCrypt: Updated for version 5.0.1.
+--------------------------+
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!
+--------------------------+