forked from spellbindguy/my_slackbuilds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.txt
1690 lines (1690 loc) · 74.5 KB
/
ChangeLog.txt
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
Sat Sep 3 00:50:31 UTC 2016
academic/irsim: Added (A digital circuit simulator).
academic/magic: Added (A VLSI layout design tool).
academic/pspp: Updated for version 0.10.2.
accessibility/xdotool: Fix script.
audio/mpd: Updated for version 0.19.19.
audio/qmmp-plugin-pack: Updated for version 0.10.1.
audio/quodlibet: Updated for version 3.7.0.
business/stansoft: Updated for version 7.6.
desktop/ceti-2-theme: Added (GTK2|GTK3 themes).
desktop/i3pystatus: Updated for version 3.35.
desktop/numix-gtk-theme: Removed (per maintainer request).
desktop/numix-icon-theme-bevel: Updated for version 1.0.2014102123.
desktop/numix-icon-theme-circle: Updated for version 2.0.3.7.
desktop/numix-icon-theme: Updated for version 0.3.824.201608071940.
desktop/numix-pack: Added (Icons, Themes, Wallpapers).
desktop/qmmp-skins: Added (skins for Qmmp player).
desktop/tint2: Update DOWNLOAD url.
desktop/zuki-themes: Added (Themes for GTK, gnome-shell and more).
development/SQLAlchemy: Updated for version 1.0.15.
development/atom: Updated for version 1.10.0.
development/cycler: Update DOWNLOAD url.
development/meld3: Updated for version 3.16.2.
development/nodejs: Update DOWNLOAD.
development/npm2tgz: Switch to nodejs.
development/qbs: Updated for version 1.6.0.
development/qt-creator: Updated for version 4.1.0.
development/radare2: Updated for version 0.10.5 + new maintainer.
development/sphinx_rtd_theme: Update dep.
development/uz80as: Updated for version 1.02.
games/SLADE: Updated for version 3.1.1.3.
games/mednafen: Updated for version 0.9.39.1.
games/pioneer: Updated for version 20160814.
games/yabause: Updated for version 0.9.15
gis/google-earth: Updated for version 7.1.7.2600.
gis/libLAS: Added (C/C++ library for the LAS LiDAR format).
libraries/IMAPClient: Updated for version 0.13.
libraries/SDL2_mixer: Fixed libmodplug support.
libraries/botocore: Updated for version 1.4.51.
libraries/matplotlib: Update DOWNLOAD url.
libraries/mini18n: Updated for version 0.2.1
libraries/webkit2gtk: Updated for version 2.12.4.
misc/moreutils: Updated for version 0.60.
misc/nixnote: Fix build and update dep.
misc/subsurface: Remove unused patch
multimedia/ffmpeg2theora: Updated for version 0.30.
network/PAC: Update REQUIRES.
network/aggregate: Switch to i586.
network/aria2: Updated for version 1.26.1.
network/awscli: Updated for version 1.10.61.
network/dropbox: Updated for version 8.4.21.
network/etherpad-lite: Switch to nodejs.
network/flexget: Updated for version 2.3.13.
network/gmvault: Added (gmail backup-restore tool).
network/google-cli: Updated for version 2.7.
network/ike: Fixed SlackBuild.
network/iojs: Update README.
network/iperf3: Added (bandwidth measurement tool).
network/keybase-client: Switch to nodejs.
network/mailman: Updated for version 2.1.23.
network/node: Removed (replaced by nodejs).
network/ssmtp: Update script.
network/youtube-dl: Updated for version 2016.08.28.
office/MasterPDFEditor: Switch to i586.
office/calibre: Updated for version 2.66.0
perl/Net-SSLeay: Updated for version 1.78.
perl/perl-Capture-Tiny: Updated for version 0.44.
perl/perl-Class-Method-Modifiers: Updated for version 2.12.
perl/perl-Data-Random: Update script and email.
perl/perl-Date-Manip: Updated for version 6.54.
perl/perl-IO-Socket-SSL: Updated for version 2.037.
perl/perl-Moo: Updated for version 2.002004.
perl/perl-Role-Tiny: Updated for version 2.000003.
python/Flask-Cors: Updated for version 3.0.1.
python/Logbook: Added (A logging replacement for Python).
python/buildbot: Added (automated compile/test cycle).
python/lxml: Updated for version 3.6.4
python/monty: Updated for version 0.9.1.
python/msgpack-python: Updated for version 0.4.8.
python/pendulum: Added (Python datetimes made easy).
python/ply: Updated for version 3.9.
python/poster: Added (streaming HTTP uploads).
python/pytest: Updated for version 3.0.1.
python/python-certifi: Updated for version 2016.8.31.
python/python-gflags: Updated for version 3.0.6.
python/python-requests: Updated for version 2.11.1.
python/python-scandir: Updated for version 1.3.
python/regex: Updated for version 2016.08.27.
python/s3transfer: Updated for version 0.1.3.
python/sqlparse: Added (SQL parser for Python).
python/waitress: Updated for version 1.0.0.
system/MySQL-Sandbox: Updated for version 3.1.13.
system/borgbackup: Updated for version 1.0.7.
system/dymo-cups-drivers: Moved from office + update script.
system/fsarchiver: Updated for version 0.8.0.
system/keybase: Updated for version 1.0.17.
system/nvidia-driver: Updated for version 367.44.
system/nvidia-kernel: Updated for version 367.44.
system/salt: Added (configuration management engine).
system/ttf-zekton: Added (True Type Font).
system/veracrypt: Added (free disk encryption software).
system/wine-staging: Updated for version 1.9.17.
system/xonsh: Updated for version 0.4.6.
system/zstd: Updated for version 1.0.0.
system/zuluCrypt: Updated for version 5.0.1.
+--------------------------+
Sat Aug 27 23:37:49 UTC 2016
academic/mendeleydesktop: Updated for version 1.16.2.
academic/scipy3: Added (python library).
academic/scipy: Updated for version 0.18.0.
academic/veusz: Updated for version 1.24.
accessibility/unclutter: Fix host.def issue.
audio/abcde: Updated for version 2.7.2.
audio/kid3: Updated for version 3.4.2.
audio/python-audiotools: Updated for version 3.1.1.
audio/qmmp: Updated for version 0.10.3.
audio/snd: Updated for version 16.7.
desktop/ambiance-radiance-flat-colors-gtk-theme: Added (gtk theme).
desktop/areao43-icon-theme: Added (icon theme).
desktop/florence: Added (virtual keyboard).
desktop/glabels: Removed APPROVED line.
desktop/gtk-theme-Albatross: Added (Desktop Suite for Xfce).
desktop/gtk-theme-Blackbird: Added (Dark Desktop Suite for Xfce).
desktop/gtk-theme-Bluebird: Added (Desktop Suite for Xfce).
desktop/gtk-theme-Greybird: Added (Desktop Suite for Xfce).
desktop/gtk-theme-Orion: Added (modern light theme).
desktop/i3lock: Added (simple screen locker).
desktop/lumina: Updated for version 1.0.0-p2 & xinitrc fix.
desktop/pekwm: Update script.
desktop/sawfish: Updated for version 1.12.0.
desktop/wmwebcam: New maintainer, minor fixes.
desktop/xdgurl: Added (install helper program for desktop stuff).
desktop/xfce4-embed-plugin: Updated for version 1.6.0.
desktop/xtrlock: Fix host.def issue.
development/GitEye: Added (Desktop Git Client).
development/THE: Fix html documentation.
development/atom: Updated for version 1.9.9.
development/cycler: Added (composable cycles in python).
development/flow: Updated for version 0.31.0.
development/google-go-lang: Updated for version 1.7.
development/hhvm: Updated for version 3.14.5.
development/mono: Fix source arch on x86.
development/monodevelop-database: Removed (no longer build).
development/monodevelop: Updated for version 6.0.2.73.
development/neovim: Updated for version 0.1.5.
development/numpy-legacy3: Added (a Python extension).
development/numpy-legacy: Updated to match ATLAS version.
development/numpy3: Updated for version 1.11.1
development/numpy: Updated for version 1.11.1.
development/perf: Updated for version 4.4.19.
development/pycharm: Updated for version 2016.2.2.
development/pyenchant: Updated for version 1.6.8.
development/sbcl: Updated for version 1.3.8.
development/simulavr: Updated for version git20160221.
development/uncrustify: Updated for version 0.63.
development/universal-ctags: Updated for version f2d8a3d.
games/angband: i486 -> i586.
games/atanks: i486 -> i586.
games/commandergenius: Added (engine for Commander Keen games).
games/fuse-emulator: Updated for version 1.2.2.
games/koules: Fix host.def issue.
games/moria: i486 -> i586.
games/rogue: i486 -> i586, update DOWNLOAD.
games/stone_soup: i486 -> i586.
games/tome: i486 -> i586.
games/xmahjongg: Added (xmahjongg: Xmahjongg).
gis/CreateCloudMap: Updated for version 0.8.0.
gis/GMT: Updated for gshhg-gmt-2.3.6.
gis/mapnik: Updated for version 3.0.10.
gis/qgis: Updated for version 2.16.2.
graphics/fig2sxd: Updated for version 0.22.1.
graphics/kuickshow: i486 -> i586.
graphics/pngcrush: Updated for version 1.8.4.
graphics/qcomicbook: Fixed downlad link.
graphics/shutter: Updated for version 0.93.1.
graphics/simple-scan: Aded (simple scanning utility).
graphics/xmedcon: Updated for version 0.14.1.
libraries/DateTime: Updated for version 4.1.1.
libraries/PySoundCard: Updated for version 0.5.2.
libraries/SFML: Updated for version 2.4.0.
libraries/afflib: Updated for version 3.7.7.
libraries/atlas: Updated for version 3.10.3.
libraries/bamf: Updated for version 0.5.3.
libraries/botocore: Updated for version 1.4.48.
libraries/console_bridge: Added (Robot OS Library).
libraries/goffice: Updated for version 0.10.32.
libraries/grantlee-qt5: Added (template engine written in Qt5).
libraries/grx: i486 -> i586.
libraries/html5lib: Update DOWNLOAD url.
libraries/lapack-atlas: Updated for version 3.6.1.
libraries/libbde: Updated for version 20160731.
libraries/libburn: Updated for version 1.4.4.
libraries/libesedb: Updated for version 20160622.
libraries/libevt: Updated for version 20160421.
libraries/libevtx: Updated for version 20160421.
libraries/libewf: Updated for version 20140608.
libraries/libfastjson: Added (a fork from json-c).
libraries/libfsntfs: Added (libYAL NTFS library).
libraries/libfvde: Added (libYAL FvDE volume library).
libraries/libfwnt: Added (library to access Windows NT data types).
libraries/libisoburn: Updated for version 1.4.4.
libraries/libisofs: Updated for version 1.4.4.
libraries/libkate: Update DOWNLOAD url.
libraries/liblightgrep: Update DOWNLOAD, i486->i586.
libraries/liblnk: Updated for version 20160420.
libraries/libmsiecf: Updated for version 20160813.
libraries/libolecf: Updated for version 20160814.
libraries/libregf: Updated for version 20160424.
libraries/librelp: Updated for version 1.2.12.
libraries/libsmraw: Updated for version 20160424.
libraries/libspectrum: Updated for version 1.2.2.
libraries/libvslvm: Added (libYAL Linux LVM library).
libraries/live555: Updated for version 2016.08.27
libraries/matplotlibs: Updated for version 1.5.2.
libraries/pcre2: Added (Perl 5-style regular exprs. 2nd version).
libraries/pies2overrides: Updated for version 2.6.7.
libraries/pies: Updated for version 2.6.7.
libraries/protobuf-c: Added (Protocol Buffers in C).
libraries/ptypes: Added (C++ Portable Types Library).
libraries/pylast: Update script and HOMEPAGE.
libraries/python-xlrd: Updated for version 1.0.0.
libraries/tbb: Updated for version 4.4u5.
libraries/urdfdom: Added (Robot Format Header).
libraries/urdfdom_headers: Added (Robot Description Format headers).
libraries/uuid: Added (OSSP Universally Unique Identifier).
libraries/vigra: Updated for version 1.11.0.
misc/mosquitto: Updated for version 1.4.10
misc/ramdefrag: Added (so-called Memory Defragmenter).
misc/subsurface: Updated for version 4.5.6.
misc/xdelta: Update DOWNLOAD url.
multimedia/kodi: Updated for version 16.1
network/PAC: Added (Perl Auto Connector).
network/PySocks: Added (Python SOCKS client module).
network/awscli: Updated for version 1.10.58.
network/bitcoin: Updated for version 0.13.0.
network/chrony: Updated for version 2.4.
network/dianara: Added (Pump.io client written using Qt4).
network/fail2ban: Updated for version 0.9.5.
network/filezilla: Updated for version 3.21.0.
network/flexget: Updated for version 2.3.3.
network/movgrab: Updated for version 1.2.1.
network/nethogs: Updated for version 0.8.5.
network/openfortivpn: Added (PPP+SSL VPN tunnel client).
network/pentadactyl: Updated for version 20160824.
network/pure-ftpd: Updated for version 1.0.43.
network/tcpflow: Added (data capture).
network/telegram: Updated for version 0.10.1.
network/trojita: Updated for version 0.7.
network/vivaldi: Updated for version 1.3.551.38.
network/you-get: Updated for version 0.4.536.
network/youtube-dl: Updated for version 2016.08.22.
office/CherryTree: Updated for version 0.37.4.
office/calibre: Updated for version 2.65.1
office/gnumeric: Updated for version 1.12.32.
office/hamster: Added (Gnome time tracker).
office/hevea: Updated for version 2.29.
perl/Gtk2-GladeXML: Added (perl bindings for Glade 2.x).
perl/perl-Crypt-OpenSSL-Bignum: i486 -> i586.
perl/perl-Crypt-OpenSSL-DSA: Added (DSA using OpenSSL).
perl/perl-Crypt-OpenSSL-EC: Added (OpenSSL EC extension).
perl/perl-Crypt-OpenSSL-ECDSA: Added (perl extn for OpenSSL ECDSA).
perl/perl-Crypt-OpenSSL-RSA: i486 -> i586.
perl/perl-Crypt-OpenSSL-Random: Updated for version 0.11.
perl/perl-Data-Random: Added (Perl module to generate random data).
perl/perl-Digest-GOST: Added (perl module Digest::GOST).
perl/perl-Expect: Added (perl module).
perl/perl-GD: Added (perl bindings for GD image library).
perl/perl-Gnome2-Vte: Added (perl module Gnome2::Vte).
perl/perl-Gtk2-Ex-Simple-List: Added (perl module).
perl/perl-IO-Socket-Timeout: Added (IO::Socket::Timeout).
perl/perl-IO-Stty: Added (perl module IO::Stty).
perl/perl-IO-Tty: Updated for version 1.12.
perl/perl-MailTools: Updated for version 2.18.
perl/perl-Net-ARP: Added (Perl extension for creating ARP packets).
perl/perl-Net-DNS-SEC: Added (DNSSEC extensions to Net::DNS).
perl/perl-PerlIO-via-Timeout: Added (PerlIO::via::Timeout).
perl/perl-Test-SharedFork: Updated for version 0.35.
perl/perl-Test-TCP: Updated for version 2.17.
perl/perl-extutils-makemaker: Updated for version 7.24.
python/Flask-Cors: Updated for version 3.0.0.
python/XlsxWriter: Added (write Excel 2007+ XLSX files).
python/artifacts: Added (ForensicArtifacts.com Artifact Repository).
python/binplist: Updated for version 0.1.5.
python/colorclass: Added (ANSI color text library for Python).
python/dfdatetime: Added (Digital Forensics Date and Time).
python/dfvfs: Updated for version 20160108.
python/distorm: Added (disassembler library).
python/dulwich: Updated for version 0.14.1.
python/hg-git: Updated for version 0.8.5.
python/netifaces: Updated for version 0.10.5
python/pefile: Added (access Portable Executable files).
python/pillowfight: Added (transition from PIL to Pillow).
python/pip: Updated for version 8.1.2.
python/pipdeptree: Updated for version 0.7.0.
python/plaso: Updated for version 1.4.0.
python/prompt_toolkit: Updated for version 1.0.7.
python/pybluez: Fix download link.
python/pyparsing: Updated for version 2.1.8.
python/pyqode.qt: Fix .info file.
python/pyresample: Updated for version 1.2.5.
python/pytest: Updated for version 3.0.0.
python/pytsk: Updated for version 20160721.
python/requirements-detector: Updated for version 0.5.2.
python/virtualenv: Updated for version 15.0.3.
system/Iosevka: Updated for version 1.9.2.
system/argyllcms: Updated for version 1.8.3.
system/cantarell-fonts: Updated for version 0.0.25.
system/crmsh: Added (cluster management shell).
system/ddrescue-gui: Updated for version 1.6.1.
system/distorm3: Moved to python/distorm.
system/letsencrypt.sh: Fix tarball handling.
system/packagekit: Added (packagekit: PackageKit).
system/patchelf: Added (A utility for patching ELF binaries).
system/pdsh: Added (Parallel Distributed Shell).
system/pyarchey: Updated for version 0.7.
system/qemu-guest-agent: Added (QEMU Guest Agent daemon).
system/rsyslog: Updated for version 8.21.0.
system/rxvt-unicode: Fix SlackBuild.
system/sbsigntools: Fixed downlad links.
system/simpleburn: Updated for version 1.8.1.
system/sleuthkit: Updated for version 4.3.0.
system/ttyrec: Fix HOMEPAGE.
system/vagrant: Updated for version 1.8.5.
system/volatility: Updated for version 2.5.
system/zstd: Added (fast lossless compression).
+--------------------------+
Sat Aug 20 00:54:34 UTC 2016
academic/avogadro: Updated for version 1.2.0
academic/ent: i486 => i586.
academic/pianobooster: i486 => i586.
academic/wmcalc: New maintainer, minor fixes.
accessibility/espeak: i486 => i586.
accessibility/flite: i486 => i586.
accessibility/svkbd: i486 => i586.
accessibility/unclutter: i486 => i586.
accessibility/xdotool: i486 => i586.
accessibility/xsel: i486 => i586.
audio/alsa-tools: i486 => i586.
audio/alsacap: i486 => i586.
audio/bristol: i486 => i586.
audio/calf-ladspa: i486 => i586.
audio/calf: i486 => i586.
audio/caps: i486 => i586.
audio/clam: i486 => i586.
audio/clam_annotator: i486 => i586.
audio/clam_voice2midi: i486 => i586.
audio/cmt: i486 => i586.
audio/connie: i486 => i586.
audio/creox4: i486 => i586.
audio/ecasound: i486 => i586.
audio/eyeD3: Updated for version 0.7.9
audio/fIcy: i486 => i586.
audio/fluidsynth-dssi: i486 => i586.
audio/fmmidi: i486 => i586.
audio/foo-yc20: i486 => i586.
audio/ghostess: i486 => i586.
audio/grip2: i486 => i586.
audio/gtklick: i486 => i586.
audio/horgand: i486 => i586.
audio/invada_studio_plugins_lv2: i486 => i586.
audio/jaaa: i486 => i586.
audio/jack-keyboard: i486 => i586.
audio/jack-rack: i486 => i586.
audio/jack-tools: i486 => i586.
audio/jack_delay: i486 => i586.
audio/jackmeter: i486 => i586.
audio/jalv: i486 => i586.
audio/japa: i486 => i586.
audio/jkmeter: i486 => i586.
audio/jnoise: i486 => i586.
audio/klick: i486 => i586.
audio/lingot: i486 => i586.
audio/lsmi: i486 => i586.
audio/lv2-mda-metapiano: i486 => i586.
audio/lv2dynparam1: i486 => i586.
audio/lv2file: i486 => i586.
audio/match-vamp-plugin: i486 => i586.
audio/mda-lv2: i486 => i586.
audio/mididings: i486 => i586.
audio/midillo: i486 => i586.
audio/millennium-plugins: i486 => i586.
audio/mp3gain: i486 => i586.
audio/mp3splt-gtk: Fix typo in MAINTAINER.
audio/mp3splt: Fix typo in MAINTAINER.
audio/mp3val: i486 => i586.
audio/mpd: Updated for version 0.19.18.
audio/ngjackspa: i486 => i586.
audio/nnls-chroma: i486 => i586.
audio/oss: i486 => i586.
audio/qm-vamp-plugins: i486 => i586.
audio/qmidiroute: i486 => i586.
audio/rakarrack: i486 => i586.
audio/rev-plugins: i486 => i586.
audio/rubberband: i486 => i586.
audio/sfc: i486 => i586.
audio/sonic-visualiser: i486 => i586.
audio/sooperlooper: i486 => i586.
audio/swh-plugins-lv2: i486 => i586.
audio/tap_plugins: i486 => i586.
audio/tapiir: i486 => i586.
audio/transcribe: i486 => i586.
audio/vamp-plugin-sdk: i486 => i586.
audio/vcf_plugins: i486 => i586.
audio/vocoder-ladspa: i486 => i586.
audio/vocoder: i486 => i586.
audio/waon: i486 => i586.
audio/wineasio: i486 => i586.
audio/wmusic: New maintainer, minor fixes.
audio/xmms-jack: i486 => i586.
audio/xmms-mp4: i486 => i586.
audio/xsynth-dssi: i486 => i586.
audio/zita-ajbridge: i486 => i586.
audio/zita-dpl1: i486 => i586.
audio/zita-rev1: i486 => i586.
audio/zynjacku: i486 => i586.
desktop/glabels: Added (Label Designer).
desktop/idesk: i486 => i586.
desktop/j4-dmenu-desktop: i486 => i586.
desktop/lumina: Fix xinitrc.
desktop/peksystray: i486 => i586.
desktop/slock: Updated for version 1.3.
desktop/spectrwm: Updated for version 3.0.2.
desktop/tint2: Update script.
desktop/trayer-srg: i486 => i586.
desktop/wmblob: New maintainer, minor fixes.
desktop/wmclock: i486 => i586.
desktop/wmmon: i486 => i586.
desktop/wmtimer: New maintainer, minor fixes.
desktop/wmudmount: Updated for version 2.2, new maintainer.
desktop/wmweather+: New maintainer, minor fixes.
desktop/wmxss: New maintainer, minor fixes.
desktop/xtrlock: i486 => i586.
development/OpenCobolIDE: Updated for version 4.7.4.
development/as31: i486 => i586.
development/atasm: i486 => i586.
development/atom: Updated for version 1.9.8.
development/cc65: i486 => i586.
development/chicken: Updated for version 4.11.0.
development/dhex: i486 => i586.
development/ex-vi: i486 => i586.
development/fsharp: Don't run cert-sync (moved to mono).
development/gnulib: i486 => i586.
development/hub: Updated for version 2.2.5.
development/inform: i486 => i586.
development/ldns: Script cleanup
development/leo: Updated for version 5.3.final.
development/love-legacy072: i486 => i586.
development/love-legacy080: i486 => i586.
development/ltrace: i486 => i586.
development/mono: Updated for version 4.4.2.11.
development/mutagen: Updated for version 1.34.1.
development/nodejs: Updated for version 4.5.0.
development/obcpl: i486 => i586.
development/p4v: Updated for version 2015.2.1315639.
development/pcc: i486 => i586.
development/pyenchant: Updated for version 1.6.6 + new maintainer.
development/referenceassemblies-pcl: Added (Reference Assemblies).
development/snappy: Updated for version 1.1.3.
development/sphinx_rtd_theme: Added (sphinx theme).
development/spyder: Updated for version 2.3.9
development/squirrel-sql: Updated for version 3.7.1.
development/srecord: i486 => i586.
development/tstoolbox: Updated for version 0.12.12.8.
development/unifdef: i486 => i586.
development/xa: i486 => i586.
development/xtruss: i486 => i586.
games/adl: i486 => i586.
games/aklabeth: Added (remake of Richard Garriott's Ultima prequel).
games/alephone: i486 => i586.
games/atari++: i486 => i586.
games/atari800: i486 => i586.
games/bastet: i486 => i586.
games/brickout: i486 => i586.
games/bstone: Added (first-person shooter game).
games/burgerspace: i486 => i586.
games/ceferino: i486 => i586.
games/chocolate-doom: i486 => i586.
games/circuslinux: i486 => i586.
games/clonekeen: i486 => i586.
games/colem: i486 => i586.
games/cosmosmash: i486 => i586.
games/defendguin: i486 => i586.
games/doomretro: Adds the .desktop file and icon.
games/doomseeker: i486 => i586.
games/dunelegacy: i486 => i586.
games/dungeon: i486 => i586.
games/eduke32: Fix SDL2=auto build.
games/fizmo: Fix REQUIRES.
games/frotz: i486 => i586.
games/glbsp: i486 => i586.
games/gtkballs: i486 => i586.
games/gtklife: i486 => i586.
games/icebreaker: i486 => i586.
games/jezzball-kazzmir: i486 => i586.
games/jfsw: i486 => i586.
games/jzintv: i486 => i586.
games/kardsgt: i486 => i586.
games/koules: i486 => i586.
games/liquidwar6: i486 => i586.
games/lmarbles: i486 => i586.
games/madbomber: i486 => i586.
games/maelstrom: i486 => i586.
games/mame: i486 => i586.
games/megamario: Added (Super Mario Brothers clone).
games/mgba: Fixed MD5SUM.
games/micropolis: i486 => i586.
games/nevernoid: i486 => i586.
games/nexuiz: i486 => i586.
games/noteye: i486 => i586.
games/o2em: i486 => i586.
games/oblige-legacy4: i486 => i586.
games/oblige: i486 => i586.
games/odamex: i486 => i586.
games/openjazz: i486 => i586.
games/openmortal: i486 => i586.
games/opentyrian: i486 => i586.
games/openyahtzee: i486 => i586.
games/ostrichriders: i486 => i586.
games/pacman-arena: i486 => i586.
games/penguin-command: i486 => i586.
games/pentagram: i486 => i586.
games/pom1: i486 => i586.
games/rott: i486 => i586.
games/skulltag: i486 => i586.
games/smc: i486 => i586.
games/sms_sdl: i486 => i586.
games/snes9x: i486 => i586.
games/solarwolf: i486 => i586.
games/stratagus: i486 => i586.
games/supermariowar: i486 => i586.
games/syobonaction: i486 => i586.
games/taipan: i486 => i586.
games/tmw: Update DOWNLOAD url.
games/torcs: i486 => i586.
games/trackballs: i486 => i586.
games/transfusion: i486 => i586.
games/typhoon_2001: i486 => i586.
games/ucr: i486 => i586.
games/ufoai: i486 => i586.
games/uqm: i486 => i586.
games/vectoroids: i486 => i586.
games/wargus: i486 => i586.
games/wmquake: New maintainer, fix build.
games/wolf4sdl: i486 => i586.
games/xcowsay: i486 => i586.
games/xroar: i486 => i586.
games/xu4: i486 => i586.
games/yae: i486 => i586.
games/yahtzee: i486 => i586.
games/yar: i486 => i586.
games/z26: i486 => i586.
games/zennode: i486 => i586.
games/zoom: i486 => i586.
games/zsnes: i486 => i586.
games/ztools: i486 => i586.
gis/geographiclib-python: Added (Python geodesic routines).
gis/pyshp: Updated for version 1.2.9.
graphics/GraphicsMagick: i486 => i586.
graphics/baires: i486 => i586.
graphics/fbida: Fix typo in EMAIL.
graphics/fbv: i486 => i586.
graphics/flpsed: i486 => i586.
graphics/gifsicle: i486 => i586.
graphics/graph-easy: Updated for version 0.76.
graphics/imgmin: Added (Automated lossy JPEG optimization).
graphics/mcomix: i486 => i586.
graphics/paraview: Enable optional PythonQt embedding support
graphics/psftools: i486 => i586.
graphics/vuescan: Updated for version 9.5.54.
libraries/aqbanking: Updated for version 5.6.12.
libraries/argtable: i486 => i586.
libraries/botocore: Updated for version 1.4.47.
libraries/configobj: i486 => i586.
libraries/crossguid: Added (cross platform C++ GUID/UUID library).
libraries/dcadec: Added (DTS Coherent Acoustics decoder).
libraries/flatzebra: i486 => i586.
libraries/girara: i486 => i586.
libraries/gwenhywfar: Updated for version 4.15.3.
libraries/jbig2dec: i486 => i586.
libraries/lgi: Updated for version 0.9.1.
libraries/libfdk-aac: Update 32bit ARCH + new maintainer
libraries/libicns: i486 => i586.
libraries/libmp3splt: Fix typo in MAINTAINER.
libraries/libnfs: Updated for version 1.10.0
libraries/libpst: Fix typo in MAINTAINER.
libraries/libpst: i486 => i586.
libraries/libsigc++-legacy12: i486 => i586.
libraries/libsmf: i486 => i586.
libraries/libtsm: i486 => i586.
libraries/libuchardet: Fix DOWNLOAD url.
libraries/libwebsockets: Added (C websocket library).
libraries/ltm: i486 => i586.
libraries/lvtk: i486 => i586.
libraries/podofo: Updated for version 0.9.4
libraries/pyqode.core: Updated for version 2.10.0.
libraries/zita-convolver: i486 => i586.
misc/cwiid: i486 => i586.
misc/heyu: i486 => i586.
misc/jmri: Updated for version 3.10.1 + new maintainer.
misc/keychain: Updated for version 2.8.3
multimedia/MediathekView: Updated for version 11.
multimedia/apetag: New maintainer, minor fixes.
multimedia/devedeng: Updated for version 4.8.0.
multimedia/glyr: Updated for version 1.0.9, new maintainer.
multimedia/gpac: Updated for version 0.6.1.
multimedia/gpodder: Updated for version 3.9.0.
multimedia/l-smash: Updated for version 2.9.1, new maintainer.
multimedia/lsdvd: i486 => i586.
multimedia/mtpfs: i486 => i586.
multimedia/nted: i486 => i586.
multimedia/obs-studio: Updated for version 0.15.4 + new maintainer
multimedia/vitunes-mplayer: i486 => i586.
network/FireWorks: Updated for version 1.3.4.
network/Pafy: Updated for version 0.5.2.
network/amavisd-new: Updated for version 2.11.0.
network/authbind: i486 => i586.
network/awscli: Updated for version 1.10.57.
network/bmon: i486 => i586.
network/cicb: i486 => i586.
network/clamav-unofficial-sigs: Updated for version 5.4.1.
network/flexget: Updated for version 2.2.20.
network/httpie: Updated for version 0.9.6.
network/irssi_otr: i486 => i586.
network/museek+: i486 => i586.
network/offlineimap: Updated for version 7.0.5.
network/phpmyadmin: Updated for version 4.6.4.
network/rhapsody: i486 => i586.
network/socat: Updated for version 1.7.3.1
network/surf: i486 => i586.
network/tor-browser: Updated for version 6.0.4.
network/transmission: i486 => i586.
network/tribler: i486 => i586.
network/uTox: Updated for version 0.9.8 + new maintainer
network/uget: i486 => i586.
network/wmnd: New maintainer, minor fixes.
network/youtube-dl: Updated for version 2016.08.13.
office/calibre: Updated for version 2.64.0
office/convertlit: i486 => i586.
office/diffpdf: Added (Compare PDF Files).
office/xtrkcad: Updated for version 4.2.3b.
office/zathura-cb: i486 => i586.
office/zathura-djvu: i486 => i586.
office/zathura-pdf-mupdf: i486 => i586.
office/zathura-ps: i486 => i586.
office/zathura: i486 => i586.
perl/perl-Math-GMPq: Updated for version 0.41.
perl/perl-Module-Build: Updated for version 0.4220.
perl/perl-data-dump: i486 => i586.
perl/perl-lwp-useragent-cached: i486 => i586.
perl/perl-text-unaccent: i486 => i586.
perl/perl-xml-fast: i486 => i586.
python/Flask-Cors: Updated for version 2.1.3.
python/Pygments: Updated for version 2.1.3.
python/Scrapy: Updated for version 1.1.2.
python/fabric: Added (tool for remote execution and deployment).
python/flask-paginate: Added (Simple paginate support for flask).
python/githubpy: Added (A simple GitHub v3 API SDK for Python).
python/gmpy: i486 => i586.
python/gunicorn: Added (WSGI HTTP Server for UNIX).
python/prompt_toolkit: Updated for version 1.0.6.
python/pyliblo: i486 => i586.
python/pyqode.cobol: Added (Adds COBOL support to pyqode.core).
python/pyqode.qt: Added (Wrapper library for PyQt and PySIde).
python/python-keybinder: i486 => i586.
python/python-requests-kerberos: Updated for version 0.10.0.
python/python-requests: Update DOWNLOAD url.
python/python3-future: Added (Python 2/3 compatibility).
python/s3transfer: Updated for version 0.1.2.
python/stevedore: Updated for version 1.17.1.
ruby/rubygem-gosu: Updated for version 0.10.8.
system/a2tools: i486 => i586.
system/aha: i486 => i586.
system/arc: i486 => i586.
system/arj: i486 => i586.
system/blake2: Updated for version 20160619.
system/borgbackup: Added (deduplicating backup program).
system/cbmbasic: i486 => i586.
system/conky: Updated for version 1.10.4.
system/cpmtools: i486 => i586.
system/csh: i486 => i586.
system/d52: i486 => i586.
system/dar: Updated for version 2.5.5.
system/ded: i486 => i586.
system/dos33fsprogs: i486 => i586.
system/findpkg: Updated for version 20160710.
system/forkstat: Updated for version 0.01.14.
system/fsv: i486 => i586.
system/fsviewer: i486 => i586.
system/gphotofs: i486 => i586.
system/isomd5sum: i486 => i586.
system/kegs: i486 => i586.
system/kmscon: i486 => i586.
system/kvpm: Fix download link.
system/lbzip2: i486 => i586.
system/lhasa: i486 => i586.
system/linuxconsoletools: i486 => i586.
system/lz4: i486 => i586.
system/macutils: i486 => i586.
system/man-db: i486 => i586.
system/man-pages-es: Remove unused SLKCFLAGS.
system/mlterm: Updated for version 3.7.2.
system/pipemeter: i486 => i586.
system/polyglotman: i486 => i586.
system/read-edid: i486 => i586.
system/reptyr: i486 => i586.
system/rmw: Updated for version 2016.08.17.01a.
system/rtirq: Use ARCH=noarch.
system/sandy: i486 => i586.
system/sdl-jstest: Fix typo in MAINTAINER.
system/sdl-jstest: i486 => i586.
system/suckless-tools: i486 => i586.
system/sysdig: Updated for version 0.11.0
system/tabbed: i486 => i586.
system/trackfs: i486 => i586.
system/u3-tool: i486 => i586.
system/unac: i486 => i586.
system/unshield: i486 => i586.
system/usbmon: i486 => i586.
system/vcp: i486 => i586.
system/vinterm: i486 => i586.
system/wmgtemp: New maintainer, minor fixes.
system/xautomation: i486 => i586.
system/xonsh: Updated for version 0.4.5.
system/zerofree: i486 => i586.
+--------------------------+
Sun Aug 14 02:16:18 UTC 2016
development/cppcheck: Updated for version 1.75.
development/hhvm: Updated for version 3.14.4.
games/ds-models: /usr/bin => /usr/games.
games/mame: Fix MD5SUM.
games/sdlpop: Added (Prince of Persia rewrite).
games/wordwarvi: Fix script.
libraries/botocore: Updated for version 1.4.46.
libraries/dropbox-python: Updated for version 6.7.0.
libraries/enca: Updated for version 1.18
libraries/hdf: Fixes to build script.
libraries/irrlicht: Updated for version 1.8.4
libraries/libxml++: Removed dep.
libraries/qt5: Rename linguist desktop file
multimedia/Mopidy: Updated for version 2.0.1.
multimedia/spotify: Updated for version 1.0.36.120.g536a862f.
network/awscli: Updated for version 1.10.56.
network/flexget: Updated for version 2.2.17.
network/youtube-dl: Updated for version 2016.08.12.
python/python-requests: Updated for version 2.11.0.
system/cantarell-fonts: Use noarch.
system/rover: Fix typo + remove config.h.
+--------------------------+
Sat Aug 13 00:24:40 UTC 2016
academic/fet: Updated for version 5.30.2.
academic/reduce-algebra: Added (portable computer algebra system).
accessibility/pastebinit: Updated for version 1.5.
accessibility/unclutter: Fix gcc5 warnings.
accessibility/wgetpaste: Updated for version 2.28.
audio/eawpats: Fix HOMEPAGE.
audio/fmmidi: Updated for version 1.0.1.
audio/guitarix: Updated for version 0.35.1.
audio/match-vamp-plugin: Updated for version 1.0.
audio/nnls-chroma: Updated for version 1.1.
audio/ponymix: Updated for version 5
audio/qmidiroute: Updated for version 0.4.0.
audio/sonic-visualiser: Updated for version 2.5.
audio/transcribe: Fix DOWNLOAD, add libpng-legacy12 to REQUIRES.
audio/vamp-plugin-sdk: Updated for version 2.6.
desktop/cwp: Updated for version 1.12.1.
desktop/gxkb: Updated for version 0.7.7.
desktop/j4-dmenu-desktop: Updated for version 2.14.
desktop/lumina: Updated for version 1.0.0-p1.
desktop/obmenu-generator: Update script.
desktop/sawfish: Updated for version 1.11.91.
desktop/xdgmenumaker: Updated for version 0.9.
desktop/xtrlock: Updated for version 2.8.
development/SQLAlchemy: Add python3 support.
development/bas55: Updated for version 1.10.
development/conan: Added (distributed package manager).
development/ex-vi: Fix build.
development/fossil: Updated for version 1.35.
development/kaaedit: Updated for version 0.53.0.
development/komodo-edit: Fix ARCH detection.
development/komodo-ide: Fix ARCH detection.
development/openjdk6: Added (Open Implementation of JDK).
development/openjdk8: Added (Open Implementation of JDK).
development/openjdk: Updated for version 7u111b01.
development/pycharm: Updated for version 2016.2.1.
development/unifdef: Updated for version 2.11.
development/uz80as: Added (Micro Z80 assembler).
games/an: Updated for version 1.2.
games/bloodcm: Added (first-person shooter game).
games/burgerspace: Fix HOMEPAGE and DOWNLOAD.
games/colem: Updated for version 3.7.
games/cosmosmash: Fix HOMEPAGE and DOWNLOAD.
games/crispy-doom: Updated for version 3.4.
games/dhewm3: Updated for version 1.4.1.
games/doomretro: Added (The classic, refined DOOM source port).
games/eduke32: Updated for version 20160704_5811.
games/fbalpha: Added (libretro port of Final Burn Alpha).
games/fizmo: Updated for version 0.7.10.
games/fortune_doctor_who: Updated for version 20150503.
games/freedoom: Updated for version 0.10.1.
games/gzdoom: Updated for version 2.1.1.
games/hatari: Updated for version 1.9.0.
games/innoextract: Updated for version 1.6 (Moved from system).
games/koules: Update README with pulseaudio info.
games/libretro-fba: Removed (replaced by fbalpha).
games/libretro-lutro: Updated for version 2016.08.07_9f8464d.
games/maelstrom: Fix build.
games/mame: Updated for version 0.176.
games/mgba: Updated for version 0.4.1.
games/micropolis: Fix DOWNLOAD.
games/openyahtzee: Updated for version 1.9.3.
games/ostrichriders: Added (clone of the arcade game "Joust").
games/pangzero: Added (clone of arcade game "Super Pang").
games/pasang-emas: Updated for version 5.0.0.
games/skulltag: Add REQUIRES=libpng-legacy12.
games/smc: Update for 14.2, bump BUILD.
games/sms_sdl: Fix/enhance shell script wrapper.
games/stella: Updated for version 4.7.2.
games/torcs: Updated for version 1.3.7.
games/trigger-rally: Updated for version 0.6.4.
games/vera: Updated for version 1.23.
games/wordwarvi: Updated for version 1.0.2.
games/xarchon: Added (fantasy-themed board game).
games/xu4: Update for 14.2, bump BUILD.
games/yamagi-quake2: Updated for version 5.34.
games/zdbsp: Updated for version 1.19.
gis/GMT: Added (Generic Mapping Tools).
gis/navit: Added (gps navigation system with routing engine)
graphics/mapcrafter: Added (Minecraft map renderer).
graphics/mcomix: Updated for version 1.2.1.
graphics/paraview: Enable Xdmf3
graphics/vsxu: Updated for version 0.5.1
libraries/CherryPy: Updated for version + new maintainer.
libraries/GitPython: Add python3 support.
libraries/botocore: Updated for version 1.4.44.
libraries/cdk: Updated for version 5.0_20160131.
libraries/compiz-plugins-experimental: Fixed REQUIRES.
libraries/dropbox-python: Updated for version 6.6.2.
libraries/flatzebra: Fix HOMEPAGE and DOWNLOAD.
libraries/girara: Updated for version 0.2.6.
libraries/jbig2dec: Updated for version 0.13.
libraries/libdc1394: Updated for version 2.2.4.
libraries/libfaketime: Fixed MD5SUM.
libraries/libpst: Updated for version 0.6.67.
libraries/live555: Updated for version 2016.08.07
libraries/ltm: Updated for version 1.0.
libraries/netcdf: Fixed build with HDF4.
libraries/npth: Added (New GNU Portable Threads Library).
libraries/platform: Updated for version 2.0.1.
libraries/qwt: Updated for version 6.1.3
libraries/tinyxml2: Updated for version 4.0.1.
multimedia/aces-dev: Fixed tarball handling.
multimedia/aces_container: Fixed tarball handling.
multimedia/spotify: Updated for version 1.0.34.146.g28f9eda2.
multimedia/vlc: Updated for version 2.2.4
multimedia/youtube-viewer: Updated for version 3.2.3.
network/CherryMusic: Updated for version 0.37.2.
network/awscli: Updated for version 1.10.54.
network/bmon: Updated for version 3.9.
network/corebird: Fixed REQUIRES.
network/flexget: Updated for version 2.2.16.
network/icecat: Build with -Os to prevent crashes.
network/irssi_otr: Updated for version 1.0.1.
network/lighttpd2: Updated for version 20151204_3a4698d.
network/lighttpd: Refactor configuration, changed maintainer.
network/midori: Remove libunique from REQUIRES, cleanups.
network/nbd: Updated for version 3.14
network/ntop: Fixed build with rrdtool-1.6.0.
network/smcroute: Fixed DOWNLOAD.
network/syncthing: Updated for version 0.14.4.
network/tor: Updated for version 0.2.8.6 + new maintainer.
network/uget: Updated for version 2.0.8.
network/vivaldi: Updated for version 1.3.551.30.
network/x11vnc: Update maintainer details
network/youtube-dl: Updated for version 2016.08.10.
network/yturl: Updated for version 2.0.1.
office/CherryTree: Updated for version 0.37.3.
office/LibreOffice: Updated for version 5.2.0.4
office/convertlit: Fix lit2epub script.
office/fbpdf: Updated for version 20160804.
office/lyx: Updated for version 2.2.1.
office/mupdf: Updated for version 1.9a.
office/zathura-cb: Updated for version 0.1.5.
office/zathura-djvu: Updated for version 0.2.5.
office/zathura-pdf-mupdf: Updated for version 0.3.0.
office/zathura-ps: Updated for version 0.2.3.
office/zathura: Updated for version 0.3.6.
perl/perl-extutils-makemaker: Updated for version 7.20.
python/APScheduler: Updated for version 3.2.0.
python/Flask-Compress: Added (compress responses in your Flask app).
python/Flask-Cors: Added (Flask extension for handling CORS).
python/Flask-Login: Added (User session management for Flask).
python/Flask-RESTful: Added (framework for creating REST APIs).
python/PyGithub: Updated for version 1.27.1.
python/PythonQt: Added (Python binding for Qt).
python/aniso8601: Added (library for parsing ISO 8601 strings).
python/cfgparse: Added (Python Configuration Parser Module).
python/euca2ools: Updated for 3.3.1
python/fasteners: Added (useful locks for Python).
python/feedparser: Updated for version 5.2.1
python/flake8: Updated for version 3.0.4.
python/flask-restplus: Added (Flask extn for building REST APIs).
python/funcsigs: Added (Backport of the PEP 362).
python/monotonic: Added (implementation of time.monotonic()).
python/monty: Updated for version 0.9.0.
python/pathlib: Added (Object-oriented filesystem paths).
python/pyjwt: Added (JSON Web Token implementation in Python).
python/python-Safe: Added (Check the password strength).
python/python-certifi: Updated for version 2016.8.8.
python/python-keybinder: Updated for version 0.3.1.
python/python-patch: Added (library to parse+apply unified diffs).
python/python-requestbuilder: Updated for version 0.5.2
python/python-requests: Updated for version 2.10.0.
python/typing: Added (Type Hints for Python).
system/acpi_call: Added (kernel module for calling ACPI methods).
system/aha: Updated for version 0.4.9.
system/etckeeper: Updated for version 1.18.5.
system/isomd5sum: Updated for version 1.1.0, add Python 3 support.
system/lbzip2: Fix HOMEPAGE.
system/lhasa: Updated for version 0.3.1.
system/linuxconsoletools: Updated for version 1.5.1.
system/localepurge: Added (remove superfluous locale data).
system/macutils: Fix compiler warnings.
system/man-db: Updated for version 2.7.3.
system/man-pages-ja: Updated for version 20160715, use ARCH=noarch.
system/monit: Updated for version 5.19.0.
system/rover: Updated for version 0.4.2.
system/usbmon: Updated for version 6.1.
system/x86_energy_perf_policy: Added (Energy Savings Policy).
system/zerofree: Updated for version 1.0.4.
system/zpaq: Updated for version 7.14
+--------------------------+
Sun Aug 7 11:56:29 UTC 2016
academic/fet: Updated DOWNLOAD.
audio/oss: new maintainer.
desktop/tint2: Updated for version 0.12.12.
desktop/xvkbd: Updated for version 3.7.
development/komodo-edit: Added (Multi-Language Editor).
development/komodo-ide: Added (Multi-Language IDE).
development/sqldeveloper: Added (Oracle SQL Developer).
games/CATSFC-libretro: Removed (replaced by snes9x2005).
games/antimicro: Fixed tarball handling.
games/ecwolf: Added (an advanced source port for Wolfenstein 3D).
games/megaglest: Updated REQUIRES.
games/nethack: Update MAINTAINER.
games/pocketsnes-libretro: Removed (replaced by snes9x2002).
games/snes9x-next: Removed (replaced by snes9x2010).
games/snes9x2002: Added (ARM optimized port of SNES9x).
games/snes9x2005: Added (libretro port of SNES9x 1.43).
games/snes9x2010: Added (Port of Snes9x 1.52+ to Libretro).
games/vbam: Updated for version r1507 + new maintainer.
graphics/LDView: Updated for version 4.2.
libraries/libfaketime: Added (FakeTime Preload Library).
libraries/netcdf: Enable netcdf-4 support.
network/dropbox: Updated for version 7.4.30.
network/modsecurity-apache: Fix tarball handling.
network/openssh-krb5: Updated for version 7.3p1.
network/sshguard: Added (SSH brute-force attack protection).
office/focuswriter: Updated for version 1.5.7 + new maintainer.
perl/perl-Sidef: Update DOWNLOAD url.
python/PyGreSQL: Updated for version 5.0
python/boto3: Fixed DOWNLOAD.
python/prompt_toolkit: Updated for version 1.0.5.
system/bareos-client: Fixed tarball handling.
system/bareos: Fixed tarball handling.
system/mongodb: Updated for version 3.2.8.
system/monit: Update script + New Maintainer.
system/oldschool-pc-fonts: Added (remake of PC text mode fonts).
system/openrc-services: Updated for version 20160807.
system/openrc: Updated for version 0.21.3.
system/qtgzmanager: Updated for version 1.0.3.
system/rmw: Updated for version 2016.08.06.01a.
+--------------------------+
Fri 5 Aug 17:17:38 UTC 2016
academic/edsim51di: Moved from development.
academic/fet: Updated for version 5.30.1.
academic/freechartgeany: Updated for version 2.0.3
academic/gwyddion: Updated for version 2.45.
academic/maxima: Update MD5SUM.
academic/sage: Updated for version 7.3.
academic/wxMaxima: Updated for version 16.04.2
academic/wxmacmolplt: Updated for version 7.6.2.
audio/libebur128: Fix tarball handling.
audio/pogo: Updated for version 0.8.7.
audio/xcfa: Update README.
business/stansoft: Updated for version 7.5.
desktop/LX-Colors-Revival: Added (GTK2/GTK3/Openbox themes).
desktop/LX-Colors-themes: Update README.
desktop/bunsen-themes: Updated for version 8.3.1.
desktop/e16: Updated for version 1.0.17.
desktop/kwalletcli: Added mksh dependency.
desktop/moka-icon-theme: Updated for version 5.3.2.
desktop/neofetch: Added (simple system information script).
desktop/notification-daemon: Updated for version 3.18.2
desktop/numix-icon-theme: Updated for version 0.3.812.201606210231.
desktop/paper-gtk-theme: Added (Paper Theme Suite).
desktop/paper-icon-theme: Added (Paper Icons).
desktop/xvkbd: Update HOMEPAGE and DOWNLOAD url.
development/dpkg: Updated for version 1.18.10.
development/envytools: Added (development tools for nouveau).
development/flow: Updated for version 0.30.0.