Christian Neukirchen
62535f0fe6
lumina: update to 0.9.1.
2016-06-29 15:21:24 +02:00
Christian Neukirchen
d38bcc61d5
perl-IO-Socket-SSL: update to 2.029.
2016-06-29 15:21:24 +02:00
Christian Neukirchen
444760c76e
libabigail: update to 1.0.rc5.
2016-06-29 15:21:24 +02:00
Duncaen
fdc3149431
elixir: update to 1.3.1.
2016-06-29 12:53:42 +02:00
Juan RP
005890ce2e
rpi-userland: update to 20160629.
2016-06-29 08:43:31 +02:00
Juan RP
f10cf82e82
rpi-firmware: update to 20160629.
2016-06-29 08:42:34 +02:00
Juan RP
7e4e777828
rpi-kernel: update to 4.4.14.
2016-06-29 08:40:51 +02:00
pulux
7069b583d1
glusterfs: update to 3.8.0 ( #4394 )
2016-06-29 07:53:40 +02:00
Juan RP
c0522030ae
jsoncpp: update to 1.7.3.
2016-06-29 07:23:32 +02:00
Juan RP
93d1893618
lxcfs: update to 2.0.2.
2016-06-29 07:22:18 +02:00
Juan RP
cbe91707a1
lxc: update to 2.0.3.
2016-06-29 07:21:37 +02:00
Juan RP
74ae084271
mps-youtube: update to 0.2.7.
2016-06-29 07:20:30 +02:00
Juan RP
171c2fe007
wps-office: do not use empty vars in pkgname/version/revision.
...
Fixes xbps-checkvers segfault parsing empty vars.
2016-06-29 07:17:47 +02:00
Juan RP
adc9bb87e1
nano: update to 2.6.1.
2016-06-29 07:15:30 +02:00
Juan RP
4c9fab9411
wps-office: comment out unused var.
2016-06-29 07:14:09 +02:00
Steve Prybylski
d5aa363586
LibreCAD: update to 2.1.1.
2016-06-28 22:00:23 -04:00
Toyam Cox
ce4ab165af
Merge pull request #4396 from the-maldridge/wps-update
...
wps-office: update to 10.1.0.5672a21
2016-06-28 20:59:31 -04:00
Toyam Cox
7424d60e04
Merge pull request #4395 from the-maldridge/chrome-update
...
google-chrome: update to 51.0.2704.106
2016-06-28 20:58:16 -04:00
Michael Aldridge
21f2c8693a
wps-office: update to 10.1.0.5672a21
2016-06-28 19:41:58 -05:00
Michael Aldridge
bf90747882
google-chrome: update to 51.0.2704.106
2016-06-28 19:18:44 -05:00
Michael Gehring
94bdab31fc
lyx: update to 2.2.0.
2016-06-28 23:30:03 +02:00
Michael Gehring
b792fed413
mbedtls: update to 2.3.0.
2016-06-28 23:30:03 +02:00
Michael Gehring
8bfe05c6a1
mod_wsgi: update to 4.5.3.
2016-06-28 23:30:03 +02:00
Michael Gehring
d1badf5c49
seafile-libclient: update to 5.1.3.
2016-06-28 23:30:03 +02:00
Michael Gehring
524c6e7cd4
seafile-client-qt: update to 5.1.3.
2016-06-28 23:30:03 +02:00
Michael Gehring
5dc15e5dfc
ccnet: update to 5.1.3.
2016-06-28 23:30:03 +02:00
Michael Gehring
34c84f3a39
thefuck: update to 3.10.
2016-06-28 23:30:03 +02:00
Duncaen
57fccd8c94
gnupg2: move scdaemon to gnupg2-scdaemon
...
scdaemon is not needed for most users, because it depends on
libusb-compat and libpcsclite its nicer to have it in a seperate
package.
2016-06-28 21:40:32 +02:00
Duncaen
327e39cc94
gnupg2: add scdaemon
2016-06-28 20:59:38 +02:00
Enno Boland
367aca1a66
Merge pull request #4393 from Gottox/musl-fix-4392
...
musl: fix failure to obtain EOWNERDEAD status for process-shared robust mutexes
2016-06-28 19:51:46 +02:00
Toyam Cox
1ea2c52387
Merge pull request #4384 from diogoleal/rclone-1.30
...
rclone: update to 1.30
2016-06-28 12:38:13 -04:00
Duncaen
d9047ba1ae
gnumeric: update to 1.12.30.
2016-06-28 16:39:20 +02:00
Enno Boland (bot)
c9a2bd9739
chromium-pepper-flash: new chrome version 51.0.2704.106 (bot)
2016-06-28 14:26:10 +02:00
Enno Boland
5b058b9593
musl: fix failure to obtain EOWNERDEAD status for process-shared robust mutexes
...
Added upstream patch:
Linux's documentation (robust-futex-ABI.txt) claims that, when a
process dies with a futex on the robust list, bit 30 (0x40000000) is
set to indicate the status. however, what actually happens is that
bits 0-30 are replaced with the value 0x40000000, i.e. bits 0-29
(containing the old owner tid) are cleared at the same time bit 30 is
set.
our userspace-side code for robust mutexes was written based on that
documentation, assuming that kernel would never produce a futex value
of 0x40000000, since the low (owner) bits would always be non-zero.
commit d338b506e39b1e2c68366b12be90704c635602ce introduced this
assumption explicitly while fixing another bug in how non-recoverable
status for robust mutexes was tracked. presumably the tests conducted
at that time only checked non-process-shared robust mutexes, which are
handled in pthread_exit (which implemented the documented kernel
protocol, not the actual one) rather than by the kernel.
change pthread_exit robust list processing to match the kernel
behavior, clearing bits 0-29 while setting bit 30, and use the value
0x7fffffff instead of 0x40000000 to encode non-recoverable status. the
choice of value here is arbitrary; any value with at least one of bits
0-29 set should work just as well,
fixes #4392
2016-06-28 14:20:34 +02:00
Diogo Leal
2430a0f1a8
rclone: update to 1.30
2016-06-28 08:02:53 -03:00
bra1nwave
2808f62d26
youtube-dl: update to 2016.06.27. ( #4391 )
2016-06-28 11:40:15 +02:00
bra1nwave
b85eb8ca9b
beets: update to 1.3.19. ( #4390 )
2016-06-28 11:39:20 +02:00
Alessio Sergi
a675b8b643
Merge pull request #4388 from bra1nwave/filezilla
...
filezilla: update to 3.19.0.
2016-06-28 11:34:39 +02:00
Diogo Leal
83e096628c
buku: update to 2.2 ( #4385 )
2016-06-28 11:33:37 +02:00
Andrea Brancaleoni
013032e5bc
fcron: update to 3.2.1.
2016-06-28 09:23:56 +02:00
Andrea Brancaleoni
56bb3cfb2c
winetricks: update to 20160627.
2016-06-28 09:23:31 +02:00
bra1nwave
cddd8439a2
filezilla: update to 3.19.0.
2016-06-28 08:36:40 +02:00
Duncaen
531b4c60fb
opendoas: update to 0.3.2.
2016-06-27 18:55:43 +02:00
Alessio Sergi
f0a2dbdcd4
libvncserver: update to 0.9.10, moved to github
2016-06-27 13:30:33 +02:00
Alessio Sergi
971477deb6
haproxy: update to 1.6.6
...
Fix CVE-2016-5360.
2016-06-27 13:26:53 +02:00
Alessio Sergi
7d2b86bcf5
lvm2: update to 2.02.158
2016-06-27 13:24:38 +02:00
Christian Neukirchen
3c9fa1c3de
netpbm: update to 10.75.00.
2016-06-27 11:58:59 +02:00
Christian Neukirchen
6eee9a76a0
hunspell-en_US: update to 2016.06.26.
2016-06-27 11:58:59 +02:00
Alessio Sergi
d1acb5747b
python-numpy: update to 1.11.1
2016-06-27 11:11:55 +02:00
Alessio Sergi
0ef77bc976
python-gmpy2: update to 2.0.8
2016-06-27 11:02:08 +02:00