Frederik Rietdijk
be7dce488a
patsy: init at 0.3.0
2015-07-04 15:22:56 +02:00
William Casarin
9d85874aeb
lmdb: lightning memory-mapped database
2015-07-04 05:06:29 -07:00
lethalman
7446fb80c2
Merge pull request #8632 from FRidh/pytz
...
pytz: 2013.9 -> 2015.4
2015-07-04 13:57:31 +02:00
Frederik Rietdijk
e0d32691a5
pytz: 2013.9 -> 2015.4
2015-07-04 13:55:03 +02:00
lethalman
6354ed444f
Merge pull request #8597 from aflatter/nodejs-darwin
...
nodejs: Don't apply no-darwin-cflags
2015-07-04 13:51:39 +02:00
lethalman
8722e5453e
Merge pull request #8584 from robbinch/pkg-python-atomiclong
...
python-packages: Add atomiclong.
2015-07-04 13:22:27 +02:00
lethalman
2d49c104a3
Merge pull request #8623 from FRidh/cytoolz
...
cytoolz: init at 0.7.3
2015-07-04 13:08:15 +02:00
lethalman
39722b552e
Merge pull request #8622 from FRidh/toolz
...
toolz: init at 0.7.2
2015-07-04 13:07:16 +02:00
Arseniy Seroka
093a8994f9
Merge pull request #8624 from ambrop72/minidlna-update
...
minidlna 1.1.4
2015-07-04 13:59:32 +03:00
Arseniy Seroka
36a7b25282
Merge pull request #8608 from datakurre/datakurre-master-dot2tex
...
dot2tex: init at 2.9.0
2015-07-04 13:58:29 +03:00
Arseniy Seroka
a9a2868095
Merge pull request #8626 from ts468/upstream.chaps
...
New: chaps: PKCS #11 implementation with TPM backend
2015-07-04 13:58:06 +03:00
Thomas Strobel
b73e917237
chaps: init at version 0.42-6812
...
Chaps is a PKCS #11 implementation with TPM backend.
2015-07-04 12:53:09 +02:00
Asko Soukka
198ea49d8a
dot2tex: init at 2.9.0
2015-07-04 12:56:30 +03:00
Pascal Wittmann
faa468354f
Merge pull request #8621 from deepfire/master
...
libev: make the url stable
2015-07-04 11:29:29 +02:00
Pascal Wittmann
11756cf7ac
Merge pull request #8628 from Havvy/iojs
...
Update io.js (2.3.1->2.3.3)
2015-07-04 10:45:25 +02:00
Frederik Rietdijk
0a3e430e85
toolz: init at 0.7.2
2015-07-04 09:57:31 +02:00
Frederik Rietdijk
7aacf74cc7
cytoolz: init at 0.7.3
2015-07-04 09:56:36 +02:00
Charles Strahan
737de61912
urxvt-font-size: init
2015-07-04 03:17:52 -04:00
Ambroz Bizjak
42a5ad5c5e
minidlna: 1.0.25 -> 1.1.4
...
Changes:
- gettext is needed to build
- Switched to using non-legacy ffmpeg.
- Removed ffmpeg stuff from include path since it causes build errors related to
a time.h header.
- Removed unneeded patch.
- Adjusted NixOS service due to the binary being renamed.
2015-07-04 09:16:28 +02:00
lassulus
f3bd641203
zandronum: 2.0 -> 2.1
2015-07-03 23:30:52 -07:00
Ryan Scheel (Havvy)
1b9737992b
Update io.js (2.3.1 -> 2.3.3)
2015-07-04 07:42:44 +02:00
William A. Kennington III
e2136f6fec
Merge pull request #8625 from ts468/upstream.leveldb
...
Leveldb: export helper functions of leveldb
2015-07-03 20:04:27 -07:00
Charles Strahan
44594e851c
xsensors: init at 0.70
2015-07-03 22:55:10 -04:00
Arseniy Seroka
4726690a74
qtcreator: fix hash
2015-07-04 03:38:53 +03:00
aszlig
bc5ce1f1b0
chromium: Update stable and beta channels.
...
Overview of the updated versions:
stable: 43.0.2357.125 -> 43.0.2357.130
beta: 44.0.2403.52 -> 44.0.2403.61
For the beta channel the following changes were necessary:
* Drop all patches which were added in c290595
because they apply to
44.0.2403.52 only. The shipped version of Blink was older than the
one used for Chromium itself and thus contained just the
cherry-picked patches from upstream Blink.
* The ffmpegsumo library is now statically linked the same way as in
the dev version, so let's not try to put it into the output store
path.
All channels were built successfully on my Hydra at:
https://headcounter.org/hydra/eval/187176
VM tests did also pass and can be found at:
x86: https://headcounter.org/hydra/build/707636
x86_64: https://headcounter.org/hydra/build/707637
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-07-04 02:31:45 +02:00
aszlig
7e6d6e034d
chromium: Disable setuid sandbox without errors.
...
Just silencing the error will not prevent Chromium from trying to start
up the SUID sandbox anyway, thus flooding stderr with:
LaunchProcess: failed to execvp:
After digging a bit in the source code I found out that the SUID sandbox
binary is indeed used, but only for setting oom_score_adj within the
user namespace (as "root"). So let's build the sandbox binary and of
course don't set setuid bit.
These annoying error messages were originally introduced by 0aad4b7
and
I'm deeply sorry for annoying you guys out there with them.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-07-04 02:31:45 +02:00
aszlig
a80437e236
chromium: Remove out-of-tree sandbox derivation.
...
Since 0aad4b7
, we no longer need to have an external sandbox binary,
because the upstream implementation of the user namespace sandbox no
longer needs an external sandbox binary.
In our implementation of the user namespace sandbox, we (ab)used the
setuid sandbox to run non-setuid and set up user namespaces instead.
Because our implementation is no longer needed, we can safely drop the
external binary entirely.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-07-04 02:31:44 +02:00
aszlig
97ddd04ca9
chromium: Remove obsolete sandbox_userns_36.patch.
...
The file is no longer referenced since 6a8afa4
and thus can be safely
dropped.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-07-04 02:31:44 +02:00
Arseniy Seroka
b152a0b094
Merge pull request #8618 from taku0/firefox-bin-39.0
...
firefox-bin: 38.0.5 -> 39.0
2015-07-04 03:09:03 +03:00
Arseniy Seroka
8efa25b5e3
Merge pull request #8596 from akaWolf/master
...
qtcreator: 3.2.1 -> 3.4.2
2015-07-04 03:08:19 +03:00
taku0
443e9843eb
firefox-bin: 38.0.5 -> 39.0
2015-07-04 09:06:35 +09:00
Arseniy Seroka
1fd18a0d86
Merge pull request #8627 from kquick/fix/htmlize-source-location
...
htmlize: update source location
2015-07-04 03:04:43 +03:00
Arseniy Seroka
14ceec7c26
Merge pull request #8616 from lihop/vim-plugins
...
vimPlugins: add vim-sleuth and CSApprox
2015-07-04 02:59:53 +03:00
Arseniy Seroka
f71b7f08af
Merge pull request #8579 from jraygauthier/jrg/i686_linux_libspotify
...
Add support for libspotify on `i686-linux`.
2015-07-04 02:54:59 +03:00
Kevin Quick
882f3ad0db
htmlize: update source location
2015-07-03 15:33:26 -07:00
Thomas Strobel
91b85236d0
Virtualization: add XEN/KVM related drivers for Windows
2015-07-04 00:14:05 +02:00
Thomas Strobel
7e1be588bf
Leveldb: export helper functions of leveldb
2015-07-03 23:04:35 +02:00
Kosyrev Serge
c1dd5018cc
libev: make the url stable
2015-07-03 20:08:31 +03:00
Leroy Hopson
b0e6cedf6e
vimPlugins: add vim-sleuth
2015-07-04 02:19:57 +12:00
Leroy Hopson
a28f0340e1
vimPlugins: add CSApprox
2015-07-04 02:19:57 +12:00
Pascal Wittmann
d5275c70c3
mcabber: update from 0.10.3 to 1.0.0
2015-07-03 10:18:48 +02:00
lethalman
5a2d1fedbc
Merge pull request #8615 from kamilchm/albatross
...
New GTK theme - Albatross from Shimmer Project
2015-07-03 09:57:16 +02:00
Edward Tjörnhammar
6257425dab
linuxPackages.nvidia_x11_legacy340: fix cr4 references
...
Patch was copied from here:
https://devtalk.nvidia.com/default/topic/813458/linux-4-0-rc1-346-47-build-error-_cr4-functions-fix/
Reference to kernel change, also noted in the forum post:
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/arch/x86/include/asm/paravirt.h?id=1e02ce4cccdcb9688386e5b8d2c9fa4660b45389
2015-07-03 09:32:14 +02:00
Kamil Chmielewski
6db7437a64
New GTK theme - Albatross from Shimmer Project
...
http://shimmerproject.org/our-projects/albatross/
2015-07-03 08:40:40 +02:00
Tobias Geerinckx-Rice
8e16c57424
nox: show trace for evaluation errors
...
Backports upstream commit 8900531.
2015-07-03 04:52:06 +02:00
Tobias Geerinckx-Rice
dfdcbb3640
python-packages: prompt_toolkit 0.41 -> 0.42
2015-07-03 04:13:02 +02:00
Tobias Geerinckx-Rice
1869f171fd
stress-ng: 0.04.07 -> 0.04.10
2015-07-03 04:08:49 +02:00
Asko Soukka
278287a99b
emacs: fix to use \${gettext}/share/locale/locale.alias
2015-07-03 03:18:15 +03:00
Arseniy Seroka
c5245300e2
Merge pull request #8587 from matthiasbeyer/update-gpgme
...
gpgme: 1.5.4 -> 1.5.5
2015-07-02 19:44:55 +03:00
William A. Kennington III
7735b2e4c5
udisks: 2.1.4 -> 2.1.6
2015-07-02 09:05:15 -07:00
Thomas Strobel
31ba3ab30d
pam_mount: version update: 2.14 -> 2.15
2015-07-02 16:49:35 +02:00
Thomas Strobel
649697ddcf
Xen: add XEN 4.5.1
2015-07-02 16:37:03 +02:00
Thomas Strobel
6bd694321d
Xen: enable Spice/QXL + add libhvm + minor fixes
2015-07-02 16:33:01 +02:00
Pascal Wittmann
a5360c5b6e
libbladeRF: update from 1.1.0 to 1.4.0
2015-07-02 16:25:24 +02:00
Eelco Dolstra
f3e2b31297
blender: Update to 2.75
...
(cherry picked from commit 36779d90e2b7e93ec5387cc5b5d106a037eb3d11)
2015-07-02 15:36:46 +02:00
Eelco Dolstra
24d922ec3a
openimageio: Update to 1.4.16 and fix name
...
(cherry picked from commit 17994d9e54448d71246f1221b188118fa7653ff7)
2015-07-02 15:36:42 +02:00
Eelco Dolstra
05baf485f6
ilmbase, openexr: Use fetchurl
...
Also, enable parallel building.
(cherry picked from commit 6c06d7467edea0a5163aeb53f72750abcb044bbe)
2015-07-02 15:36:37 +02:00
aszlig
b65d351c30
duperemove: Update from 0.09.beta2 to 0.09.4.
...
Also switches to fetchFromGitHub to remove the need to depend on Git for
fetching the source tarball.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2015-07-02 12:28:26 +02:00
Pascal Wittmann
27e0488e11
Merge pull request #8421 from travisbhartwell/update/atom
...
atom: 0.187.0 -> 1.0.0
2015-07-02 11:37:33 +02:00
Alexander Flatter
60c33c16a0
nodejs: Don't apply no-darwin-cflags
...
The no-darwin-cflags patch does not apply cleanly anymore, but
apparently it's also not necessary.
2015-07-02 11:11:51 +02:00
Arseniy Seroka
afa1f5ba22
Merge pull request #8586 from vbgl/ocaml-updates
...
Ocaml package updates
2015-07-02 12:06:29 +03:00
Artjom Vejsel
20dadbe525
qtcreator: 3.2.1 -> 3.4.2
2015-07-02 09:08:13 +03:00
William A. Kennington III
54022375eb
zfs_git: 2015-06-22 -> 2015-07-01
2015-07-01 22:52:09 -07:00
William A. Kennington III
f6f9b9574d
zfs: 0.6.4.1 -> 0.6.4.2
2015-07-01 22:50:49 -07:00
William A. Kennington III
ca5c1e4187
spl_git: 2015-06-10 -> 2015-06-29
2015-07-01 22:49:36 -07:00
William A. Kennington III
4fc07740c6
spl: 0.6.4.1 -> 0.6.4.2
2015-07-01 22:48:21 -07:00
Tobias Geerinckx-Rice
1ea70323d6
mcelog: 120 -> 121
2015-07-02 03:35:35 +02:00
Tobias Geerinckx-Rice
4023da6237
ccache: drop unnecessary perl dependency
...
Backport a one-line patch to remove the test suite's dependency on
perl, which, while not exactly heavy, is unnecessary.
2015-07-02 03:35:35 +02:00
Arseniy Seroka
bc9079dc53
Merge pull request #8589 from matthiasbeyer/update-klaus
...
klaus: 0.4.9 -> 0.4.10
2015-07-02 03:16:32 +03:00
Arseniy Seroka
e18f001241
Merge pull request #8588 from matthiasbeyer/update-cloc
...
cloc: 1.62 -> 1.64
2015-07-02 03:16:15 +03:00
Arseniy Seroka
fd2ee86a1a
Merge pull request #8575 from i-bot/update/eclipse-sdk
...
eclipse-sdk: 4.4.2 -> 4.5
2015-07-02 03:15:58 +03:00
Thomas Tuegel
32a1be47a2
Merge branch 'qt5'
2015-07-01 16:59:14 -05:00
Pascal Wittmann
b6db9b9553
src: update from 0.13 to 0.19
2015-07-01 23:43:17 +02:00
Pascal Wittmann
50bc786ce6
Merge pull request #8591 from maurer/ulex-mac
...
ulex: enable mac building
2015-07-01 23:19:35 +02:00
Matthew Maurer
028f6b3b62
ulex: enable mac building
...
I've tested that ulex builds (and works) on OSX, and see no reason
it would not do so on other platforms, so I'm lifting the linux
restriction in platforms.
2015-07-01 20:17:03 +00:00
Matthias Beyer
279057da8d
klaus: 0.4.9 -> 0.4.10
2015-07-01 20:47:04 +02:00
Matthias Beyer
ab9e853801
cloc: 1.62 -> 1.64
2015-07-01 20:42:44 +02:00
Matthias Beyer
c148309f94
gpgme: 1.5.4 -> 1.5.5
2015-07-01 20:42:30 +02:00
Pascal Wittmann
87836a2a21
Merge pull request #6314 from matthiasbeyer/add-khard
...
Add package: khard
2015-07-01 20:30:34 +02:00
Vincent Laporte
2663f24a48
ocp-index: 1.1.1 -> 1.1.2
2015-07-01 20:23:19 +02:00
Vincent Laporte
ba4ddf51ef
ocaml-uri: 1.9.0 -> 1.9.1
2015-07-01 20:23:19 +02:00
Vincent Laporte
9a97c3c7ae
ocaml-stringext: 1.3.0 -> 1.4.0
2015-07-01 20:23:19 +02:00
Vincent Laporte
dab57252b1
ocaml-qcheck: init at 0.4.0.1
2015-07-01 20:23:19 +02:00
Vincent Laporte
af7b23649a
ocaml-re: 1.4.0 -> 1.4.1
2015-07-01 20:23:19 +02:00
Vincent Laporte
ee34bde5e5
ocaml-csv: 1.3.3 -> 1.4
2015-07-01 20:23:19 +02:00
Pascal Wittmann
f5c91c445f
checkstyle: update from 6.8 to 6.8.1
2015-07-01 20:21:33 +02:00
Matthias Beyer
95578b07f7
khard: init at 0.4.0
2015-07-01 20:06:06 +02:00
Thomas Tuegel
036f11f323
qt5: set location to qmake in setup-hook
2015-07-01 12:14:43 -05:00
Thomas Tuegel
9333155666
qt5: set paths correctly
2015-07-01 12:14:33 -05:00
Pascal Wittmann
3eafad1a3c
vimpc: refactor and adopt
2015-07-01 18:30:55 +02:00
Arseniy Seroka
2bcd1dff75
Merge pull request #8582 from dwe11er/update-virt-manager
...
virt-manager: 1.1.0 -> 1.2.1
2015-07-01 19:07:05 +03:00
Robbin C
1969397ead
atomiclong: init at 0.1.1.
2015-07-01 22:31:34 +08:00
Arseniy Seroka
9661e477bc
Merge pull request #8563 from akaWolf/master
...
Updated qtox to the last version
2015-07-01 17:16:16 +03:00
Shea Levy
dd9530c819
Merge remote-tracking branch 'projectorhq/riemann-tools'
...
Add riemann-tools package and service
2015-07-01 08:45:33 -04:00
Shea Levy
145768bf9b
Unmaintain a bunch of packages
2015-07-01 08:11:05 -04:00
Artjom Vejsel
25ee65de97
qtox: 20150128 -> 20150624
2015-07-01 14:39:04 +03:00
Artjom Vejsel
68f4a0f0ea
libtoxcore: added new-api version
2015-07-01 14:38:56 +03:00
Artjom Vejsel
6a6ecde159
filter-audio library: init at 20150624
2015-07-01 14:37:59 +03:00
Arseniy Seroka
6f6be9bf2a
Merge pull request #8578 from joachifm/xapian-1_2_21
...
xapian: 1.2.19 -> 1.2.21
2015-07-01 14:31:41 +03:00
Arseniy Seroka
2fa1ba7683
Merge pull request #8577 from joachifm/recoll-1_20
...
recoll: 1.18.1 -> 1.20.6
2015-07-01 14:31:15 +03:00