1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
Commit graph

64525 commits

Author SHA1 Message Date
Domen Kožar af25cc9427 fix virtviewer build 2015-12-28 22:39:22 +01:00
Domen Kožar 4e4931507b fix mesos build, fixes #11638 2015-12-28 22:28:38 +01:00
Peter Simons f3aa927b70 Merge pull request #11991 from dezgeg/pr-openssh-purity
openssh: Compile with '--with-pid-dir' to improve build purity
2015-12-28 21:49:36 +01:00
Antoine R. Dumont (@ardumont) fddf0dfa49 Remove deferred's manual derivation
11503 related
2015-12-28 20:29:54 +01:00
Antoine R. Dumont (@ardumont) b863b5fc35 Remove yasnippet's manual derivation
11503 related
2015-12-28 20:28:48 +01:00
Thomas Tuegel 36a08ce5a0 arpack: 3.2.0 -> 3.3.0 2015-12-28 11:44:03 -06:00
Tuomas Tynkkynen 919d44d29f openssh: Compile with '--with-pid-dir' to improve build purity
The configure script tries to probe whether /var/run exists when
determining the location for the pid file, which is not very nice when
doing chroot builds. Just set it explicitly to avoid the problem.

For reference, the culprit in configure.ac:
````
piddir=/var/run
if test ! -d $piddir ; then
        piddir=`eval echo ${sysconfdir}`
        case $piddir in
                NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
        esac
fi

AC_ARG_WITH([pid-dir],
        [  --with-pid-dir=PATH     Specify location of ssh.pid file],
...

````

Also, use the `install-nokeys` target in installPhase so we avoid
installing useless host keys into $out/etc/ssh and improve built purity
as well.
2015-12-28 18:40:21 +02:00
Peter Simons 2ed4f9a342 Merge pull request #11977 from rycee/debundle/anki
anki: major refactor
2015-12-28 17:23:14 +01:00
Peter Simons de545f8b29 Merge pull request #11984 from mayflower/update-strace
strace: 4.10 -> 4.11
2015-12-28 17:20:30 +01:00
Peter Simons a1a16c5a92 Merge pull request #11990 from mayflower/update-libressl
libressl_2_2: 2.2.4 -> 2.2.5
2015-12-28 17:20:10 +01:00
Peter Simons ef656e469e Merge pull request #11980 from ArdaXi/fix-gpgkey2ssh
Make gpgkey2ssh use absolute path to gpg2, fixes #11912
2015-12-28 17:12:51 +01:00
Peter Simons 1a07ecf9c5 Add LTS Haskell 3.20. 2015-12-28 13:25:45 +01:00
Peter Simons 9ca37a8a4b haskell-text: doCheck=false override is now generated by hackage2nix
This is necessary to break an finite recursion in the test suite dependencies.
2015-12-28 13:19:28 +01:00
Peter Simons 3af72cf6a3 hackage-packages.nix: update Haskell package set
This update was generated by hackage2nix v20151217-3-gd4ae18a using the following inputs:

  - Nixpkgs: 236677809b
  - Hackage: 62b6b580fb
  - LTS Haskell: d3e5ae70f9
  - Stackage Nightly: ef03f60b53
2015-12-28 13:19:11 +01:00
Domen Kožar 0fa8f6b36b nodePackages_0_5: don't recurseIntoAttrs
Two reasons for this change:

- most of 5.0 packages don't build yet

- node packages are memory intensive and block Hydra evaluation
  (Too many heap sections: Increase MAXHINCR or MAX_HEAP_SECTS)

PS: Removing node packages from evaluation goes from 7.5G down to
4.6G for whole nixos release job.

See #3594 and #11865
2015-12-28 12:16:22 +01:00
Kamil Chmielewski cb0ddd9d6a qtile: 0.10.2 -> 0.10.3 2015-12-28 11:02:05 +01:00
Domen Kožar 688ff0c0dc Merge pull request #11992 from dezgeg/pr-update-diffoscope
diffoscope: 29 -> 44
2015-12-28 07:46:12 +01:00
Tuomas Tynkkynen 5120601c28 yle-dl: init at 2.9.1 2015-12-28 06:05:01 +02:00
Dan Peebles 7195e6e14f goPackages.hugo: init at 0.15
Also had to add tons of other packages used as dependencies
2015-12-27 22:43:12 -05:00
Tuomas Tynkkynen eae60d2f40 diffoscope: Add more tools to the runtime path 2015-12-28 02:28:01 +02:00
Tuomas Tynkkynen 7e85fdc6df diffoscope: 29 -> 44
Relevant changes:
 - Python version switched to Python 3
 - ssdeep library got replaced with tlsh
 - the 'magic' Python package got replaced with a different one
 - Minor build system improvements == less work for us
2015-12-28 02:27:44 +02:00
Tuomas Tynkkynen f5b6ced7ec pythonPackages.tlsh: init at 3.4.1
This C extension is a bit funky since it needs cmake to be run to
generate some header file before it can be built.
2015-12-28 02:27:44 +02:00
Tuomas Tynkkynen c0aada1e1f rpm: Hack fix finding libpython when compiling for Python 3
Currently, building RPM with `python = python3` causes this:

checking for a Python interpreter with version >= 2.6... python3
checking for python3... /nix/store/dykqxnrwiz9drlcv2wy8lpvl3xvklx0g-python3-3.4.3/bin/python3
checking for python3 version... 3.4
checking for Python.h... yes
checking for library containing Py_Main... no
configure: error: missing python library

That comes from this snippet in configure.ac:
    AC_SEARCH_LIBS([Py_Main],[python${PYTHON_VERSION} python],[
      WITH_PYTHON_LIB="$ac_res"
    ],[AC_MSG_ERROR([missing python library])
    ])

So it's looking for (e.g) `libpython3.4.so` wheras we have `libpython3.4m.so`.
Patching the configure script to match seems to make that work (although
I don't really understand what the heck is this 'm' business about).
2015-12-28 02:16:23 +02:00
Peter Simons 71e0a6ae4f Merge pull request #11947 from exi/taglib_extas-fix
taglib-extras: make taglib-extras work with taglib > 1.9
2015-12-27 23:26:46 +01:00
Peter Simons f1cacf5de3 Merge pull request #11986 from mayflower/update-apache
apacheHttpd: 2.4.17 -> 2.4.18
2015-12-27 23:25:42 +01:00
Robin Gloster bb223bc3ad libressl_2_2: 2.2.4 -> 2.2.5 2015-12-27 22:12:52 +00:00
Tobias Geerinckx-Rice 4ef9b7558f saneBackendsGit: 2015-12-20 -> 2015-12-27 2015-12-27 22:56:43 +01:00
Robin Gloster a219778acc dhcpcd: 6.9.3 -> 6.9.4 2015-12-27 21:40:09 +00:00
Robin Gloster 566c06c5a7 apacheHttpd: 2.4.17 -> 2.4.18 2015-12-27 21:31:30 +00:00
Arseniy Seroka de124aa531 Merge pull request #11981 from codsl/torbrower-5.0.6
torbrowser: 5.0.4 -> 5.0.6
2015-12-28 00:25:03 +03:00
Tobias Geerinckx-Rice 330b89c68b crda: use PREFIX instead of DESTDIR
Otherwise, `$out/lib/udev/rules.d/85-regulatory.rules` will still refer to a
non-existent `/sbin/crda`.
2015-12-27 21:43:26 +01:00
Tobias Geerinckx-Rice f50a719a4d wireless-regdb: licenses.{free -> isc}, apparently 2015-12-27 21:43:26 +01:00
Robin Gloster 7de67f48a5 thinkfan: 0.8.1 -> 0.9.2 2015-12-27 20:27:56 +00:00
Robin Gloster 0cfa4fdbd4 strace: 4.10 -> 4.11 2015-12-27 20:25:29 +00:00
Arseniy Seroka e5057ef8de Merge pull request #11973 from wedens/rtv_1_8_0
rtv: 1.7.0 -> 1.8.0
2015-12-27 23:15:31 +03:00
Arda Xi 7c17302848 Make gpgkey2ssh use absolute path to gpg2, fixes #11912 2015-12-27 20:57:55 +01:00
Tobias Geerinckx-Rice ee0fae473c crda: init at 3.18 2015-12-27 19:00:42 +01:00
Tobias Geerinckx-Rice b88abaaf5e wireless-regdb: init at 2015-12-14 2015-12-27 19:00:42 +01:00
Michael Raskin 3570bc30af lilypond: add a workaround for fontforge version detection
A part of Fontforge store path was taken as a part of the version by
configure script leading to a version check failure.
2015-12-27 18:43:58 +01:00
Thomas Tuegel 00aac09d24 melpaPackages: actually build latest packages 2015-12-27 11:05:53 -06:00
Thomas Tuegel 688c005608 melpaBuild: update package-build.el 2015-12-27 10:59:27 -06:00
Thomas Tuegel 74a1b20108 melpa-stable-packages 2015-12-27 2015-12-27 10:35:34 -06:00
Thomas Tuegel 9602a20835 melpa-packages 2015-12-27 2015-12-27 10:14:57 -06:00
Robert Helgesson 5558dc828c anki: major refactor
This refactoring changes a number of things:

 - use system copies of Python libraries BeautifulSoup, and HTTPLIB2,

 - custom install to avoid installation of unnecessary files and poor
   directory structure, and

 - add patch for sorting out file paths, in particular this fixes
   localization.
2015-12-27 16:18:45 +01:00
Thomas Tuegel 3eda86cfea elpa-packages 2015-12-27 2015-12-27 08:33:28 -06:00
Michael Raskin 56aa0ff1d9 runzip: init at 1.4 2015-12-27 14:23:52 +01:00
Domen Kožar bd3ef3d1be Merge pull request #11971 from Denommus/master
Adding which and curl as dependencies to playonlinux
2015-12-27 11:04:13 +01:00
Domen Kožar 3c06503067 Merge pull request #11968 from benley/patch-2
autossh: build on darwin too
2015-12-27 11:03:13 +01:00
codsl 8fb46420ef torbrowser: 5.0.4 -> 5.0.6 2015-12-27 09:31:23 +00:00
wedens d776afef09 rtv: 1.7.0 -> 1.8.0 2015-12-27 14:02:21 +06:00
codsl 42557425bc tor: 0.2.7.5 -> 0.2.7.6 2015-12-27 07:20:14 +00:00
Vladimír Čunát 39c43bc6e2 archiveopteryx: improve install paths, parallel build 2015-12-27 08:19:19 +01:00
Tobias Geerinckx-Rice 5d03506df7 dvdisaster: run tests & build in parallel
It seems like a good idea to test back-up software...
2015-12-27 06:37:00 +01:00
Tobias Geerinckx-Rice d4406237a9 dvdisaster: 0.72.6 -> 0.79.5 2015-12-27 06:37:00 +01:00
Yuri Albuquerque 9c6fecbda0 playonlinux: needs which and curl during runtime 2015-12-27 01:33:06 -04:00
Yuri Albuquerque 5cfeedc914 fontforge: needs pango on Linux, too 2015-12-27 01:33:06 -04:00
Benjamin Staffin bb3a2aa8eb autossh: build on darwin too
Tested it out just now - seems like it works fine.
2015-12-26 13:46:34 -08:00
Tobias Geerinckx-Rice 8b4273a65d saneBackends: add generic extraFirmware support
This usurps the model-specific gt68xxFirmware and snapscanFirmware,
which are still supported for backwards compatibility – hopefully
not forever.
2015-12-26 19:50:17 +01:00
Tobias Geerinckx-Rice c05165ba5c saneBackends: don't add epson2 to dll.conf
It's already in there by default.
2015-12-26 19:50:17 +01:00
Tobias Geerinckx-Rice cf699caf4d saneBackends: don't add option for 1 udev rule 2015-12-26 19:50:17 +01:00
Tobias Geerinckx-Rice f3048aed1d eid-viewer: 4.1.4 -> 4.1.9 2015-12-26 19:50:17 +01:00
Reno Reckling e94139f8c8 Add comments identifying workarounds 2015-12-26 18:42:03 +01:00
Reno Reckling a25de32033 cantata: fix taglib search 2015-12-26 18:00:32 +01:00
Reno Reckling 4400f01c0b amarok: fix taglib search 2015-12-26 18:00:20 +01:00
Peter Simons d9ad002b2c Prefer GnuPG 2.0.x by default.
"nix-env -iA gnupg" installs the 2.0.x version of GNU Privacy Guard. This patch
ensures that "nix-env -i gnupg" chooses the same version, instead of installing
GnuPG 2.1.x, which is considered a "development version".

Closes https://github.com/NixOS/nixpkgs/issues/11899.
2015-12-26 13:42:53 +01:00
Franz Pletz 0e07172c6d bind: Fix patching Makefile.in
There is no postPatchPhase.
2015-12-25 21:39:56 -05:00
Robin Gloster 59ed410d6d fix ftp.mozilla.org URLs
The old URLs time out.
2015-12-26 02:33:50 +00:00
Arseniy Seroka 37d0947e0c Merge pull request #11841 from phunehehe/archiveopteryx
add archiveopteryx 3.2.0
2015-12-26 00:36:55 +03:00
Charles Strahan 9e34985430 w3m: use Arch patches
Fix the built-in help (perl.patch)
  https://bugs.archlinux.org/task/45608

Properly link w3mimgdisplay to x11
  https://bbs.archlinux.org/viewtopic.php?id=196093

Fix rendering bug in w3mimgdisplay (w3m_rgba.patch)
  https://github.com/hut/ranger/issues/86

Don't ignore input tags with invalid types (form_unkown.patch)
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615843

Fix a segfault when using https (https.patch)
  https://bugzilla.redhat.com/show_bug.cgi?id=707994
2015-12-25 15:26:14 -05:00
Arseniy Seroka 230c468eb6 Merge pull request #11906 from Painted-Fox/maildir-deduplicate
Add the python maildir-deduplicate package.
2015-12-25 17:40:25 +03:00
Arseniy Seroka 801d4298dc Merge pull request #11938 from NeQuissimus/kotlinb4hf
kotlin: 1.0.0-beta-4583 -> 1.0.0-beta-4584
2015-12-25 17:27:06 +03:00
Arseniy Seroka 93d26d7206 Merge pull request #11935 from taku0/thunderbird-bin-38.5.0
thunderbird-bin: 38.4.0 -> 38.5.0
2015-12-25 17:26:54 +03:00
Arseniy Seroka 0b6f76a1d3 Merge pull request #11934 from makefu/cvs2svn
cvs2svn: 2.0.1 -> 2.4.0
2015-12-25 17:26:43 +03:00
Arseniy Seroka 6a9c0a4010 Merge pull request #11933 from taku0/firefox-bin-43.0.2
firefox-bin: 43.0.1 -> 43.0.2
2015-12-25 17:26:17 +03:00
Arseniy Seroka 97ece3b66b Merge pull request #11932 from leenaars/patch-3
blink: 1.4.1 -> 1.4.2
2015-12-25 17:26:08 +03:00
Reno Reckling 5303351c72 make taglib-extras work with taglib > 1.9 2015-12-25 13:56:26 +01:00
Dan Peebles 6878b2b21d libvirt: make it build on darwin
Not sure if it works, but it no longer fails miserably at build time
2015-12-24 23:34:47 -05:00
Dan Peebles 50a00101c1 dnsmasq: get it working on darwin again 2015-12-24 23:27:31 -05:00
Dan Peebles ca277c2257 python-gnupg: use gnupg1 instead of 2 2015-12-24 22:11:41 +00:00
Moritz Ulrich c11f6c9dc7 rustc-1.5.0: Don't force bundled LLVM 2015-12-24 21:14:06 +01:00
Robin Gloster b26aa99d9d rustc: 1.4.0 -> 1.5.0 2015-12-24 21:14:06 +01:00
Moritz Ulrich b45161fbbe llvm: Add backported patch for Rust.
Rust runs into a bug with LLVM 3.7.0 that's fixed in the upcoming
release 3.7.1. This commit backports this fix.
2015-12-24 21:14:06 +01:00
Dan Peebles e5e8d3e250 libvirt-python: fix broken version that I included by accident in 8c42b26fa2 2015-12-24 20:02:38 +00:00
Dan Peebles 8c42b26fa2 libvirt: switch who makes assertions about whose version
Previously, the native libvirt package was making an assertion that
the dependent Python package had a compatible version. This commit
switches that so that the Python package makes the assertion, since
it makes more sense to me to have a child package making an
assertion about its parent than vice versa.
2015-12-24 19:59:44 +00:00
Tim Steinbach 84accab674 kotlin: 1.0.0-beta-4583 -> 1.0.0-beta-4584 2015-12-24 13:24:57 -05:00
Ryan Seto ac79d3ad61 pythonPackages.maildir-deduplicate: init at 1.0.2 2015-12-24 12:06:59 -05:00
Thomas Tuegel 6e27454728 sddm: build with Qt 5.5 2015-12-24 10:08:32 -06:00
makefu 47f17939c2 cvs2nix: 2.0.1 -> 2.4.0 2015-12-24 16:58:01 +01:00
taku0 66cddef221 thunderbird-bin: 38.4.0 -> 38.5.0 2015-12-25 00:21:01 +09:00
taku0 fe287dea9b firefox-bin: 43.0.1 -> 43.0.2 2015-12-24 23:08:28 +09:00
Robert Helgesson d491005da1 josm: init at 9060 2015-12-24 14:50:11 +01:00
Robert Helgesson 8c4bfb747e gpsprune: init at 18.2 2015-12-24 14:48:57 +01:00
leenaars 767f145a60 blink: 1.4.1 -> 1.4.2 2015-12-24 14:41:23 +01:00
leenaars a5e9422560 sipsimple: 2.5.1 -> 2.6.0
Updated SIP Simple SDK to new version, is a dependency for e.g. Blink (which needs to be updated as the old version does not build anymore because the tarball has been removed)
2015-12-24 13:29:43 +01:00
Robin Gloster 37ebb4c2ac rustfmt: 2015-12-08 -> 2015-12-23 2015-12-24 13:20:24 +01:00
Robin Gloster 021c2cad22 rustRegistry: 2015-12-10 -> 2015-12-23 2015-12-24 13:20:24 +01:00
Christian Albrecht dad3cd7928 jzmq: fix missing shasum in fetchgit src 2015-12-24 13:20:24 +01:00
Robin Gloster 2faea53f8e cargo: 0.6.0 -> 0.7.0 2015-12-24 13:20:24 +01:00
Aristid Breitkreuz 6ef92e0d11 Merge pull request #11914 from nckx/update-darktable
darktable: 1.6.8 -> 1.6.9
2015-12-24 13:11:41 +01:00
Nathan Zadoks 0fda4ff715 tahoelafs: mock is required at runtime for some reason 2015-12-24 11:08:16 +01:00
Hoang Xuan Phu b8bc82a459 archiveopteryx: init at 3.2.0 2015-12-24 15:22:44 +08:00
Charles Strahan c5497a7608 Merge pull request #11072 from svend/terminal-notifier-args
terminal-notifier: Pass arguments in wrapper script
2015-12-23 21:29:56 -06:00
Tobias Geerinckx-Rice 6b508687cf perlPackages.Glib: 1.314 -> 1.320 & fix licence 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice f5b52aa382 clipgrab: 3.5.5 -> 3.5.6 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice 9ecc0612f9 vnstat: add image output (gd) support 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice b8a7875d64 vnstat: 1.14 -> 1.15 & add longDescription
Changes:
- Fix: XML output had extra commas, broken since previous version
- Fix: unintended shared pointer modification in mosecs() sometimes resulted
  in wrong month name to be shown for the current month
- Fix: possible buffer overflow in /proc/net/dev parsing, requires corrupted
  content in /proc/net/dev or use of address sanitizer
- Use ANSI escape codes in -l and -tr modes for cursor location manipulation
  instead of printing backspaces, hide cursor while output is active
- Improve database import robustness
- Improve support for Asian UTF-8 date strings
- Replace hand written Makefiles with Autotools
- Add --alwaysadd parameter to daemon for allowing automatic addition of
  interfaces even if the database directory was populated during startup
2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice fd9e991616 saneBackends: remove udevSupport == hotplugSupport 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice 6a76cd1336 saneBackends: drop libusb override; use libusb1 directly 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice eeca8c0441 saneBackends: add translations (gettext) 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice d398926993 saneBackends: simplify buildInputs 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice d91765d2e0 saneBackends: append epson2 to dll.conf if installed 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice 61106207cd saneBackends: remove some redundancies (no hash change) 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice 58bf694071 saneBackends: factor out common code into generic.nix
The git version was duplicated from the stable one and the two had
begun to diverge significantly. For example, commit
88d731925d fixed a supposedly real
bug — but only in the stable package.

Factor out the shared code to avoid trouble — or worse, subtle
differences or bugs — in future.
2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice ffc04a67e3 sanebackends{,Git}: add avahi support 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice 94dbaa7dbf saneBackends{,Git}: add SNMP support 2015-12-24 04:05:57 +01:00
Thomas Tuegel 1d132f38a6 Merge branch 'plasma-5.5' 2015-12-23 18:04:32 -06:00
Thomas Tuegel 965cfccfa5 kde5: add attributes for individual KDE collections 2015-12-23 18:03:55 -06:00
Thomas Tuegel a5ac3dfffc kde5.plasma: 5.5.1 -> 5.5.2 2015-12-23 17:03:37 -06:00
Thomas Tuegel 558f14a094 kde5: build with Qt 5.5 2015-12-23 17:03:21 -06:00
Vladimír Čunát 12a0e09563 Merge #11674: libressl-2.3 patches for various pkgs 2015-12-23 23:16:27 +01:00
Robin Gloster f8ee267576 w3m: do not always link to RAND_egd for openssl
This fixes the build for libressl >= 2.3 as RAND_egd has been removed as
it is insecure.
2015-12-23 22:10:01 +00:00
Robin Gloster 99b1b464b4 qt55.qtbase: add patch to build with libressl 2.3 2015-12-23 22:10:01 +00:00
Nathan Zadoks 77affc495f despotify: fix missing hash (close #11913) 2015-12-23 23:09:26 +01:00
Robin Gloster 562ba76975 qca2: add patch to build with libressl 2.3 2015-12-23 22:08:33 +00:00
Robin Gloster 501d49ebc4 wpa_supplicant: add patch to build with libressl 2.3 2015-12-23 22:08:33 +00:00
Robin Gloster 4b5cb62488 qt4: add patch to build with libressl 2.3 2015-12-23 22:08:33 +00:00
Robin Gloster bdfc4efd67 bind: add patch to build with libressl 2.3 2015-12-23 22:08:33 +00:00
Robin Gloster d30904ea89 ruby: fix build with libressl2.3 2015-12-23 22:08:33 +00:00
Robin Gloster 8613060425 socat: add patch to fix build with libressl
This fixes the build for libressl >= 2.3 as some legacy openssl code has
been removed.
2015-12-23 22:08:33 +00:00
Tobias Geerinckx-Rice 6ddca8f9b0 darktable: 1.6.8 -> 1.6.9 2015-12-23 23:07:16 +01:00
Arseniy Seroka 93d3f6f52b Merge pull request #11905 from aborsu/jenkins-update
jenkins ci: 1.638 -> 1.643
2015-12-23 23:10:46 +03:00
Arseniy Seroka 21ebb23e7c Merge pull request #11894 from AndersonTorres/higan
Higan: 095 -> 096
2015-12-23 23:10:31 +03:00
Arseniy Seroka fc4b704fcf Merge pull request #11900 from NeQuissimus/gradle210
gradle: 2.9 -> 2.10
2015-12-23 23:10:20 +03:00
Arseniy Seroka afcac3f21f Merge pull request #11907 from ericbmerritt/hub-2.2.2
hub: 2.2.1 -> 2.2.2
2015-12-23 23:09:55 +03:00
Vladimír Čunát 11c702c582 Merge master into staging 2015-12-23 18:57:35 +01:00
Franz Pletz cbada77b0b clawsMail: 3.13.0 -> 3.13.1 (CVE-2015-8614)
Fixes a remotely triggerable buffer overflow.
http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=3557
Close #11910.
2015-12-23 18:48:38 +01:00
Eric Merritt 6108bb8971 hub: 2.2.1 -> 2.2.2 2015-12-23 08:37:02 -08:00
Augustin Borsu 170f91a249 jenkins ci: 1.638 -> 1.643 2015-12-23 15:47:11 +01:00
Thomas Tuegel 077a3102cc dropbox: 3.12.5 -> 3.12.6 2015-12-23 08:36:50 -06:00
Tim Steinbach d509f8a30a gradle: 2.9 -> 2.10 2015-12-23 08:44:49 -05:00
Nikolay Amiantov 80ee4ec82a Merge pull request #11837 from bendlas/update-wine
wine: stable, unstable; upgrade to 1.8
2015-12-23 16:41:08 +03:00
Vladimír Čunát bf9c16d4ac texinfo6: remove meta.branch and refactor meta
It was wrong ("5.2") and seemed unused in nixpkgs.
2015-12-23 09:19:38 +01:00
Vladimír Čunát fdf3aa9923 buildRubyGem: use a saner default version to fix #11805
Previously the gems defaulted to "ruby" as the name and
"${ruby-version}-${gem-name}-${gem-version}" as the version,
which was just insane.

https://github.com/NixOS/nixpkgs/issues/9771#issuecomment-141041414
Noone is reacting so it's high time to take at least some action.
/cc @cstrahan.
2015-12-23 09:02:13 +01:00
Robert Helgesson 3af583d976 pdf2svg: add autoreconf hook (close #11888)
This fixes builds that may fail due to all files in the archive having
the same timestamp.
2015-12-23 07:36:25 +01:00
AndersonTorres 0ed678a414 Higan: 095 -> 096 2015-12-23 00:32:06 -02:00
Robert Helgesson 5b10c11616 fira-code: 1.100 -> 1.101, fixes #11892 2015-12-23 02:31:27 +01:00
Nicole Angel 90e881eece keepass: load plugins from store paths, fixes #11206 2015-12-23 02:12:36 +01:00
Nicole Angel e99beec0e1 Keefox (keepass plugin): init at 1.5.4 2015-12-23 02:12:15 +01:00
Tim Williams e2a25433b2 copyq: init at 2.5.0, fixed #11887 2015-12-23 01:58:59 +01:00
Tim Steinbach eb8e309d2b kotlin: 1.0.0-beta-3595 -> 1.0.0-beta-4583, fixes #11883 2015-12-23 01:50:06 +01:00