summaryrefslogtreecommitdiffstats
path: root/ChangeLog.txt
blob: 2ae748fb7c3d2a98dcb00f5dcfce02a74e663582 (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
Mon Apr 14 11:43:51 UTC 2014
desktop/fvwm95: Added (window manager for X11).
development/4th: Updated for version 3.62.2.
development/OpenCobolIDE: Updated for version 2.3.1.
gis/gpsd: Don't build libQgpsmm.
gis/viking: Updated for version 1.5.1.
git/gitignore: Update gitignore.
graphics/meshlab: Updated for version 1.3.3.
libraries/dbus-sharp-glib: Fix permission.
libraries/netcdf: Updated for version 4.3.1.1.
libraries/pyqode.widgets: Updated for version 1.2.2.
multimedia/OpenLP: Script cleanup.
network/LOIC: New maintainer.
network/gtk-gnutella: Updated for version 1.0.1.
network/nginx: Updated for version 1.4.7 + new maintainer.
network/you-get: Updated for version 0.3.28.2.
python/pysetuptools: Updated for version 3.4.4.
python/python3: Install pip and setuptools.
system/barman: Updated for version 1.3.1.
system/nvidia-kernel: Fix typo.
+--------------------------+
Sun Apr 13 06:52:51 UTC 2014
academic/gcompris: Updated for version 14.03.
development/lighttable: Fix symlink.
development/mysql-workbench: Updated for version 6.1.4.
development/vala: Updated for version 0.24.0.
games/bitfighter: Fix VERSION.
games/knights: Update DOWNLOAD.
games/mari0: Added (platform game).
games/openlierox: Added (Worms realtime/2D shooter).
libraries/assimp: Use source only.
libraries/botocore: Updated for version 0.40.0.
multimedia/TeamSpeak3: Updated for version 3.0.14.
network/awscli: Updated for version 1.3.6.
network/filezilla: Updated for version 3.8.0.
network/turbolift: Updated for version 2.1.0.
office/libreoffice-helppack: Updated for version 4.2.3.
office/libreoffice-langpack: Updated for version 4.2.3.
office/libreoffice: Updated for version 4.2.3.
perl/perl-Test-Trap: Updated for version 0.2.4.
python/argcomplete: Updated for version 0.8.0.
python/python-requests: Updated for version 2.2.1.
system/linkchecker: Updated for version 9.1.
system/mysql-utilities: Updated for version 1.4.2.
system/nvidia-driver: Updated for version 331.67.
system/nvidia-kernel: Updated for version 331.67.
system/sentimental-skk: Updated for version 0.0.143.
system/tilda: Updated for version 1.1.11 + new maintainer.
system/tmuxp: Updated for version 0.1.11.
system/trachet: Updated for version 1.0.3.
+--------------------------+
Sat Apr 12 19:01:36 UTC 2014
academic/bwa: Updated for version 0.7.8.
academic/cufflinks: Updated for version 2.2.0.
academic/evopedia_qt: Added (Offline Wikipedia viewer).
academic/glpk: Updated for version 4.54 + new maintainer.
academic/gwyddion: Updated for version 2.36.
academic/mafft: Updated for version 7.149.
academic/octave: Updated for version 3.8.1.
academic/paml: Updated for version 4.8.
academic/pamlX: Updated for version 1.2.
academic/qhull: New Maintainer.
academic/scipy: Updated for version 0.13.3.
academic/seaview: Updated for version 4.5.0.
academic/tophat: Updated for version 2.0.11.
academic/vcftools: Updated for version 0.1.12a.
audio/amrnb: Updated for version 11.0.0.0.
audio/amrwb: Updated for version 11.0.0.0.
audio/fst: Update SOURCE URL.
audio/jack2: Update MAN path.
audio/oss: Updated for version 4.2.2009.
audio/pd_mrpeach: Update SOURCE URL.
audio/podget: Updated for version 0.6.16.
audio/soundkonverter: Updated for version 2.1.0.
audio/volumeicon: Updated for version 0.5.0 + new maintainer.
business/tryton: Added (Tryton ERP -client part).
business/trytond: Added (ERP -server part).
desktop/Ater-MPlayer-skin: Added (MPlayer Theme).
desktop/ComixCursors: Added (X11 Mouse Theme).
desktop/Pulse-Glass: Added (X11 Mouse Theme).
desktop/bar: Added (lightweight bar based on XCB)
desktop/bspwm: Updated for version 0.8.8.
desktop/copyq: Updated for version 2.1.0.
desktop/fvwm-crystal: Added (fvwm desktop environment).
desktop/gr1d: Added (GTK 2.x Theme/Style).
desktop/i3situation: Updated for version 1.0.3.
desktop/icewm: Reverted to 1.3.7 plus some more patches
desktop/screenkey: Added (screencast tool).
desktop/ssr: Added (screen recorder).
desktop/thunar-sendto-clamtk: Updated for version 0.05.
desktop/vim-qt: Updated for version 20140203.
desktop/x-tile: New Maintainer.
development/Cython: Updated for version 0.20.1.
development/OpenCobolIDE: Updated for version 2.3.0.
development/PythonToolkit: Updated for version 14.04.
development/SDL2: Updated for version 2.0.3.
development/SQLAlchemy: Updated for version 0.9.4.
development/bluefish: Fixed checksum
development/chibi-scheme: Added (scheme implementation).
development/dao: Added (The Dao Programming Language).
development/icecream: Update UID/GID.
development/icecream: Update build script.
development/icemon: Added (Monitor for icecream).
development/ipython: Updated for version 2.0.0.
development/leiningen: Updated for version 2.3.4 + new maintainer.
development/lighttable: Added (An interactive IDE).
development/p4: Updated for version 2014.1.807760 + new maintainer.
development/p4v: Updated for version 2014.1.815009 + new maintainer.
development/pd-psql: Update SOURCE URL.
development/perf: Added (Linux kernel perf tools).
development/scite: Updated for version 3.4.1.
development/scons: Updated for version 2.3.1.
development/vala: Updated for version 0.23.3.
games/3D-Fasteroids: Added (A 3D shooting game).
games/OpenXcom: Added (clone of the UFO: Enemy Unknown).
games/SpaceZero: Added (space game).
games/alephone: Updated for version 20140104.
games/ardentryst: Added (action/RPG game).
games/assaultcube: Updated for version 1.2.0.2.
games/bitfighter: Updated for version 019c.
games/bomberclone: Added (Clone of the game AtomicBomberMan).
games/crossfire-client: Added (RPG Game).
games/desmume: Fixed download.
games/doomseeker: Updated for version 0.11.1b.
games/ds-models: Updated for version r15.
games/fgo: Updated for version 1.5.2.
games/freeorion: Added (space game).
games/glob2: Added (RTS game).
games/knights: New Maintainer + Script cleanup.
games/love-legacy072: Added (2D game development framework).
games/marathon-data: Updated for version 20140104.
games/marathon-infinity-data: Updated for version 20140104.
games/marathon2-data: Updated for version 20140104.
games/meandmyshadow: Updated for version 0.4.1.
games/mednafen: Updated for version 0.9.33.2.
games/megaglest: Updated for version 3.9.1.
games/nestopia: Updated for version 1.45.
games/notpacman: Added (rotating pac-man game).
games/openjazz: Added (engine for Jazz Jackrabbit games)
games/openttd: Updated for version 1.4.0.
games/qxw: Updated for version 20140331.
games/smashbattle: Added (shoot ‘m up action game).
games/smc: Added (Secret Maryo Chronicles).
games/sumwars: Added (role-playing game).
games/supermariowar: Added (Super Mario multiplayer game).
games/synobonaction: Added (abstract game, parody of Super Mario).
games/term2048: Updated for version 0.2.3.
games/tong: Updated for version 1.3.
games/torcs: Updated for version 1.3.5.
games/triplea: Added (Multiplayer strategy game).
games/tworld: Added (emulation game).
games/unvanquished: Updated for version 0.26.0.
games/zod-engine: Added (MMORTS - RTS style game).
gis/cartopy: Added (cartographic tools for Python).
gis/geogit: Updated for version 0.7.1.
gis/geopy: Updated for version 0.99.
gis/postgis: Updated for version 2.1.2.
gis/pyshp: Added (Python shapefile manipulation library).
git/gitignore: Added .pk3 from unvanquished.
graphics/Shellpic: Updated for version 1.3.
graphics/dcraw: Remove jdk as DEP.
graphics/graphviz: Updated for version 2.36.0.
graphics/lilypond: Updated for version 2.18.2.
graphics/makehuman: Updated for version 1.0.0.
graphics/pngquant: Updated for version 2.1.0.
graphics/yagf: Updated for version 0.9.3.2.
haskell/haskell-platform: Added ((The Haskell Platform))
libraries/CEGUI0.7: Added new parameters.
libraries/HawkNL: Added (game oriented network API)
libraries/QDarkStyle: Updated for version 1.9.
libraries/alure: Added (library to manage tasks with OpenAL).
libraries/assimp: Added (Open Asset Import Library).
libraries/audioread: Updated for version 1.0.2.
libraries/botocore: Updated for version 0.36.0.
libraries/cal3d: Added (3D animation library).
libraries/imlib2: Remove unexpanded variable from imlib2-config
libraries/imlib2: Updated for version 1.4.6 (+newmaintainer)
libraries/libburn: Updated for version 1.3.6 + new maintainer.
libraries/libdivecomputer: Added (Library for dive computers).
libraries/libisoburn: Updated for version 1.3.6 + new maintainer.
libraries/libisofs: Updated for version 1.3.6 + new maintainer.
libraries/liblogging: Updated for version 1.0.3.
libraries/libmemcached: Updated for version 1.0.18.
libraries/libmodplug: Updated for version 0.8.8.5.
libraries/libnfs: Updated for version 1.9.3.
libraries/libnova: New Maintainer.
libraries/librelp: Updated for version 1.2.5.
libraries/poco: Updated for version 1.4.6p3.
libraries/pyacoustid: Updated for version 1.1.0.
libraries/pyqode.core: Updated for version 1.3.1.
libraries/pyqode.widgets: Updated for version 1.2.1.
libraries/vte3: Updated for version 0.36.0.
libraries/yaml-cpp0.3: Added (YAML parser).
misc/asterixInspector: New Maintainer.
misc/dos2unix: Updated for version 6.0.4 + new maintainer.
misc/gcp: New Maintainer.
misc/recode: New maintainer.
misc/subsurface: Added (Open Source Dive Log Program).
misc/xca: Added (X Certificate and Key Management).
misc/zyGrib: Updated for version 6.2.3 + new maintainer.
multimedia/beets: Updated for version 1.3.4.
multimedia/cantata: Added (MPD client).
multimedia/flashplayer-plugin: Updated for version 11.2.202.346.
multimedia/mkvtoolnix: Fixed download link.
multimedia/qsampler: Update SOURCE URL.
multimedia/x265: Provide alternate extract method.
network/CherryMusic: Updated for version 0.32.0.
network/FireWorks: Updated for version 0.78.
network/QuiteRSS: Updated for version 0.15.3.
network/aria2: Updated for version 1.18.4.
network/arno-iptables-firewall: Update Build Script.
network/awscli: Updated for version 1.3.2.
network/bitcoin: Updated for version 0.9.1.
network/deis: Updated for version 0.6.0.
network/dillo: Update Build Script.
network/flexget: Updated for version 1.2.120.
network/memcached: Updated for version 1.4.17.
network/modsecurity-apache: Updated for version 2.7.7.
network/monkey: Added (web server).
network/mps-youtube: Updated for version 0.01.44.
network/mps: Updated for version 0.20.06.
network/node: Updated for version 0.10.26.
network/offlineimap: Update Build Script.
network/openssh-krb5: Updated for version 6.6p1.
network/otter: Added (Web browser).
network/skype: Updated for version 4.2.0.13.
network/synergy: Updated for version 1.4.17.
network/tor: Updated for version 0.2.4.21.
network/turbolift: Updated for version 2.0.5.
network/twitter: Updated for version 1.14.2.
network/uwsgi: Updated for version 2.0.3.
network/wildfly: Update UID/GID.
network/yoda: Updated for version 0.1.3.
network/zabbix_agentd: Updated for version 2.0.11.
network/zabbix_proxy: Updated for version 2.0.11.
network/zabbix_server: Updated for version 2.0.11.
office/ProjectLibre: Updated for version 1.5.8.
office/docx2txt: Added (docx to text converter).
office/openoffice.org: Updated for version 4.0.1 + new maintainer.
office/qpdfview: Updated for version 0.4.9.
office/texmacs: Link against guile1.8 (to avoid segfaults).
office/wammu: Update DEPS.
perl/perl-Locale-Maketext-Lexicon: Update Source URL.
perl/perl-Term-ReadLine-Gnu: Updated for version 1.23.
perl/perl-Test-Trap: Updated for version 0.2.3.0_1.
perl/perl-gstreamer: Added (GStreamer Perl library).
perl/perl-mojo: Added (Mojolicious Web Framework)
python/hgsubversion: Updated for version 1.6.
python/jmespath: Updated for version 0.3.1.
python/keybinder: Added (Python bindings for keybinder).
python/lxml: Updated for version 3.3.4.
python/pep8: Updated for version 1.5.1.
python/pip: Remove Python3 support.
python/polib: Added (pot, po, and mo manipulation library).
python/psutil: Updated for version 2.1.0.
python/pygobject3: Use Python2.
python/pysetuptools: Updated for version 3.3.
python/python-kerberos: Added (Python module for Kerberos auth).
python/python3: Updated for version 3.4.0.
python/relatorio: Added (templating library).
python/requirements-detector: Updated for version 0.2.1.
python/selenium: Updated for version 2.41.0.
python/sge-pygame: Updated for version 0.8.0.
python/tox: Updated for version 1.7.1.
python/unnethack: Added (fork of NetHack).
python/virtualenv: Remove Python3 support.
system/Attic: Updated for version 0.12.
system/apcupsd: Updated for version 3.14.12.
system/asbt: Updated for version 0.8.6.
system/autoarchive: Updated for version 1.1.0.
system/autocutsel: Updated for version 0.9.1.
system/butterfly: Updated for version 1.4.0.
system/chrpath: Updated for version 0.16.
system/clamtk: Updated for version 5.05.
system/cwtex-q-fonts: Added (modified cwTeX TTF fonts)
system/docker: Updated for version 0.9.1.
system/fs-uae-arcade: Updated for version 2.4.1.
system/fs-uae-launcher: Updated for version 2.4.1.
system/fs-uae: Updated for version 2.4.1.
system/fsarchiver: Updated for version 0.6.19.
system/gammu: Updated for version 1.33.0.
system/glances: Updated for version 1.7.6.
system/hh: Added (BASH History Suggest Box).
system/mlterm: Rebuilt with patch.
system/multicorn: Updated for version 1.0.1.
system/pgbadger: Updated for version 5.0.
system/postgresql: Updated for version 9.3.4.
system/redis: Updated for version 2.8.8.
system/rsyslog: Updated for version 7.6.3.
system/sentimental-skk: Updated for version 0.0.142.
system/st: Updated for version 0.4.1.
system/terminator: Update README.
system/the_silver_searcher: Updated for version 0.21.0.
system/thermal-daemon: Miscellaneous cleanups
system/thermal_daemon: Updated for version 1.2.
system/tmuxp: Updated for version 0.1.8.
system/tpc: Added (AMD Processors Tweaking Utility).
system/trachet: Updated for version 1.0.1.
system/udiskie: Updated for version 0.6.4.
system/uptimed: Added (An uptime daemon).
system/virt-viewer: Updated for version 0.6.0.
system/watch-fs: Updated for version 0.6.0.
system/worker: Updated for version 3.3.3.
system/wterm: Script cleanup.
+--------------------------+
Sat Mar 22 03:47:59 UTC 2014
games/chocolate-doom: Updated for version 2.0.0.
games/ember: Added (3D Client).
games/freedoom: Updated for version 0.8.
games/odamex: Updated for version 0.6.4.
git/gitignore: Update gitignore.
graphics/phototonic: Added (image viewer).
graphics/vuescan: Updated for version 9.4.26.
network/flexget: Updated for version 1.2.118.
ruby/hub: Delete source.
+--------------------------+
Fri Mar 21 18:02:22 UTC 2014
accessibility/svkbd: Added (simple virtual keyboard).
desktop/afterstep: Updated for version 2.2.12.
desktop/anki: Updated for version 2.0.22 + New Maintainer.
development/Naked: Updated for version 0.1.29.
development/brackets: Updated for version 37.
development/cgit: Updated for version 0.10.1.
development/kaaedit: Updated for version 0.38.0.
development/luajit: Updated for version 2.0.3.
development/vstudio: Updated for version 5.5.4.
games/atari++: Updated for version 1.73.
games/cyphesis: Added (WorldForge Server).
games/fgo: Script cleanups.
games/freedroid: Added (RPG game).
games/hatari: Updated for version 1.7.0.
games/hatari_tos_roms: Update HOMEPAGE.
games/higan: Updated for version 094.
games/m64py: Update HOMEPAGE.
games/openclonk: Added (action game).
games/stone_soup: Updated for version 0.13.1.
games/term2048: Added (2048 tile game).
games/tome4: Added (Tales of Maj’Eyal - RPG game).
games/vcmi: Added (HMM3:WoG game engine).
games/xroar: Updated for version 0.31.1.
gis/geoserver-control-flow: Updated for version 2.5.
gis/geoserver-css: Updated for version 2.5.
gis/geoserver-javascript: Added (JS support for GeoServer).
gis/geoserver-oracle: Added (Oracle data store support).
gis/geoserver-pyramid: Updated for version 2.5.
gis/geoserver-python: Updated for version 2.5.
gis/geoserver-wps: Updated for version 2.5.
gis/geoserver: Updated for version 2.5.
gis/udig: Update Dependencies.
graphics/Shellpic: Updated for version 1.2.2.
graphics/digikam: Added the optional dependency QtGStreamer.
graphics/pngcrush: Updated for version 1.7.72.
graphics/triangulizor: Added (triangulize your images).
libraries/Atlas-C++: Added (protocol lib).
libraries/CEGUI0.7: Added (windowing and widget library).
libraries/QtGStreamer: Added (C++ Bindings for GStreamer).
libraries/SlowAES: Added (AES in Pure Scripting)
libraries/eris: Added (client library).
libraries/guppy: Added (Python Programming Environment).
libraries/jai-imageio: Added (JAI I/O Tools).
libraries/jai: Added (native Java Advanced Imaging Library).
libraries/libpst: Updated for version 0.6.63.
libraries/libscrypt: Updated for version 1.18.
libraries/libwfut: Added (updates library).
libraries/lua-md5: Added (Cryptographic Library for Lua).
libraries/luacrypto: Added (lua openssl frontend).
libraries/mercator: Added (terrain library).
libraries/mysql-connector-python: Updated for version 1.1.6.
libraries/poco: Added (C++ class libraries).
libraries/skstream: Added (network library).
libraries/varconf: Added (configuration system).
libraries/wfmath: Added (math library).
misc/xbanish: Updated for version 1.2.
multimedia/guvcview: Updated for version 1.7.3.
multimedia/plexmediaserver: Updated for version 0.9.9.7.429_f80a8d6.
multimedia/pngnq-s9: Added (PNG Image Converter)
multimedia/tivodecode: Added (TiVo File Decoder).
multimedia/youtube-viewer: Updated for version 3.0.9.
network/Electrum: Added (bitcoin client)
network/aiccu: Added (Automatic IPv6 Client Utility).
network/arno-iptables-firewall: Updated for version 2.0.1e.
network/bitcoin: Updated for version 0.9.0.
network/dogecoin: Updated for version 1.6.
network/flexget: Updated for version 1.2.111.
network/lighttpd: Updated for version 1.4.35.
network/mailman: Updated for version 2.1.17 + New Maintainer.
network/mps-youtube: Updated for version 0.01.41.
network/netsniff-ng: Updated for version 0.5.8_rc5.
network/wakeonlan: Added (wake on lan).
network/youtube-dl-server: Updated for version alpha_5.
network/yturl: Updated for version 1.6.
office/mupdf: Fix permisson on headers and man pages.
office/texstudio: Updated for version 2.7.0.
perl/perl-Devel-StackTrace: Updated for version 1.31.
perl/perl-Test-Trap: Updated for version 0.2.3.
python/clint: Updated for version 0.3.5.
python/ecdsa: Updated for version 0.11.
python/invoke: Added (Pythonic task execution).
python/msgpack-python: Added Python3 support.
python/pip: Updated for version 1.5.4.
python/pysetuptools: Updated for version 3.1.
python/python3: Updated for version 3.3.5.
python/pyzmq: Updated for version 14.1.0.
python/six: Updated for version 1.6.1.
python/virtualenv: Updated for version 1.11.4.
ruby/hub: Updated for version 1.12.0.
system/Attic: Updated for version 0.11.
system/PySixel: Updated for version 0.1.9.
system/butterfly: Updated for version 1.3.0.
system/epson-inkjet-printer-escpr: Fix license path.
system/gimp-help: Added (GIMP Help)
system/glances: Updated EMAIL.
system/gnome-commander: Added (NC-like file manager for gnome).
system/haveged: Updated for version 1.9.1.
system/isomd5sum: Updated for version 1.0.12.
system/linkchecker: Updated for version 9.0.
system/linuxconsoletools: Updated for version 1.4.7.
system/lziprecover: Updated for version 1.15.
system/read-edid: Updated for version 3.0.1.
system/redis-py: Added (Redis Python Client).
system/reptyr: Updated for version 0.5_20140222.
system/sandy: Added (minimalist text editor).
system/suckless-tools: Added (utilities from suckless.org).
system/termenu: Fixed script and HOMEPAGE.
system/termsaver: Fixed script.
system/the_silver_searcher: Updated for version 0.20.0.
system/trmaid: Added (maintain transmission).
system/vagrant: Updated for version 1.5.1.
system/webmin: Updated for version 1.680.
+--------------------------+
Wed Mar 12 17:42:21 UTC 2014
academic/R: Updated for version 3.0.3.
academic/cld2: Updated for version 20140304.
accessibility/espeak: Updated for version 1.48.04.
accessibility/pastebinit: Updated for version 1.4.1.
audio/creox4: Added (guitar/etc effects for JACK).
audio/faust: Fixed MD5SUM.
audio/oss: Moved from System category.
audio/sfc: Update HOMEPAGE.
desktop/j4-dmenu-desktop: Updated for version 20140310.
desktop/kdeconnect: Updated for version 0.5.1.
development/Naked: Updated for version 0.1.28.
development/OpenCobolIDE: Added (Simple Cobol IDE).
development/kaaedit: Updated for version 0.37.0.
development/mysql-workbench: Updated for version 6.1.2.
games/bitfighter: Updated for version 019b.
games/fgo: Updated for version 1.5.1.
games/fifengine: Added (Game engine).
games/flare: Update DEPS.
games/unknown-horizons: Added (2D realtime strategy simulation).
games/unvanquished: Added (FPS/RTS Game).
gis/geogit: Updated for version 0.7.0.
gis/geopy: Updated for version 0.98.2.
graphics/Shellpic: Updated for version 1.2.
graphics/converseen: Updated for version 0.6.8.
libraries/QDarkStyle: Added (stylesheet for Qt Apps).
libraries/bcdoc: Updated for version 0.12.2.
libraries/botocore: Updated for version 0.35.0.
libraries/cchardet: Added (Universal character encoding detector).
libraries/cffi: Updated for version 0.8.2.
libraries/fifechan: Added (C++ GUI library).
libraries/libbonoboui: Update DEPS.
libraries/libgnome: silence doinst.sh script.
libraries/liburcu: Updated for version 0.8.4.
libraries/lua-zlib: Fixed source file.
libraries/pyqode.core: Added (Python/Qt Code Editor widget).
libraries/pyqode.widgets: Added (Widgets for pyQode Applications).
libraries/qt5: Updated for version 5.2.1.
libraries/vte3: Updated for version 0.35.2.
misc/par2cmdline: Updated for version 0.6.5.
multimedia/mlt: Fixed with JRE.
multimedia/x265: Updated for version 0.8.
network/Pafy: Updated for version 0.3.41.
network/aldryn-client: Updated for version 0.8.0.
network/arno-iptables-firewall: Added (a front-end for iptables).
network/dogecoin: Added (P2P electronic cash system).
network/livestreamer: Updated for version 1.7.5.
network/mps-youtube: Updated for version 0.01.38.
network/mps: Updated for version 0.20.04.
network/ptokax: Added (Direct Connect Peer-To-Peer sharing network).
network/putty: Updated for version 0.63, new maintainer.
network/sslh: Added (Applicative protocol multiplexer).
network/ssmtp: Added SSL/TLS support.
network/trojita: Added (Qt IMAP e-mail client).
network/twitter: Updated for version 1.13.1.
network/uget: Updated for version 1.10.4.
network/you-get: Noted optional dependency.
office/qpdf: Updated for version 5.1.1, new maintainer.
python/helpy: Updated for version 1.0.1.
python/monty: Updated for version 0.2.2.
python/pycld2: Updated for version 20140206.
python/python-certifi: Added (Python SSL Certificates).
python/rsa: Updated for version 3.1.4.
python/sge-pygame: Added (Game Engine)
system/asbt: Updated for version 0.8.5.
system/epson-inkjet-printer-escpr: Updated for version 1.4.0.
system/glances: Updated for version 1.7.4.
system/gnome-vfs: silence doinst.sh script.
system/pdfgrep: Added (Search Text in PDF Files)
system/roxterm: Updated for version 2.8.3.
+--------------------------+
Fri Mar  7 22:24:00 UTC 2014
academic/bwa: Updated for version 0.7.7.
academic/clustalo: Updated for version 1.2.1.
academic/gchemutils: Updated for version 0.14.7.
academic/genometools: Added (collection of bio-informatics tools).
academic/gwyddion: Updated for version 2.35.
academic/ij-plugins-LOCI: Updated for version 5.0.0.
academic/jalview: Updated for version 2.8.0b1.
academic/seaview: Updated for version 4.4.3.
academic/smath-studio: Updated for version 0.97.5154.
academic/ugene: Updated for version 1.13.1.
audio/clementine: Updated for version 1.2.1.
audio/easytag: Updated for version 2.1.10.
audio/ff8dls: Added (DLS soundfont for use with fmodapi).
audio/jalv: Added (host for LV2 plugins).
audio/lv2-mda-metapiano: Added (LV2 port of mdaPiano/mdaEPiano).
audio/mda-lv2: Added (instrument and effect plugins).
desktop/cnslock: Added (dock application).
desktop/i3minator: Added (Simple workspace manager for i3).
desktop/i3situation: Added (Python i3status).
desktop/mousepad: Added (simple text editor).
desktop/py3status: Added (i3status wrapper).
desktop/python-specbar: Added (Statusbar for spectrwm).
desktop/razorqt: Fixed download link
desktop/spectrwm: Updated for version 2.5.0.
development/Naked: Added (Command line application framework).
development/SQLAlchemy: Updated for version 0.9.3 + New Maintainer.
development/eclipse-cpp: Added (Eclipse IDE for C/C++ Developers).
development/eclipse: Updated for version 4.3.1.
development/fossil: Updated for version 1.28.
development/gaphor: Updated for version 0.17.2.
development/ipython-mathjax: Added (Mathematics Engine).
development/ipython: Updated for version 1.2.1.
development/meld: Updated for version 1.8.4 + New Maintainer
development/monodevelop-database: Updated for version 4.2.2.
development/monodevelop-debugger-gdb: Updated for version 4.2.2.
development/monodevelop: Updated for version 4.2.2.
development/nose: Updated for version 1.3.0.
development/setuptools-git: Updated for version 1.0.
development/vstudio: Added (DB Management).
development/zope.interface: Updated for version 4.1.0.
games/astromenace: Added (3d scroll-shooter game).
games/bitfighter: Added (multi-player combat game)
games/bluemoon: Changed maintainer's email.
games/boswars: Added (Real time strategy game)
games/fillets-ng-data: Added (Fish Fillets NG Data).
games/fillets-ng: Added (Fish Fillets NG).
games/flare-game: Added (Fantasy action RPG).
games/flare: Added (Action Role-Playing Game).
games/freeminer: Added (Minecraft-inspired sandbox game).
games/galaxyv2: Added (2D network game).
games/gtkballs: Script Cleanup + New Maintainer.
games/gzdoom: Updated for version 1.8.2.
games/minetest: Added (Infinite-world block sandbox game).
games/minetest_game: Added (main game for Minetest game engine).
games/pokerth: Updated for version 1.1.1.
games/teeworlds: Added (Online multiplayer game).
games/tty-solitaire: Added (Ncurses-based klondike solitaire game).
games/tuxfootball: Added (2D football game).
games/vbam: Fix Crash.
gis/Fiona: Updated for version 1.1.2.
gis/geopy: Updated for version 0.98.1.
gis/qgis: Updated for version 2.2.0.
graphics/Shellpic: Added (display images in terminal).
graphics/darktable: Updated for version 1.4.1.
graphics/digikam: Remove %README% from .info.
graphics/draftsight: Updated for version 1.2.413.
graphics/pdf2png: Added (Converts pdf files to various image formats)
graphics/wavelet-denoise: Added (GIMP plugin).
graphics/yed: Updated for version 3.12.
libraries/PySoundCard: Updated for version 0.5.0.
libraries/SQLObject: Updated for version 1.5.1.
libraries/ZConfig: Updated for version 3.0.3.
libraries/botocore: Updated for version 0.34.0.
libraries/exiftool: Updated for version 9.53.
libraries/isodate: Updated for version 0.5.0.
libraries/libedit: Updated for version 20140213-3.1.
libraries/libvirt-glib: Updated for version 0.1.8.
libraries/libvirt-python: Updated for version 1.2.2.
libraries/libvirt: Updated for version 1.2.2.
libraries/lvtk: Added (LV2 toolkit C++ wrappers).
libraries/pies2overrides: Updated for version 2.6.1.
libraries/pies: Updated for version 2.6.1.
libraries/rpyc: Added (Transparent and symmetric RPC library).
libraries/tmdb3: Added (TheMovieDB.org APIv3 interface).
libraries/unixODBC: Updated for version 2.3.2.
libraries/vigra: Updated for version 1.10.0.
libraries/wxGTK3: Remove %README% from .info.
libraries/zdaemon: Updated for version 4.0.0.
libraries/zope.component: Updated for version 4.2.0.
libraries/zope.location: Updated for version 4.0.2.
libraries/zope.proxy: Updated for version 4.1.3.
libraries/zope.schema: Updated for version 4.4.0.
libraries/zope.security: Updated for version 4.0.0.
misc/bodr: Updated for version 10.
misc/gourmet: Added (A Recipe organizer for Linux).
multimedia/Mopidy: Added (Music server).
multimedia/beets: Updated for version 1.3.3.
multimedia/gpodder: Updated for version 3.6.0.
network/FireWorks: Updated for version 0.75.
network/Flootty: Updated for version 2.0.0.
network/Pafy: Updated for version 0.3.37.
network/QuiteRSS: Updated for version 0.15.0.
network/aldryn-client: Updated for version 0.7.10.
network/awscli: Updated for version 1.3.0.
network/awstats: Updated for version 7.3.
network/dropbox: Updated for version 2.6.15.
network/flexget: Updated for version 1.2.102 + New Maintainer.
network/gophernicus: Updated for version 1.5.
network/livestreamer: Updated for version 1.7.4.
network/mps-youtube: Updated for version 0.01.33.
network/mps: Updated for version 0.20.03.
network/mumble: Updated for version 1.2.5.
network/murmur: Updated for version 1.2.5.
network/phpmyadmin: Updated for version 4.1.8.
network/qupzilla: Updated for version 1.6.3.
network/retroshare: Fix desktop file handling.
network/strongswan: Updated for version 5.1.2.
network/synergy: Updated for version 1.4.16.
network/weetwit: Added (Twitter-suite for Weechat).
network/wildfly: Added (Application Runtime).
network/you-get: Updated for version 0.3.28.1.
network/youtube-dl-server: Added (youtube-dl REST API server).
network/youtube-dl: Updated for version 2014.02.25.
office/calibre: Updated for version 1.26.0.
office/libreoffice-helppack: Updated for version 4.2.1.
office/libreoffice-langpack: Updated for version 4.2.1.
office/libreoffice: Updated for version 4.2.1.
office/mupdf: Fixed CVE-2014-2013.
perl/perl-CPANPLUS: Updated for version 0.9148.
python/Paver: Added (Python-based project scripting).
python/cssutils: Updated for version 1.0.
python/frosted: Updated for version 1.4.0.
python/helpy: Added (built-in help documentation).
python/i3-py: Added (tools for i3 users and developers).
python/jmeshpath: Updated for version 0.3.0.
python/jsonschema: Added (Implementation of JSON Schema).
python/lxml: Updated for version 3.3.2.
python/monty: Updated for version 0.1.5.
python/python-elib.intl: Added (i18n services).
python/python-tvrage: Added (client interface for tvrage.com).
python/python-twitter: Fix dependency.
python/s3cmd: Updated for version 1.5.0_beta1.
python/subvertpy: Updated for version 0.9.1.
system/asbt: Updated for version 0.8.4.
system/butterfly: Added (A web terminal based).
system/clamtk: Updated for version 5.04.
system/dar: Updated for version 2.4.12.
system/fr: Updated for version 1.20.
system/fs-uae-arcade: Added (FS-UAE interface).
system/fs-uae-launcher: Added (FS-UAE GUI).
system/fs-uae: Updated for version 2.4.0.
system/jenkins: Updated for version 1.552.
system/mlterm: Updated for version 3.3.3.
system/postgresql: Updated for version 9.3.3.
system/termsaver: Updated for version 0.3.
system/tmuxp: Updated for version 0.1.7.
system/trachet: Updated for version 1.0.0.
+--------------------------+
Fri Feb 21 20:40:16 UTC 2014
audio/alsa-tools: Validate .desktop file
audio/connie: Added (organ synth for JACK).
audio/sunvox: Updated for version 1.7.4b.
desktop/herbstluftwm: Updated for version 0.5.3.
desktop/kdeconnect: Updated for version 0.5.
desktop/ptwit: Added (simple twitter client).
desktop/superkey-launch: Updated for version 0.32.
development/coccinelle: Added (matching and transformation engine).
development/menhir: Added (OCaml parser generator).
games/gnonograms: Added (Nonogram puzzle generator and solver).
games/zork: Fix .desktop files so they validate.
graphics/yagf: Updated for version 0.9.3.
libraries/eigen3: Fixup archive extraction in some cases
libraries/libhtp: Added (HTTP parser).
multimedia/flashplayer-plugin: Updated for version 11.2.202.341.
network/CherryMusic: Updated for version 0.31.2.
network/Pafy: Updated for version 0.3.36.
network/suricata: Added (Network Security Monitoring).
network/udpxy: Added (UDP-to-HTTP traffic relaying).
network/you-get: Updated for version 0.3.28.
python/piprot: Updated for version 0.5.0.
python/python-oauthlib: Added (OAuth Implementation).
python/python-twitter: Updated for version 1.3.1 + New Maintainer.
python/requests-oauthlib: Added (OAuthlib authentication).
python/selenium: Updated for version 2.40.0.
python/xtermcolor: Added (Python module for colorizing output).
system/gparted: Updated for version 0.18.0.
system/wterm: Added prefix.
+--------------------------+
Tue Feb 18 20:59:24 UTC 2014
academic/perlprimer: Fixed syntax error.
audio/alsaequal: Updated for new caps Eq name.
audio/ngjackspa: Added (JACK host for LADSPA plugins).
desktop/qlandkartegt: Updated for version 1.7.6.
development/Bottleneck: Added (Fast NumPy array functions).
development/pandas: Added (Powerful data structures).
development/tstoolbox: Added (manipulate time series files).
games/xmoto: Update REQUIRES.
gis/geopy: Updated for version 0.98.
graphics/CreateCloudMap: Added (cloud map for xplanet).
graphics/HotShots: Updated for version 2.1.0.
libraries/ConfigParser: Added (backported configparser).
libraries/DateTime: Added (DateTime data type).
libraries/Kivy: Added (rapid development library).
libraries/VTK: Added (The Visualization Toolkit).
libraries/mxml: Updated for version 2.8.
libraries/ode: Updated for version 0.13.
libraries/ordereddict: Added (substitute for Py2.7's collections).
libraries/pykdtree: Added (Fast kd-tree implementation).
libraries/vtk: Removed (replaced by VTK).
multimedia/lives: Added (Video Editing System).
multimedia/x265: Added (H265/HEVC video encoder)
network/CherryMusic: Updated for version 0.3.1.
network/Pafy: Updated for version 0.3.35.
network/RYMTracks: Updated for version 0.1.4.
network/aldryn-client: Added (client for Aldryn Cloud).
network/hydra: Updated for version 7.6.
network/mps-youtube: Added (Terminal based YouTube jukebox).
network/mps: Updated for version 0.20.02.
network/speedtest-cli: Added (Testing internet bandwidth).
network/spice-gtk: Updated for version 0.23.
network/you-get: Updated for version 0.3.27.
python/Baker: Added (Access to Python functions).
python/argcomplete: Updated for version 0.7.0.
python/msgpack-python: Updated for version 0.4.1.
python/pipstat: Updated for version 0.2.1.
python/pySmartDL: Updated for version 1.2.2.
python/pygrametl: Added (ETL programming in Python).
python/pyresample: Added (geospatial resampling).
python/python-keyczar: Added (cryptographic toolkit).
system/asbt: Updated for version 0.8.3.
system/wterm: Added (VT102 Terminal Emulator).
system/xfsudo: Upgraded for version 0.4.
+--------------------------+
Sun Feb 16 07:49:38 UTC 2014
audio/caps: Updated for version 0.9.20.
games/dungeon: Fixed segfaults.
games/hexalate: Updated for version 1.0.3.
games/oblige: Fix permission and install boss fight data.
games/tintin: Updated for version 2.01.0.
gis/OWSLib: Updated for version 0.8.6.
gis/rasterio: Updated for version 0.6.
graphics/HotShots: Updated for version 2.0.1.
graphics/advancecomp: Added (collection of recompression utilities).
libraries/PrettyTable: Added (library to displaying tabular data).
libraries/bcdoc: Added (ReST document generation tools).
libraries/botocore: Added (Low-level, data-driven core of boto 3).
libraries/chromaprint: Updated for version 1.1.
libraries/collada-dom: Added (C++ API to the COLLADA XML schema).
libraries/enum34: Updated for version 0.9.23.
libraries/jansson: Added (C library).
libraries/libewf: Updated for version 20140201.
libraries/libgksu: Fixed helper path on x86_64 + Compress manual.
libraries/miniupnpc: Updated for version 1.9.
libraries/opencv: Updated for version 2.4.8.
libraries/xview: Added (X11 toolkit for OPEN LOOK applications).
network/FireWorks: Updated for version 0.71.
network/Pafy: Updated for version 0.3.34.
network/awscli: Added (Universal Command Line Environment for AWS).
network/deis: Added (Command-line Client for Deis).
network/filezilla: Updated for version 3.7.4.1.
network/livestreamer: Updated for version 1.7.3.
network/mps: Added (Search, Stream and Download MP3).
network/pms-youtube: Updated for version 0.01.13.
network/pubnub-curses: Added (PubNub Curses Terminal Client).
network/ssvnc: Fixed script.
network/turbolift: Added (OpenStack Swift Uploader).
network/yoda: Added (Multiple repositories management).
office/gnucash: Remove Beta label on README.
python/PyColorizer: Added (Add color in your shell).
python/jmespath: Added (JSON Matching Expressions).
python/monty: Added (missing complement to Python).
python/pipstat: Added (PyPI packages Counter).
python/ply: Added (Python Lex & Yacc).
python/python-swiftclient: Added (OpenStack API Library).
system/asbt: Updated for version 0.8.2.
system/ded: Added (directory editor).
system/gdm: sysconfdir is now /etc/gdm/ instead of /etc/X11/gdm/
system/hime: Added libchewing in REQUIRES.
system/sleuthkit: Updated for version 4.1.3.
system/trachet: Updated for version 0.3.19.
system/virt-manager: Updated for version 1.0.0.
system/watch-fs: Added (monitor files changes).
system/xfsudo: Updated for version 0.3.
+--------------------------+
Tue Feb 11 18:16:35 UTC 2014
audio/lv2file: Added (apply lv2 plugins to audio files).
audio/rev-plugins: Added (LADSPA reverb plugin).
desktop/dwm: Added xinitrc.dwm.
development/curlpp: Added (C++ wrapper for libcURL).
games/connectagram: Updated for version 1.1.2.
graphics/converseen: Added (image converter and resizer).
graphics/pygraphviz: Added (Python interface to Graphviz).
graphics/qiv: Updated for version 2.3.1.
libraries/PySoundCard: Updated for version 0.4.4.
libraries/Pykka: Added (A Python implementation of the actor model).
libraries/libearth: Updated for version 0.1.2.
libraries/musicbrainzngs: Updated for version 0.5.
libraries/pies2overrides: Updated for version 2.6.0.
libraries/pies: Updated for version 2.6.0.
libraries/tff: Updated for version 0.2.9.
libraries/ws4py: Added (WebSocket library for Python).
multimedia/OpenLP: Updated for version 2.0.4.
multimedia/Poor-Mans-Spotify: Updated for version 0.18.40.
multimedia/gpodder: Updated for version 3.5.2.
network/Pafy: Updated for version 0.3.33.
network/asciinema: Updated for version 0.9.8.
network/filezilla: Updated for version 3.7.4.
network/gmapcatcher: Updated for version 0.8.0.4.
network/pms-youtube: Updated for version 0.01.12.
network/tornado: Updated for version 3.2.
network/twitter: Updated for version 1.12.1.
network/vcspull: Updated for version 0.0.8.4.
network/weechat: Updated for version 0.4.3.
network/you-get: Added (video downloader).
perl/perl-Capture-Tiny: Updated for version 0.24.
perl/perl-Dist-CheckConflicts: Added dep perl-Module-Runtime.
perl/perl-Import-Into: Added (import packages into other packages).
perl/perl-Module-Build-Tiny: Updated for version 0.034.
perl/perl-Moo: Updated for version 1.004002.
perl/perl-Test-Harness: Avoid overlap with Slackware's perl package.
python/frosted: Updated for version 1.3.3.
python/httplib2: Added patches for ssl.
python/piprot: Added (Command line utility to show requirements).
python/pySmartDL: Updated for version 1.2.0.
system/Attic: Fixed VERSION.
system/asbt: Added (Managing SBo packages in local repository).
system/barman: Updated for version 1.3.0.
system/docker: Reorder build process
system/hime: Added (input method).
system/makepasswd: Updated for version 0.5.3.
system/rsyslog: Updated for version 7.4.9.
system/sentimental-skk: Updated for version 0.0.141.
system/termsaver: Updated VERSION in .info.
system/thermal_daemon: Updated for version 1.1.
system/tmuxp: Updated for version 0.1.6.
+--------------------------+
Sat Feb  8 17:12:07 UTC 2014
academic/octave: Remove Qt5 detection.
academic/sage: Updated for version 6.1.
academic/suiteparse: Updated README.
audio/jack2: Added (Jack Sound Server).
desktop/dwm: Clarify use of custom patches.
desktop/superkey-launch: Updated for version 0.31.
desktop/wminfo: Updated for version 4.1.2.
development/apache-jmeter: Updated for version 2.11.
development/brackets: Updated for version 36.
development/kaaedit: Updated for version 0.36.0.
development/mysql-workbench: Updated for version 6.1.1.
development/racket: Updated for version 5.93.
development/rstudio-desktop: Added (R Statistical IDE).
gis/Fiona: Updated for version 1.1.1.
gis/OWSLib: Updated for version 0.8.4.
gis/foxtrotgps: Moved from Misc category.
gis/gdal: Moved from Libraries category.
gis/geopy: Updated for version 0.97.1.
gis/geoserver-python: Added (GeoServer Python scripting support).
gis/gpsd: Updated for version 3.10 + Moved from System category.
gis/grass: Moved from Academic category.
gis/libgeotiff: Moved from Libraries category.
gis/viking: Moved from Misc category.
graphics/digikam: Added liblqr and lensfun to REQUIRES.
graphics/enblend-enfuse: Updated for version 4.1.2.
graphics/hugin: Updated for version 2013.0.0.
graphics/luminance-hdr: Updated for version 2.4.0.
libraries/CCfits: Added (C++ wrappers for the cfitsio library)
libraries/GitPython: Added (Python Git Library).
libraries/LibRaw: Updated for version 0.16.0.
libraries/async: Added (Async Framework).
libraries/backports-ssl-match-hostname: Added (Backported SSL).
libraries/boolstuff: Added (boolean expression tree toolkit).
libraries/dropbox-python: Added (Official Dropbox REST API Client).
libraries/enum34: Updated for version 0.9.21.
libraries/evernote-python: Added (Evernote SDK for Python).
libraries/facebook-python: Added (Client library for Facebook SDK).
libraries/gallerize: Added (Web image gallery generator).
libraries/gitdb: Added (Git Object Database).
libraries/hurry-filesize: Added (Python library).
libraries/isodate: Added (date/time/duration parser and formater).
libraries/leptonica: Updated for version 1.70.
libraries/liblogging: Added (an easy to use logging library).
libraries/libnfs: Updated for version 1.9.2.
libraries/librelp: Updated for version 1.2.2.
libraries/libwebp: Updated for version 0.4.0.
libraries/netcdf: Updated for version 4.3.1.
libraries/pyftpdlib: Added (High-level asynchronous FTP library).
libraries/pysendfile: Added (Interface to sendfile syscall).
libraries/python-gnupg: Added (A wrapper for the GnuPG).
libraries/python-xlrd: Added (extract data from MS Excel).
libraries/rarfile: Added (RAR archive reader for Python).
libraries/smmap: Added (Git implementation of memory map manager).
libraries/tbb: Updated for version 4.2u2.
libraries/uptime: Added (Cross-platform uptime library).
multimedia/aegisub: Updated for version 3.1.2.
multimedia/flashplayer-plugin: Updated for version 11.2.202.336.
network/CherryMusic: Added (A music streaming server).
network/Pafy: Updated for version 0.3.30.
network/RYMTracks: Added (Tracklist Creator for RYM Service).
network/aria2: Updated for version 1.18.3, new maintainer.
network/cicb: Added (ICB client).
network/pms-youtube: Added (Terminal based YouTube jukebox).
network/twitter: Added(An API and command-line toolset for Twitter).
network/vcspull: Added (mass-update vcs).
office/hunspell-en: Added (English hunspell dictionaries).
office/hunspell-es: Added (Spanish hunspell dictionaries).
office/pyspread: Added (Python spreadsheet).
python/frosted: Updated for version 1.3.2.
python/kaptan: Added (Configuration Manager).
python/lxml: Updated for version 3.3.0.
python/pipdeptree: Added (show dependency tree of packages).
python/pytest: Updated for version 2.5.2.
python/requirements-detector: Added (find requirements of Python).
python/selenium: Added (Python bindings for Selenium).
python/stevedore: Added pysetuptools to REQUIRES.
ruby/hub: Added (github helper)
system/PySixel: Updated for version 0.1.7.
system/clamav: Updated for version 0.98.1.
system/docker: Added (manager for applications in linux containers)
system/graphterm: Added (A Graphical Terminal Interface).
system/quotatool: Added (filesystem quotas from command line).
system/sentimental-skk: Updated for version 0.0.139.
system/thinkfan: Added (fan control program).
system/tmuxp: Added (Manage tmux sessions thru JSON, YAML configs).
system/ttop: Added (CUI graphical system monitor).
system/udiskie: Added (Removable disk automounter for udisks).
+--------------------------+
Sun Feb  2 08:23:34 UTC 2014
desktop/rodent-icon-theme: Removed (No SBo Maintainer).
network/rt5370: Removed (No SBo Maintainer).
network/smb4k: Removed (No SBo Maintainer).
system/rodent: Removed (No SBo Maintainer).
+--------------------------+
Sun Feb  2 08:10:38 UTC 2014
academic/cld2: Updated for version 20140131.
audio/minimodem: Added (software audio FSK modem).
desktop/cheser-icon-theme: Removed (No SBo Maintainer).
desktop/gtkman: Removed (No SBo Maintainer).
desktop/jwm: Updated for version 2.2.0.
development/KKEdit: Removed (No SBo Maintainer).
development/bluefish: Updated for version 2.2.5.
development/scite: Updated for version 3.3.9.
games/Domination: Removed (No SBo Maintainer).
games/qjoypad: Removed (No SBo Maintainer).
gis/Fiona: Moved from Academic category.
gis/OWSLib: Moved from Academic category.
gis/SFCGAL: Moved from Libraries category.
gis/Shapely: Moved from Academic category.
gis/geogit: Moved from Academic category.
gis/geopy: Moved from Python category.
gis/geos: Moved from Libraries category.
gis/geoserver-control-flow: Moved from Academic category.
gis/geoserver-css: Moved from Academic category.
gis/geoserver-pyramid: Moved from Academic category.
gis/geoserver-wps: Moved from Academic category.
gis/geoserver: Moved from Academic category.
gis/horao: Moved from Academic category.
gis/laszip: Moved from Libraries category.
gis/mapnik: Moved from Academic category.
gis/osm2pgrouting: Moved from Academic category.
gis/osm2pgsql: Moved from Academic category.
gis/pdal: Moved from Academic category.
gis/pgrouting: Moved from Academic category.
gis/pointcloud: Moved from Academic category.
gis/postgis: Moved from System category.
gis/proj: Moved from System category.
gis/pyproj: Moved from Academic category.
gis/qgis: Moved from Academic category.
gis/rasterio: Moved from Academic category.
gis/udig: Moved from Academic category.
gis/xplanet: Moved from Desktop category.
graphics/dcraw: Updated for version 0.9.20.
graphics/digikam: Re-Added notes about broken lensfun deps.
graphics/fritzing: Updated for version 0.8.7b.
libraries/dbh: Removed (No SBo Maintainer).
libraries/enum34: Updated for version 0.9.20.
libraries/ffms2: Added (a cross-platform wrapper library)
libraries/tff: Updated for version 0.2.8.
libraries/tubo: Removed (No SBo Maintainer).
libraries/wxGTK3: Fixed the broken wx-config symlink
multimedia/ProjectX: Removed (No SBo Maintainer).
multimedia/aegisub: Added (General-purpose subtitle editor)
multimedia/mtvcgui: Removed (No SBo Maintainer).
network/FireWorks: Updated for version 0.66.
network/Pafy: Added (Python API for YouTube content).
network/QuiteRSS: Updated for version 0.14.3.
network/retroshare: Updated for version 0.5.5c.
office/gnucash: Updated for version 2.6.1.
office/sigil: Updated for version 0.7.4.
perl/perl-Archive-Extract: Updated for version 0.72.
perl/perl-Module-Pluggable: Updated for version 5.1.
python/pycld2: Updated for version 20140131.
system/the_silver_searcher: Updated for version 0.19.2.
system/trachet: Updated for version 0.3.17.
system/unetbootin: Updated for version 585.
+--------------------------+
Sat Feb  1 06:42:26 UTC 2014
academic/amd: Renamed and moved from libraries
academic/arpack-ng: Added (library for solving eigenvalue problems)
academic/btf: Renamed and moved from libraries.
academic/camd: Renamed and moved from libraries.
academic/ccolamd: Renamed and moved from libraries.
academic/cholmod: Renamed and moved from libraries.
academic/colamd: Renamed and moved from libraries.
academic/csparse: Renamed and moved from libraries.
academic/cxsparse: Renamed and moved from libraries.
academic/klu: Renamed and moved from libraries.
academic/ldl: Renamed and moved from libraries.
academic/octave: Updated for version 3.8.0.
academic/rbio: Renamed and moved from libraries.
academic/spqr: Renamed and moved from libraries.
academic/suitesparseconfig: Renamed and moved from libraries.
academic/umfpack: Renamed and moved from libraries.
audio/easymp3gain: Added patches to fix compile against new FPC.
desktop/cwp: Updated for version 1.10.0.
desktop/icewm: Included some patches from Fedora and Gentoo
desktop/xfce4-battery-plugin: Added (battery monitor panel plugin).
desktop/xfce4-embed-plugin: Added (Embed arbitrary application).
desktop/xfce4-eyes-plugin: Added (Eyes that spy on you).
desktop/xfce4-fsguard-plugin: Added (Checks free space).
development/Editra: Updated for version 0.7.20.
development/golang-googlecode-gotools: Added (golang extra tools).
development/google-go-lang: Unset BASH_ENV during build
development/google-go-lang: Updated for version 1.2.
development/robomongo: Updated for version 0.8.4.
games/yae: Added (Yet another Apple Emulator).
graphics/fotoxx: Updated for version 14.01.1.
graphics/pyformex: Added (program to create 3D geometry).
libraries/AMD: Updated for version 2.3.1.
libraries/BTF: Updated for version 1.2.0.
libraries/CAMD: Updated for version 2.3.1.
libraries/CCOLAMD: Updated for version 2.8.0.
libraries/CHOLMOD: Updated for version 2.1.2.
libraries/COLAMD: Updated for version 2.8.0.
libraries/CSparse: Updated for version 3.1.2.
libraries/CXSparse: Upgraded for version 3.1.2.
libraries/KLU: Updated for version 1.2.1.
libraries/LDL: Updated for version 2.1.0.
libraries/PyYAML: Updated for version 3.10.
libraries/RBio: Updated for version 2.1.1.
libraries/SPQR: Updated for version 1.3.1.
libraries/SuiteSparse_config: Updated for version 4.2.1.
libraries/UFconfig: Removed (renamed to SuiteSparse_config)
libraries/UMFPACK: Updated for version 5.6.2.
libraries/pgtcl-ng: Updated for version 2.1.0.
multimedia/Poor-Mans-Spotify: Updated for version 0.18.38.
network/ClusterSSH: Updated for version 4.02_03.
network/Flootty: Added (Floobits collaborative terminal).
network/asciinema: Added (Command line recorder for asciinema.org).
network/httpie: Added (command line HTTP client).
network/weathercli: Updated for version 2.3.1.
office/abiword: Fix a segfault when trying save to pdf
office/abiword: Fixed icon installation
office/calibre: Updated for version 1.22.0.
office/libreoffice-helppack: Updated for version 4.2.0.
office/libreoffice-langpack: Updated for version 4.2.0.
office/libreoffice: Updated for version 4.2.0.
python/argcomplete: Updated for version 0.6.9.
python/clint: Updated for version 0.3.4.
python/msgpack-python: Added (MessagePack for Python)
python/pip: Updated for version 1.5.2.
python/py: Updated for version 1.4.20.
python/pysetuptools: Updated for version 2.1.
python/tox: Updated for version 1.7.0.
python/virtualenv: Updated for version 1.11.2.
system/Attic: Added (Deduplicated backups)
system/em: Updated for version 0.3.
system/fr: Updated for version 1.19.
system/gdm: Update glibc crypt patch to fix segfaults
system/homerun: Added (KDE launcher widgets)
system/mongodb: Updated for version 2.4.9.
system/rename: Fixed homepage.
system/repeat: Added (Repeat command N times every S seconds).
system/termenu: Added (Interactive in-line menus).
system/xosd: Note that gdk-pixbuf causes build failure
+--------------------------+
Thu Jan 30 05:25:12 UTC 2014
academic/OWSLib: Updated for version 0.8.3.
academic/amplifx: Added (Manage, test and design your primers).
academic/freechartgeany: Updated for version 1.1.5.
academic/gchemutils: Updated for version 0.14.4.
academic/geoserver-control-flow: Updated for version 2.4.4.
academic/geoserver-css: Updated for version 2.4.4.
academic/geoserver-pyramid: Updated for version 2.4.4.
academic/geoserver-wps: Updated for version 2.4.4.
academic/geoserver: Updated for version 2.4.4.
academic/ij-plugins-LOCI: Updated for version 4.4.10.
academic/ncbi-blast-plus: Updated for version 2.2.29.
academic/pspp: Added (Free open source replacement of SPSS).
academic/rasterio: Updated for version 0.5.
academic/staden: Updated for version 2.0.0b10.
academic/suitesparse: Updated for version 4.2.1.
audio/alsacap: Added (ALSA device capability lister).
audio/azr3: Added (tonewheel organ simulator for jack).
audio/gmpc-plugins: Updated for version 11.8.16 + New Maintainer.
audio/gmpc: Updated for version 11.8.16 + New Maintainer.
audio/gtklick: Added (GUI metronome for JACK).
audio/jaaa: Added (spectrum analyser for JACK).
audio/japa: Added (audio spectrum analyser for JACK).
audio/jkmeter: Added (audio level meter for JACK).
audio/jnoise: Added (white and pink noise generator for JACK).
audio/klick: Added (metronome for jack-audio-connection-kit).
audio/midillo: Added (MIDI file tools).
audio/mktoc: Update dependency for python-chardet.
audio/puddletag: Updated for version 1.0.2.
audio/rakarrack: Fix distortion on x86_64.
audio/speex: Changed maintainer.
audio/xmms-jack: Added (xmms output plugin for jack).
audio/zita-ajbridge: Added (ALSA <=> JACK bridge).
audio/zita-dpl1: Added (limiter for jack-audio-connection-kit).
desktop/avant-window-navigator: Fixed unused variables.
desktop/awn-extras: Fixed unused variables.
desktop/compton: Added (X compositor).
desktop/dwm: Restore patches directory.
desktop/i3: Updated for version 4.7.2.
desktop/jwm: Fixed download link.
desktop/lxappearance: Updated for version 0.5.5.
desktop/matrixgl: Added (The Matrix Screensaver).
desktop/notion: Updated for version 3_2014010900.
desktop/plasma-widget-menubar: Added (Plasma Global Menu Support).
desktop/pyful: Added (Python file management utility).
desktop/redshift: Updated for version 1.8.
desktop/superkey-launch: Added (app launcher).
desktop/wmCalClock: Fixed download link.
desktop/wmMoonClock: Fixed download link.
desktop/wmclockmon: Added (windowmaker clock dockapp).
desktop/xtrlock: Added (minimal X display lock).
development/Editra: Added (A Developer's Text Editor).
development/PythonToolkit: Added (interactive environment).
development/SDL2: Updated for version 2.0.1.
development/SDL2_image: Added PNG Support.
development/Sphinx: Updated for version 1.2.1.
development/avr-gcc: New Maintainer.
development/brackets: Added (source code editor for web designers).
development/codeblocks: Fixed unused variables.
development/cppcms: Updated for version 1.0.4.
development/cppdb: Added (stand alone connectivity library).
development/dhex: Added (curses-based hex editor).
development/diakonos: Added (advanced console text editor).
development/golang-googlecode-gonet: Added (golang networking libs).
development/jdk: Updated for version 7u51.
development/kaaedit: Added (console text editor).
development/leo: Added (Leonine Editor with Outlines).
development/pasdoc: Updated for version 0.13.0.
development/pylint: Updated for version 1.1.0.
development/wxHexEditor: Updated for version 0.22 + New Maintainer.
games/angband: Updated for version 3.5.0.
games/bastet: Added (horribly difficult Tetris clone).
games/higan: Fixed symlink, cleanups, and download link.
games/ltris: Updated for version 1.0.19.
games/pokerth: Fix looking for libircclient's headers.
games/quakeforge: Fix building on i486 ARCH.
games/sms_sdl: Added (A Sega Master System and Game Gear Emulator).
games/xye: Updated for version 0.12.2.
games/yamagi-quake2: Updated for version 5.21.
graphics/darktable: Updated for version 1.4.
graphics/fim: Added (customizable and scriptable image viewer).
graphics/gifsicle: Added (CL tool for manipulating GIF images).
graphics/gnofract4d: Added (A program to create fractal images).
graphics/librecad: Updated for version 2.0.2.
graphics/oyranos: Updated for version 0.9.4 + New Maintainer.
graphics/pygifme: Added (simple command line tool to generate GIFs).
graphics/rawtherapee: Added (High Image Quality).
graphics/whyteboard: Fix desktop shortcut + Update README.
haskell/haskell-Crypto: Added (Collects cryptographic functions).
haskell/haskell-attoparsec: Added (Fast combinator parsing).
haskell/haskell-curl: Added (Haskell binding to libcurl).
haskell/haskell-hashable: Added (Hashable class).
haskell/haskell-hslogger: Added (Versatile logging framework).
haskell/haskell-scientific: Added (precision floating-point).
libraries/BeautifulSoup4: Added (Python HTML/XML parser).
libraries/IMAPClient: Added (IMAP client library).
libraries/Jinja2: Updated for version 2.7.2.
libraries/PySoundCard: Added (An audio library).
libraries/appmenu-qt: Added (Global Menu support for Qt).
libraries/audioread: Added (multi-library audio decoding).
libraries/avr-libc: New Maintainer.
libraries/cffi: Added (Foreign Function Interface for Python).
libraries/curses_ex: Added (additional curses functions).
libraries/discogs-client: Added (official client for Discogs).
libraries/enum34: Added (backported Python 3.4 Enum).
libraries/exiftool: Updated for version 9.46.
libraries/futures: Added (Java-style package for Python).
libraries/gst1-libav: Updated for version 1.2.2.
libraries/gst1-plugins-bad: Updated for version 1.2.2.
libraries/gst1-plugins-base: Updated for version 1.2.2.
libraries/gst1-plugins-good: Updated for version 1.2.2.
libraries/gst1-plugins-ugly: Updated for version 1.2.2.
libraries/gstreamer1: Updated for version 1.2.2.
libraries/imageloader: Added (An image loader library).
libraries/io_lib: Updated for version 1.13.3.
libraries/ipaddress: Added (IPv4/IPv6 manipulation library).
libraries/kaadbg: Added (Remote debugger runner for kaa).
libraries/libearth: Added (shared library for Earth Reader apps).
libraries/libmpd: Updated for version 11.8.17 + New Maintainer.
libraries/libssh2: Fixed HOMEPAGE link.
libraries/libvirt-python: Updated for version 1.2.1.
libraries/libvirt: Updated for version 1.2.1.
libraries/logilab-common: Updated for version 0.60.1.
libraries/luasocket: Fixed download link.
libraries/lunatic-python: Added (bridge between Python and Lua).
libraries/munkres: Added (Munkres algorithm in python).
libraries/mysql-connector-c++: Fixed library path on x86_64.
libraries/netcdf: Update MD5SUM.
libraries/pies2overrides: Added (Override classes with pies).
libraries/pies: Added (Simple way to write Py2 and Py3 program).
libraries/pyacoustid: Added (acoustic fingerprinting).
libraries/pycparser: Added (C parser in Python).
libraries/pyechonest: Added (Python interf. for Echo Nest APIs).
libraries/pyjf3: Added (Japanese text functions for Python 3).
libraries/pylast: Added (Python interface to Last.fm).
libraries/pymediainfo: Added (wrapper for mediainfo command line).
libraries/python-librtmp: Added (Python bindings for librtmp).
libraries/rtorrent-python: Added (A simple rTorrent interface).
libraries/setproctitle: Added (library to customize process title).
libraries/tDOM: License Update + Build New Extensions.
libraries/tcl-inotify: Added (Tcl inotify extension).
libraries/tff: Added (Terminal Filter Framework).
libraries/toro: Added (Synchronization primitives).
libraries/vtk: Added Qt Support + Fix x86_64 cmake.
libraries/web.py: Added (Web Framework).
libraries/wjelement: Updated for version 1.0.1.
libraries/xforms: Updated for version 1.2.3.
libraries/zend-opcache: Updated for version 7.0.3.
misc/dvtm: Updated for version 0.10.
misc/klibc: Added (small C library).
misc/po4a: Added (PO documentation format converter).
misc/qtkeychain: Added (Qt API to store passwords and secret data).
misc/rsibreak: Updated for version 0.11_git5e9d393.
misc/viking: Updated for version 1.5.
multimedia/OpenLP: Added (Open Source Worship Presentation).
multimedia/Poor-Mans-Spotify: Added (Search, Stream MP3).
multimedia/beets: Added (music tagger and library organizer).
multimedia/get_iplayer: Updated for version 2.85.
multimedia/google-earth: Fixed unused variables.
multimedia/mp3fm: Added icon + desktop shortcut.
multimedia/xvst: Updated for version 2.5.1.
network/DarTui: Added (rTorrent web interface).
network/EarthReader-Web: Added (Earth Reader for Web).
network/FireWorks: Added (FireWorks workflow software).
network/Free-Cinema: Added (Search, Download movies via Torrent).
network/ajaxplorer-sync: Removed (project renamed to pydio-sync).
network/canto: Update dependency for python-chardet.
network/chrony: Updated for version 1.29.
network/deluge: Update dependency for python-chardet.
network/elinks: Updated for version git20131231 + New Maintainer.
network/gns3: Updated for version 0.8.6 + New Maintainer.
network/ike: Added (Shrew Soft VPN Client for Linux and BSD).
network/livestreamer: Added (Stream Extrator).
network/netsurf: Added patch for scroll.
network/newsbeuter: Updated for version 2.8.
network/nxclient: Fixed download links.
network/offlineimap: Fixed unused variables.
network/phpmyadmin: Updated for version 4.1.4.
network/pydio-sync: Added (desktop sync client for Pydio).
network/pysub-dl: Added (Download movie subtitles automatically).
network/qupzilla: Updated for version 1.6.0.
network/ssvnc: Added (Adds encryption/security to VNC connections).
network/synergy: Updated for version 1.4.15.
network/tightvnc: Added (VNC viewing application).
network/torsocks: Fix lib path in torsocks.
network/urlwatch: Added (Watch web pages and URLs for changes).
network/vacuum-im: Updated for version 1.2.4.
network/wavemon: Updated for version 0.7.6 + New Maintainer.
network/weathercli: Added (A command line weather tool).
network/weighmail: Added (Labels your Gmail messages).
office/calibre: Updated for version 1.20.0.
office/gnucash: Updated for version 2.6.0.
office/marave: Added (A text editor).
office/muttprint: Added (Pretty printing of your mails).
office/qpdfview: Updated for version 0.4.8.
perl/perl-CPANPLUS-Dist-Build: Updated for version 0.76.
perl/perl-Encode-EUCJPASCII: Added (An eucJP-open mapping).
perl/perl-Encode-HanExtra: Added (Extra sets of Chinese encodings).
perl/perl-Encode-ISO2022: Added (JISO/IEC 2022 character encoding).
perl/perl-Encode-JISX0213: Added (JIS X 02I3 encoding).
perl/perl-IPC-DirQueue: Added (many-to-many queueing system).
perl/perl-Log-Log4perl: Added (Log4j implementation for Perl).
perl/perl-MIME-Charset: Added (Charset Information).
perl/perl-Proc-ProcessTable: Added (Process table Perl extension).
perl/perl-Text-CharWidth: Added (Column Computer).
perl/perl-Text-WrapI18N: Added (line wrapping module).
perl/perl-Time-Piece: Updated for version 1.27.
perl/perl-Unicode-LineBreak: Added (UAX #14 Unicode Line Breaking).
python/Flask: Added (Microframework).
python/Mako: Fixed download link.
python/PyInstaller: Added (Converts Python programs).
python/Pyro4: Updated for version 4.22.
python/argcomplete: Added (Bash tab completion for argparse).
python/argh: Added (An unobtrusive argparse wrapper).
python/args: Added (Command Arguments for Humans).
python/astroid: Added (new abstract syntax tree from Python's ast).
python/bitarray: Added (Efficient arrays of booleans).
python/clint: Added (Python Command-line Application Tools).
python/coverage: Added (Code coverage measurement for Python).
python/docopt: Added (Command-line interface description language).
python/frosted: Added (A passive Python syntax checker).
python/fudge: Added (Python module for using fake objects).
python/itsdangerous: Added (Various helpers to pass trusted data).
python/pilkit: Added (utilities and processors for PIL).
python/purl: Added (An immutable URL class).
python/py3cairo: Added (Python 3.x bindings for cairo).
python/py: Added (library with cross-python path).
python/pySmartDL: Updated for version 1.1.2.
python/pygame: Updated for version 1.9.1 + New Maintainer.
python/pytest: Added (simple powerful testing with Python).
python/python-chardet : Added (renamed from python2-chardet).
python/python-requests: Updated for version 2.2.0.
python/python-urllib3: Updated for version 1.7.1.
python/six: Updated for version 1.5.2.
python/soundcloud: Added (wrapper library for the Soundcloud API).
python/sql: Removed the pysetuptools dependency.
python/termcolor: Added Python3 support.
python/threadpool: Added pysetuptools as dependency.
python/tox: Added (virtualenv-based automation of test activities).
python/waitress: Added (Waitress WSGI server).
python/wsgiref: Added (WSGI (PEP 333) Reference Library).
ruby/ruby2: Updated for version 2.0.0_p353.
system/PySixel: Added (Make SIXEL color graphics).
system/TLP: Updated for version 0.4.1.
system/a2tools: Added (copy data to/from Apple II DOS 3.3).
system/autoarchive: Added (A simple backup utility).
system/backasa: Added (A Picasa Web Albums backup utility).
system/barman: Added (Backup and Recovery Manager for PostgreSQL).
system/bleachbit: Updated for version 1.0.
system/bochs: Updated for version 2.6.2, fixed linking on x86_64.
system/brasero: Updated for version 3.11.3.
system/cbmbasic: Added (Commodore BASIC V2 as a scripting language).
system/clamtk: Updated for version 5.03.
system/cpmtools: Added (access CP/M filesystem images or floppies).
system/d52: Added (disassembler for 8051/8052, 8041/8048, and Z80).
system/ddg: Added (DuckDuckGo zero-click api for your command-line).
system/dos33fsprogs: Added (Utilities for the Apple II DOS 3.3 FS).
system/elasticsearch: Added (distributed RESTful search engine).
system/em: Added (Highlight some PATTERN in terminal's STDOUT).
system/findcmd: Added (A command line tool for searching commands).
system/flashcards: Added (A simple command line flashcards utility).
system/fr: Added (command-line tool to print free resources).
system/gentoo: Added (file manager).
system/gtk-vnc: Script cleanup + New Maintainer.
system/idle3-tools: Added (Linux/Unix Utility for WD Drives).
system/info2man: Added (convert GNU info files into man pages).
system/kasp_updater: Added (updater for Kaspersky antivirus).
system/libscrypt: Updated for version 1.15.
system/logkeys: Added (a GNU/Linux keylogger that works).
system/mlterm: Added (Mlterm is a multilingual terminal emulator).
system/ncdu: Updated for version 1.10.
system/nmon: Added (Nigel's performance MONitor).
system/patool: Added (Portable Archive File Manager).
system/pmount: Added (mount removable devices as normal user).
system/polyglotman: Added (convert man pages to other formats).
system/read-edid: Added (read EDID information).
system/rename: Added (Renames files using regular expressions).
system/roxterm: Updated for version 2.8.1.
system/rtirq: Added (set priorities on kernel IRQ threads).
system/sentimental-skk: Added (Japanese Input Method SKK).
system/slack: Added (manage SBo packages in local repository).
system/termsaver: Added (Simple text-based terminal screensaver).
system/the_silver_searcher: Updated for version 0.19.1.
system/thermal_daemon: Updated for version 1.1_rc2.
system/trachet: Added (Step-by-step/realtime terminal debugger).
system/ts: Updated for version 0.7.4.
system/u3-tool: Added (utility for U3 flash drives, including SanDisk and Verbatim).
system/vagrant: Updated for version 1.4.3.
system/virtualbox-extension-pack: New Maintainer.
system/worker: Updated for version 3.3.0.
system/xen: Remove support for x86
+--------------------------+
Tue Jan  7 17:15:32 UTC 2014
academic/Shapely: Updated for version 1.3.0.
academic/avogadro: Updated for version 1.1.1.
audio/aeolus: Updated for version 0.9.0.
audio/clxclient: Updated for version 3.9.0.
audio/easytag: Updated for vesion 2.1.9.
audio/google-musicmanager: Added (Google Music Uploader/Downloader).
audio/lastfm: Added (Official player from Last.fm).
audio/pianobar: Permissions fix.
audio/qsynth: Force -j1 in make install.
desktop/clearlooks-phenix-theme: Updated for version 20131228.
desktop/dwm: Updated for version 6.0 + New Maintainer.
desktop/i3: Updated for version 4.7.
desktop/notion: Added (tiling tabbed window manager).
desktop/oxygen-transparent: Added (Transp. vers. of oxygen theme).
desktop/qtile: Added (tiling window manager).
development/as31: Added (8031/8051 cross assembler).
development/codeblocks: Updated for version 13.12.
development/fpc-source: Updated for version 2.6.2.
development/lazarus: Updated for version 1.0.14.
development/mutagen: Updated for version 1.22.
development/mysql-workbench: Force building over python-2.7.
development/rapidsvn: Updated for version 0.12.1 + new maintainer.
games/cutemaze: Added (top-down maze game)
games/dustrac: Added (2D racing game).
games/extremetuxracer: Updated for version 0.6.0.
games/fortune_doctor_who: switch to /bin/sh
games/mame: Updated for version 0.152.
games/playonlinux: Updated for version 4.2.2.
games/qmc2: Updated for version 0.42.
games/quakeforge: Force -j1 in make install.
graphics/HotShots: Updated for version 2.0.0
graphics/frescobaldi: Updated for version 2.0.13.
graphics/paraview: Added (data analysis and visualization).
graphics/xmedcon: Added (Medical Image Conversion).
graphics/yed: Updated for version 3.11.1.
libraries/Botan: Updated for version 1.10.6.
libraries/aqbanking: Added (library for online banking).
libraries/cfitsio: Updated for version 3.36.
libraries/cryptopp: Updated for version 5.6.2.
libraries/gevent: Added (A coroutine-based network library).
libraries/greenlet: Added (micro-threads for Python).
libraries/gsm: Fixed HOMEPAGE link.
libraries/gwenhywfar: Added (multi-purpose library for aqbanking).
libraries/jemalloc: Updated for version 3.4.1.
libraries/lensfun: Build bump, added SSE/SSE2 optimization.
libraries/libaacs: Updated for version 0.7.0.
libraries/libbdplus: Added (implementation of BD+ System Specifications)
libraries/libcec: Updated for version 2.1.4.
libraries/libgda: Updated for version 5.2.2.
libraries/libhoard: Updated for version 3.10.
libraries/libircclient: Updated for version 1.7.
libraries/libowfat: Updated for version 0.29.
libraries/musicbrainzngs: Added (Python bindings for musicbrainz).
libraries/vtk: Added (The Visualization Toolkit).
libraries/xforms: Updated for version 1.2.1.
libraries/zbase32: Updated for version 1.1.5.
libraries/zita-alsa-pcmi: Added (Alsa library for Aeolus).
libraries/zita-resampler: Updated for version 1.3.0.
misc/nvclock: Force -j1 + update email.
misc/weather: updated for version 2.0
multimedia/MediathekView: Updated for version 4.
multimedia/dvdbackup: Update MD5SUMS.
multimedia/flashplayer-plugin: Updated for version 11.2.202.332.
multimedia/gecko-mediaplayer: Fix build with newer seamonkey.
multimedia/mp3fs: Added (Packing the Songs into folders).
multimedia/plexmediaserver: Updated for ver 0.9.8.18.290_11b7fdd.
multimedia/xbmc: Updated for version 12.3.
multimedia/xvst: Updated for version 2.5.
network/flvstreamer: Added (RTMP client).
network/freeradius-server: Updated for version 2.2.3.
network/hostsblock: Added (ad/malware-blocking cron script).
network/nicotine+: Updated for version 20130813_037e16c.
network/node: Updated for version 0.10.24.
network/onioncat: Updated for version 0.2.2.r559, added a license.
network/phpmyadmin: Updated for version 4.1.3.
network/retroshare: Added (Secure, Decentralized Friend-2-Friend).
network/roger-router: Updated for version 1.8.2.
network/squidanalyzer: Added (squid logs parser).
network/tor: Update doinst.sh.
network/wireshark: Update DOWNLOAD link.
network/yate: Removed (per maintainer request).
office/texmaker: Updated for version 4.1.1.
office/xtrkcad: Added (Model RR Track Planner).
office/zim: Added (Desktop wiki editor).
perl/perl-Module-Pluggable: Updated for version 5.0.
perl/perl-Term-UI: Updated for version 0.42.
python/Markdown: Updated for version 2.3.1.
python/SimpleParse: Removed (incompatible with newer pysetuptools).
python/Unidecode: Updated for version 0.4.14.
python/babel: Added missing data files.
python/blinker: Updated for version 1.3.
python/buildbot-slave: Updated for version 0.8.8.
python/colorama: Added (Cross-platform colored terminal text).
python/dulwich: Updated for version 0.9.4.
python/feedgenerator: Updated for version 1.7.
python/geopy: Updated for version 0.97.
python/gerbmerge: Removed (build dep failure).
python/hg-git: Updated for version 0.5.0.
python/mock: Updated for version 1.0.1.
python/pelican: Updated for version 3.3.
python/pip: Updated for version 1.4.1.
python/pySmartDL: Added (download manager for python).
python/pyasn1: Updated for version 0.1.7.
python/pysetuptools: Updated for version 2.0.1.
python/python-blake2: Updated for version 0.1.6.
python/python3: Updated for version 3.3.3.
python/pyutil: Updated for version 1.9.7.
python/sql: Added (DB API 2.0 for humans).
python/stem: Updated for version 1.1.1.
python/termcolor: Added (ANSII Color formatting).
python/threadpool: Added (object-oriented thread pool framework).
python/virtualenv: Updated for version 1.10.1.
python/webassets: Updated for version 0.9.
system/bacula: Added icon.
system/ccid: Updated for version 1.4.14.
system/dateutils: Updated for version 0.2.6.
system/diskscan: Added (tool to scan a block device).
system/etckeeper: Added (version control for /etc).
system/extundelete: Updated for version 0.2.4.
system/f2fs_tools: Added (Userland tools for the f2fs filesystem).
system/lxdm: Updated for version 20140103_b8b08e5.
system/mdocml: Added (UNIX manpage compiler).
system/mksh: Updated for version R48b.
system/newrelic-sysmond: Added (server monitor application).
system/pgbadger: Added (PostgreSQL log analyzer).
system/postgresql: Updated for version 9.3.2.
system/ranger: Updated for version 1.6.1.
system/redis: Updated for version 2.8.3.
system/smem: Updated for version 1.4.
+--------------------------+
Wed Dec 25 21:07:28 UTC 2013
academic/gcompris: New maintainer and script cleanups.
academic/osm2pgsql: Updated for version 0.84.0.
academic/rasterio: Added (direct raster I/O for numpy coders).
academic/sage: Updated for version 6.0 and changed maintainer.
audio/soundkonverter: Updated for version 2.0.5.
audio/spandsp: Added (A DSP library for telephony).
desktop/awesome: Updated for version 3.5.2.
desktop/kpartsplugin: Added (KParts plugin for browsers).
desktop/plasma-runner-browsefirefoxbookmarks: Added (FF bookmark).
desktop/slack-wallpapers: Updated for version 0.284.
desktop/vim-qt: Added (Qt gui for Vim).
desktop/wmmon: New download link.
desktop/xmms-skins-almond: Added more extra skins.
desktop/xtitle: Added (print title of active X window).
development/Sphinx: Updated for version 1.2.
development/arduino: Updated for version 1.0.5 + New Maintainer.
development/fpc: Updated for version 2.6.2.
graphics/draftsight: Updated for version 1.2.285.
graphics/entangle: Updated for version 0.5.4.
graphics/librecad: Updated for version 1.0.4.
graphics/pinta: New Maintainer.
graphics/shutter: Updated for version 0.87.2.
graphics/teighafileconverter: Updated for version 3.09.1.
graphics/teighaviewer: Updated for version 3.09.1.
libraries/LibRaw: Update MD5SUM.
libraries/libbluray: Updated for version 0.5.0.
libraries/libeatmydata: Added (library designed to disable fsync).
libraries/physfs: Updated for version 2.0.3.
libraries/poppler-qt5: Added (Qt5 bindings for poppler).
misc/hashkill: Added (multithreaded password recovery tool).
misc/sutils: Added (small command-line utilities).
multimedia/mplayer-codecs32: Added (32-bit Codecs for MPlayer)
multimedia/mplayer-codecs64: Added (64-bit Codecs for MPlayer)
multimedia/mplayer-codecs: Removed (Replaced by -codecs32/-codecs64)
network/etherpad-lite: Added alternate tar-uncompress command.
network/hipchat: Updated for version 2.1.982.
network/libcapi20: Added (CAPI support libraries).
network/phpmyadmin: Updated for version 4.1.1.
network/policyd2: Upgraded for version 2.0.4.
network/qupzilla: Updated for version 1.4.4.
network/roger-router: Added (former FFGTK Router Manager).
network/sipp: Updated for version 3.3.
network/tor: Updated for version 0.2.4.20.
office/myrulib: Updated for version 0.29.16.
office/qpdfview: Updated for version 0.4.7.
perl/perl-Archive-Extract: Added (Generic archive extracting).
perl/perl-CPANPLUS-Dist-Build: Added (CPANPLUS with Build.PL).
perl/perl-CPANPLUS-Dist-Slackware: Updated for version 1.016.
perl/perl-CPANPLUS: Added (API and CLI access to the CPAN mirrors).
perl/perl-DBIx-Simple: Added (Easy-to-use OO interface to DBI).
perl/perl-JSON-XS: Added (JSON serialising/deserialising).
perl/perl-Log-Message-Simple: Added (Interface to Log::Message).
perl/perl-Log-Message: Added (Powerful message storage mechanism).
perl/perl-Module-Pluggable: Added (Pluggable Plugin for Perl).
perl/perl-Object-Accessor: Added (Create object getters/setters).
perl/perl-Path-Class: Added (Cross-platform path spec manipulation).
perl/perl-Term-ReadLine-Gnu: Added (line-edit/history capabilities).
perl/perl-Term-UI: Added (Interfaces via Term::ReadLine made easy).
perl/perl-common-sense: Added (perl common defaults).
python/python-vatnumber: Renamed from vatnumber
python/python-xlwt: Added (Python package to work with MS Excel ™).
python/werkzeug: Added (WSGI utility library for Python).
system/bacula-client: Documentation and script updates.
system/bacula: Documentation and script updates.
system/bindfs: Updated for version 1.12.3.
system/dfc: Updated for version 3.0.4.
system/goaccess: Updated for version 0.7.
system/ksh-openbsd: Updated for version 20131221.
system/mysql-utilities: Updated for version 1.4.1.
system/nss_ldap: Rebuilt to fix segfaults.
system/password-store: Added (Password manager using GnuPG)
system/vagrant: Updated for version 1.4.1.
system/worker: Updated for version 3.2.1.
system/xfsudo: Updated for version 0.2.
+--------------------------+
Tue Dec 17 17:03:59 UTC 2013
academic/gwyddion: Updated for version 2.34.
academic/horao: Added (visualisation tool for 3D GIS data).
audio/mp3splt-gtk: New Maintainer.
audio/mp3splt: New Maintainer.
audio/soundkonverter: New Maintainer.
desktop/bspwm: Added (Binary space partitioning window manager).
desktop/lxmed: Changed maintainer.
desktop/menulibre: New Maintainer.
desktop/sxhkd: Added (Simple X hotkey daemon).
development/amaya: Removed (not compatible with gcc-4.8.x).
development/squirrel-sql: Updated for version 3.5.0.
libraries/libmp3splt: New Maintainer.
libraries/libpst: New Maintainer.
libraries/qt5: Added (multi-platform C++ GUI toolkit).
libraries/zend-opcache: Updated for version 7.0.2.
multimedia/w_scan: New Maintainer.
network/hydra: Updated for version 7.5.
network/icecat: Updated for version 24.0.
network/midori: Updated for version 0.5.6.
network/smcroute: Added (Static Multicast Routing Daemon).
network/sstp-client: Added (SSTP client for Linux).
office/calibre: Updated for version 1.15.0.
office/hevea: Updated for version 2.09.
perl/perl-Class-Method-Modifiers: Updated for version 2.09.
perl/perl-Date-Manip: Fix download link.
perl/perl-strictures: Updated for version 1.005002.
python/python-ldap: Added (Python modules for LDAP clients).
python/vatnumber: Added (Python module to validate VAT numbers).
system/linuxconsoletools: New Maintainer.
system/nvidia-driver: Updated for version 331.20.
system/nvidia-kernel: Updated for version 331.20, cleanups.
system/sdl-jstest: New Maintainer.
system/udevil: Updated for version 0.4.3.
system/xboxdrv-linux: New maintainer.
system/zerofree: New Maintainer.
+--------------------------+
Sat Dec 14 17:01:37 UTC 2013
academic/EMBASSY: Updated for version 6.6.0.
academic/EMBOSS: Updated for version 6.6.0.
academic/PhyML: Updated for version 20131112.
academic/bowtie2: Added (A tool for aligning sequencing reads).
academic/bowtie: Updated for version 1.0.0.
academic/cistrome-CEAS: Added (Cis-regulatory Element Annotation).
academic/cistrome-MACS: Added (Model-based Analysis of ChIP-Seq).
academic/cufflinks: Added (reference-guided assembler for RNA-Seq).
academic/geoserver-control-flow: Added (request rate limitation)
academic/geoserver-pyramid: Added (pyramid data store support)
academic/mafft: Updated for version 7.130.
academic/mkDSSP: Updated for version 2.2.1.
academic/mrbayes: Updated for version 3.2.2.
academic/paml: Added (Phylogenetic Analysis by Maximum Likelihood).
academic/pamlX: Added (A GUI for PAML).
academic/primer3: Updated for version 2.3.6.
academic/samtools: Added (Sequence Alignment/Map Tools).
academic/t_coffee: Updated for version 10.00.r1613.
academic/tabix: Added (Generic indexer).
academic/topdraw: Added (A sketchpad for protein topology diagrams).
academic/tophat: Added (Splice junction mapper for RNA-Seq reads).
academic/ugene: Updated for version 1.13.0.
academic/vcftools: Added (A program designed for working with VCF).
audio/mpd: Added optional deps + New Maintainer.
audio/opus-tools: Added (utilities for opus)
audio/opus: Updated for version 1.1.
audio/opusfile: Added (opus decoding API)
desktop/awesome: Removed note from the README
desktop/copyq: Added (clipboard manager with advanced features).
desktop/murrine-themes: Updated for version 0.98.6.
desktop/screenfetch: Updated for version 3.2.2.
desktop/thunar-sendto-clamtk: Updated for version 0.04.
desktop/yawp: Updated for version 0.4.5.
development/Cython: Updated for version 0.19.2.
development/MySQL-python: Avoid downloading distribute during build.
development/acpica: Updated for version 20131115.
development/avra: Added (Atmel AVR Microcontrollers Assembler).
development/geany-plugins: New Maintainer.
development/mono-addins: Updated for version 20131127.
development/mono: Updated for version 3.2.3.
development/monodevelop-database: Updated for version 4.2.1.
development/monodevelop-debugger-gdb: Updated for version 4.2.1.
development/monodevelop: Updated for version 4.2.1.
development/trac: New maintainer.
games/Scorched3D: Updated for version 43.3d.
games/angband: Added license.
games/fortune_doctor_who: Added (quotes from Doctor Who).
games/supertux2: Updated for version 0.3.4.
games/xonotic: New maintainer, small clean up.
graphics/digikam: Cleanup + added additional optional deps.
graphics/goocanvas: Changed homepage.
graphics/luxblend25: Added (LuxRender's interface for Blender 2.6x).
graphics/luxrender: Added (rendering engine).
graphics/pinta: Updated for version 20131027.
graphics/shotwell: Added (Open source photo manager for GNOME)
libraries/SFCGAL: Added (C++ wrapper around CGAL).
libraries/dbus-sharp-glib: Added (a C# implementation of dbus-glib).
libraries/dbus-sharp: Added (C# implementation of D-Bus).
libraries/elementary: Added (toolkit set).
libraries/emotion: Added (video library).
libraries/ethumb: Added (thumbnail lib).
libraries/genshi: Updated for version 0.7, new maintainer.
libraries/goffice: Updated for version 0.10.9 + New Maintainer.
libraries/gtk-sharp: Updated for version 2.12.22.
libraries/lensfun: Switching to cmake, New maintainer.
libraries/libburn: Updated for version 1.3.4.
libraries/libgee1: Added (GObject-based interfaces and classes)
libraries/libgee: Updated for version 0.12.0.
libraries/libisoburn: Updated for version 1.3.4.
libraries/libisofs: Updated for version 1.3.4.
libraries/libquvi-scripts: Updated for version 0.4.21.
libraries/libskk: Update deps to libgee1.
libraries/libsuinput: Added (Thin userspace library)
libraries/libx86emu: Updated for version 1.4.
libraries/mysql-connector-python: Fix download link.
libraries/ndesk-dbus-glib: Removed (Replaced by dbus-sharp-glib).
libraries/ndesk-dbus: Removed (Replaced by dbus-sharp).
libraries/notify-sharp: Updated for version 0.4.1.
libraries/squish: Added (open-source DXT compression library).
misc/WhatPulse: Removed (no SBo maintainer).
misc/ibus-fbterm: Removed (no SBo maintainer)
misc/ibus-hangul: Removed (no SBo maintainer)
multimedia/guvcview: Updated for version 1.7.2.
multimedia/plexmediaserver: Added (media center server).
network/aoetools: Added (ATA Over Ethernet).
network/bitcoin: Updated for version 0.8.6.
network/cclive: Updated for version 0.7.16 + New Maintainer.
network/libquvi: Use Shared Libs + New Maintainer.
network/mangler: Removed (no SBo maintainer).
network/mumble: New Maintainer.
network/murmur: New Maintainer.
network/opensmtpd: Updated for version 5.4.1p1.
network/phpmyadmin: Updated for version 4.1.0.
network/quvi: New Maintainer.
network/weechat: Updated for version 0.4.2.
office/gnumeric: Updated for version 1.12.9.
office/pdfpc: Update deps to libgee1.
perl/perl-Scalar-List-Utils: Added (Scalar and List Subroutines).
perl/perl-Text-CSV: Added (Perl Text::CSV module).
perl/perl-Time-Piece: Added (Perl Time::Piece module).
python/psutil: Updated for version 1.2.1.
python/pygoocanvas: Changed homepage.
system/apache-tomcat: Fix location of tomcat-juli.jar.
system/clamtk: Updated for version 5.01.
system/eventlog: Updated for version 0.2.12+20120504+1700.
system/gparted: Updated for version 0.17.0.
system/hermit-font: Added (monospace font for programming).
system/hwinfo: Updated for version 20.1.
system/kc: Updated for version 2.3.2.
system/libscrypt: Added (library that implements scrypt()).
system/postgis: Add SFCGAL as an optional dependency.
system/rsyslog: Updated for version 7.4.6.
system/scrypt: Use SLKCFLAGS.
system/spl-solaris: Added (solaris kernel API for linux).
system/syslog-ng: Updated for version 3.5.2.
system/tagainijisho: Added (Japanese dictionary and kanji lookup).
system/terminology: Added (terminal emulator).
system/thermal_daemon: Added (Linux Thermal Daemon).
system/vagrant: Added (virtual development environments).
system/vbindiff: Added (visual binary diff).
system/virtualbox-addons: Updated for version 4.3.4.
system/virtualbox-kernel-addons: Updated for version 4.3.4.
system/virtualbox-kernel: Updated for version 4.3.4.
system/virtualbox: Updated for version 4.3.4.
system/xfsudo: Added (run graphical apps as root using sudo).
system/zfs-on-linux: Added (native linux port of ZFS).
+--------------------------+
Fri Dec  6 06:07:53 UTC 2013
academic/geogit: Updated for version 0.6.0.
audio/milkytracker: Updated for version 0.90.86.
audio/mpd: Updated for version 0.18.5.
audio/qmpdclient: Removed (no SBo maintainer)
audio/soundconverter: Updated for version 2.1.2.
desktop/cwm-openbsd: Added (stacking window manager).
desktop/cwp: Updated for version 1.9.0.
desktop/metacity: Removed (unmaintained/unused)
desktop/spectrwm: Updated for version 2.4.0.
desktop/xfce4-mailwatch-plugin: Updated for version 1.2.0.
development/grails: Updated for version 2.3.3.
development/mg-openbsd: Added (small, fast and portable editor).
development/power-architect: Updated for version 1.0.6.
development/racket: Updated for version 5.3.6.
development/sqliteman: Script cleanup.
games/UrbanTerror: Updated for version 4.2.015, changed maintainer.
games/fceux: Updated for version 2.2.2.
games/fgo: Added (FlightGear Flight Simulator Front End).
games/ioquake3: Update README.
games/scid_vs_pc: Added (Usability and bug-fix fork of Scid)
libraries/CherryPy: Update Email Address.
libraries/equinox: Removed (no SBo maintainer)
libraries/goffice0.8: Added (document utilities - version 0.8.x).
libraries/libestr: Updated for version 0.1.9.
libraries/libvirt-python: Added (libvirt python bindings).
libraries/libvirt: Updated for version 1.2.0.
libraries/log4net: Removed (no SBo maintainer)
libraries/msn-pecan: Removed (no SBo maintainer)
libraries/mysql-connector-java: Removed (no SBo maintainer)
libraries/nini: Removed (no SBo maintainer)
libraries/smartirc4net: Removed (no SBo maintainer)
libraries/totem-pl-parser: New maintainer
libraries/xerces: Updated Download link.
misc/j7z: Removed (no SBo maintainer)
multimedia/mozplugger: Updated for version 2.1.4.
multimedia/pyradio: Added (Internet Radio Player for the CLI).
network/QuiteRSS: Updated for version 0.14.1.
network/dkimproxy: Added (SMTP-proxy).
network/nateon: Removed (no SBo maintainer)
network/ndiswrapper-kernel: Updated for version 1.59.
network/ndiswrapper-utils: Updated for version 1.59.
network/sieve-connect: Updated for version 0.87.
network/strongswan: Updated for version 5.1.1.
network/teamviewer: Updated for version 9.0.24147.
office/gnucash: Added (financial accounting application).
office/timetrap: Added (CLI time tracker)
python/Mako: Update Email Address.
python/gnome-python-desktop: Removed metacity from optdeps
python/gnome-python-desktop: Updated for version 2.32.0.
python/pyxdg: Update Download Link.
ruby/chronic: Added (Date/time parser)
ruby/sequel: Added (Database toolkit for Ruby)
ruby/sqlite3: Added (Database interface module)
system/MySQL-Sandbox: Updated for version 3.0.43.
system/glances: Script cleanup.
system/hal-flash: Added (HAL stub library for playing DRM flash content).
system/mbr: Removed (no SBo maintainer)
system/rar: Updated for version 5.0.1.
system/scrypt: Added (scrypt encryption utility)
system/smart: Added (meta-package manager).
system/the_silver_searcher: Added (grep-like text search, but faster).
system/unrar: Updated for version 5.0.14.
system/virt-manager: Added libvirt-python to REQUIRES.
system/virtualbox-extension-pack: Fix wrong package name.
various: Fix permissions.
+--------------------------+
Mon Dec  2 06:59:33 UTC 2013
academic/Fiona: Added (Python interface for OGR)
academic/OWSLib: Added (OGC Web Service utility library)
academic/Shapely: Added (geometric objects, predicates, and operations in Python)
academic/geoserver-css: Added (CSS styling support for GeoServer)
academic/geoserver-wps: Added (WPS support for GeoServer)
academic/geoserver: Added (geospatial server)
academic/osm2pgrouting: Added (import OSM data into pgRouting database)
academic/pdal: Added (point data abstraction library)
academic/pointcloud: Added (PostgreSQL extension for storing LiDAR data)
academic/pyproj: Added (Python interface to the PROJ.4 library)
audio/kradio: Updated for version 4.0.7 + New Maintainer.
desktop/cairo-dock-plugins: Updated for version 3.3.2.
desktop/cairo-dock: Updated for version 3.3.2.
desktop/kdeconnect: Added (KDE integration with Android)
desktop/murrine: Fixed Homepage link.
desktop/razercfg: Added (Razer device configuration tool)
desktop/xfce4-places-plugin: Updated for version 1.6.0.
desktop/xfce4-whiskermenu-plugin: Added (alternate application launcher for Xfce)
development/apache-maven: Updated for version 3.1.1.
development/chicken: Updated for version 4.8.0.5.
development/cunit: Added (Unit Testing Framework for C).
development/fossil: Added (Distributed Version Control System).
development/gnuradio: Added (toolkit for building SDRs).
games/desmume: Updated for version 0.9.10.
games/fceux: Fixed validation warnings in .desktop file
games/ioquake3: Updated for version r20131127, added a license.
games/megaglest: Updated for version 3.9.0.4, added a license.
games/openttd: Updated for version 1.3.3.
games/pcsxr: Updated for version 1.9.93, added a license.
games/qxw: Added (advanced interactive crossword construction tool).
graphics/GPS: Script cleanup and Source Update.
graphics/entangle: Updated for version 0.5.3.
graphics/gimagereader: Added (GUI for tesseract).
libraries/gnome-media: New maintainer
libraries/iniparser: Updated for version 3.1.
libraries/laszip: Added (Free and Lossless LiDAR Compression).
libraries/libasyncns: New maintainer
libraries/libedit: Updated for version 20130712_3.1.
libraries/log4c: Updated for version 1.2.4.
libraries/tre: Build python bindings
libraries/wjelement: Added (JSON manipulation, JSON-schema validation, CLI/script tool)
misc/cups-windows: New maintainer
misc/gprename: Updated for version 5.
multimedia/dvdbackup: Updated for version 0.4.2.
multimedia/flowblade: Updated for version 0.10.0.
multimedia/mythplugins: Added (plugins for mythtv).
multimedia/mythtv: Added (mythical home media convergence PVR/DVR).
multimedia/totem: Added (GNOME Movie Player)
network/dovecot-pigeonhole: Updated for version 0.4.2.
network/dovecot: Updated for version 2.2.9.
network/httping: Updated for version 2.3.3.
network/netsniff-ng: Fixed Homepage Link.
network/nload: Updated for version 0.7.4.
network/postfix: Updated for version 2.10.2.
network/quassel: Updated for version 0.9.2 + New Maintainer.
network/siege: Updated for version 3.0.5, added a license.
network/tornado: Added (Web Framework and Asynchronous Networking Library).
network/webalizer: Updated for version 2.23_08.
office/calibre: Updated for version 1.13.0.
perl/perl-Gtk2-Unique: Added (use single instance applications).
perl/perl-Readonly: Updated for version 1.04.
perl/perl-Test-Harness: Updated for version 3.30.
python/gnome-python-desktop: New maintainer
python/pygtkspell: Added (Python bindings for the GtkSpell library).
python/pyicu: Updated for version 1.5.
python/pytz: Updated for version 2013.8.
python/pyzmq: Added (Python bindings for ØMQ)
system/TLP: Added (Advanced Power Management Tool).
system/apache-tomcat: Updated for version 7.0.47.
system/commons-daemon: Updated for version 1.0.15.
system/glances: Added (curses-based monitoring tool).
system/haveged: Updated for version 1.7c.
system/kc: Updated for version 2.3.1.
system/ksh-openbsd: Updated for version 20131129.
system/lirc: Forced a single make job.
system/nilfs-utils: Updated for version 2.1.5.
system/rxvt-unicode: Updated for version 9.19.
system/sakura: Updated for version 3.1.1.
system/sbotools: Added (ports-like interface to slackbuilds.org).
system/uhd: Added (USRP Hardware Driver).
system/unrar: Remove libunrar directory.
system/wacomtablet: Updated for version 2.0.
+--------------------------+
Sat Nov 30 06:16:29 UTC 2013
academic/convertall: Fixed file ending with no newline.
audio/audtty: Fixed file ending with no newline.
audio/pithos: Added (Pandora Radio client)
desktop/Vanilla-DMZ: Fixed download link.
desktop/cheser-icon-theme: Fixed download link.
desktop/clearlooks-phenix-theme: Updated to version 20131129.
desktop/gtk1-industrial-engine: Fixed download link.
desktop/murrine-themes: Fixed download link.
development/dejagnu: Fixed download link.
development/device-tree-compiler: Added (Device Tree Compiler for Flat Device Trees)
development/guile1.8: Fixed file ending with no newline.
development/kforth: Fixed file ending with no newline.
development/nant: Fixed file ending with no newline.
development/sublime_text: Updated for version 2.0.2 (New Maintainer).
games/UrbanTerror: Fixed download link.
games/adom: Updated for version 1.2.0_pre20.
graphics/entangle: Fixed file ending with no newline.
libraries/Impacket: Fixed download link.
libraries/iniparser: Fixed file ending with no newline.
libraries/libsmi: Fixed download link.
libraries/libtxc_dxtn: Fixed file ending with no newline.
libraries/liburcu: Fixed file ending with no newline.
libraries/mysql-connector-c++: Fixed file ending with no newline.
libraries/mysql-connector-python: Fixed file ending with no newline.
libraries/nacl: Fixed file ending with no newline.
libraries/ocaml-bisect: Fixed file ending with no newline.
libraries/rest: Fixed file ending with no newline.
libraries/vigra: Fixed download link.
misc/ophcrack: Fixed file ending with no newline.
network/netsniff-ng: Fixed file ending with no newline.
network/teamviewer: Fixed file ending with no newline.
perl/perl-Capture-Tiny: Fixed file ending with no newline.
perl/perl-Class-Method-Modifiers: Fixed file ending with no newline.
perl/perl-Devel-GlobalDestruction: Fixed file with no newline.
perl/perl-ExtUtils-Helpers: Fixed file ending with no newline.
perl/perl-ExtUtils-InstallPaths: Fixed file ending with no newline.
perl/perl-File-Tail: Fixed file ending with no newline.
perl/perl-LockFile-Simple: Fixed file ending with no newline.
perl/perl-Module-Build-Tiny: Fixed file ending with no newline.
perl/perl-Role-Tiny: Fixed file ending with no newline.
perl/perl-Test-Harness: Fixed file ending with no newline.
perl/perl-strictures: Fixed file ending with no newline.
python/virtualenv-clone: Fixed PRGNAM in .info file
system/brasero: Updated for version 2.32.1.
system/linkchecker: Added (Website Validator).
system/mysql-utilities: Fixed file ending with no newline.
system/netatop: Fixed file ending with no newline.
system/numlockx: Fixed download link.
system/nvidia-legacy304-driver: Fixed file ending with no newline.
system/qemu: Optionally use device-tree-compiler if installed
system/scanmem: Fixed file ending with no newline.
system/winetricks: Fixed VERSION in .info file.
+--------------------------+
Thu Nov 28 06:14:07 UTC 2013
audio/Pd-extended: Fixed dep info.
audio/cmus: Updated for version 20131125_a854f85.
audio/pavucontrol: New maintainer
audio/pulseaudio: New maintainer
desktop/i3: Update EMAIL for Marcin Herda
desktop/i3status: Fixed VERSION in .info.
desktop/quickaccess: Fixed VERSION in .info.
desktop/wmmon: Fixed VERSION in .info.
desktop/xmms-status-plugin: Use system-provided libtool binary
development/couchdb: Updated for version 1.5.0.
development/ipython: Updated for version 1.1.0 (+ new maintainer)
development/mysql-workbench: Respect $LIBDIRSUFFIX.
development/pyenchant: Update EMAIL for vvoody
graphics/FreeCAD: Install the qt plugin.
graphics/brlcad: Fix tcl/tk build
graphics/dia: Applied patches from upstream.
graphics/digikam: Noted brokeness of the opt dep lensfun.
libraries/yajl: Update EMAIL for Marcin Herda
multimedia/HandBrake: Fixed VERSION in .info.
multimedia/gpac: Noted brokeness of the opt dep xulrunner.
multimedia/spotify: Updated for version 0.9.4.183.g644e24e.428.
network/ekiga: Quiet an error about missing X11 in gconf update
network/ekiga: Removed erroneous comment re libsoup
network/luakit: Fixed for git tarball.
office/evince: Updated README
office/kbibtex: Updated for version 0.4.1.
office/texlive: Use a mirror for texlive-texmf download
python/geopy: Updated for version 0.96.2.
python/stevedore: Added (Manage dynamic plugins for Python applications)
python/virtualenv-clone: Added (virtualenv cloning script)
python/virtualenvwrapper: Updated for version 4.1.1.
system/detox: Update EMAIL for Marcin Herda
system/epson-inkjet-printer-escpr: Updated for version 1.3.0.
system/fbterm: Update EMAIL for vvoody
+--------------------------+
Tue Nov 26 06:41:27 UTC 2013
Here it is! The launch of the SlackBuilds.org repository into the 14.1 era.
With the help of our amazing community we spent the last couple of weeks
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 :)
There are no big user-visible changes this time around, although we did
make some smaller tweaks and adjustements in the templates.  Be sure to
check those out before starting to submit new or updated scripts.
We'd like to take this time to welcome the newest member of our admin team,
Willy Sudiarto Raharjo (willysr), and thank him for the huge amount of
testing and fixing of various scripts that he did.  Similarly goes for Matteo
Bernardini (ponce) as well as for David Somero (XGizzmo), who once again put
the repository through its paces using automated build testing.  Then there's
Heinz Wiesinger (pprkut) for the usual fixes and updates, as well as his
work behind the scenes with our database.  Kudos also go to Erik Hanson
(erik) for his never-ending job of server maintenance and upkeep, on top
of fixes and updates all over the SBo tree.  Thanks go as well to Michiel
van Wessem (BP{k}) and Niels Horn (niels_horn) for jumping in every once
in a while for moral support and hints on various hard to crack issues.
Then there's also rob0 (/dev/rob0) hiding in the shadows working tirelessly
to keep mail and dns working.  Last but not least there's Robby Workman
(rworkman), our ever inspiring project lead who knows exactly how to kick
us all into gear when work needs to get done! :)
All of our users and maintainers deserve proper thanks for our existence,
but David Spencer and David Woodfall really helped out a lot this time
around with testing and fixing an insane amount of SlackBuilds.  Naturally
there have been many more providing input on all sorts of things.  Thanks
go out to all of you, regardless of how small or large your contributions
may have been.
See the git log <http://slackbuilds.org/cgit/slackbuilds/log/?h=14.1> for
detailed changes since 14.0. Happy Slacking!
-- The SBo team
+--------------------------+