Commit graph

91934 commits

Author SHA1 Message Date
aszlig 49cf934642
pyocr: Add patch to support Tesseract 3.05.00
This is from the commit message I've written for the upstream pull
request (jflesch/pyocr#62):

    This is a bit more involved, because Tesseract 3.05.00 comes not
    only with improvements but also with a few quirks we need to deal
    with.

    The first quirk is that the order arguments of the `tesseract'
    command now matters and the list of configurations has to be at the
    end of the command line. So we add a new attribute tesseract_flags
    to the BaseBuilder class that contains a list of all the flags to
    pass to `tesseract', the tesseract_configs attribute however remains
    pretty much the same but now only really contains a list of configs
    instead of being mixed with flag arguments.

    Another quirk has to do with Leptonica >= 1.74 which Tesseract
    3.05.00 now requires. Leptonica has special handling of files that
    reside in /tmp and assumes that it's an internal temporary file of
    Leptonica. In order to deal with it, we now run Tesseract in a
    temporary directory, which contains the input/output files and use
    the relative name of these files because Leptonica only searches for
    path names beginning with /tmp.

    Fortunately the last item we need to address is not really a quirk,
    but an API change. In Tesseract 3.05.00 there is now a new function
    called TessBaseAPIDetectOrientationScript(), which doesn't fill the
    OSResults object anymore but now allows to pass the values we're
    interested in directly by reference. We need to use this new
    function because the old function TessBaseAPIDetectOS() now *always*
    returns false.

I've tested this specifically on NixOS and in conjunction with Paperwork
(the only package that's using pyocr so far) and all the tests of the
dependency chain are now succeeding. However, I didn't do manual tests
of Paperwork though.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:39 +02:00
aszlig 121751e10f
pyocr: 0.4.4 -> 0.4.6
Upstream changes for version 0.4.5:

 * Clean up exceptions raised when OCR fails:
 * Now, all tools raise only exceptions inheriting from
   pyocr.PyocrException
 * There is now one and only one TesseractError (shared between
   pyocr.libtesseract and pyocr.tesseract)

Upstream changes for version 0.4.6:

 * hOCR outputs: Generate valid XHTML files

The full upstream changelog can be found at:

https://github.com/jflesch/pyocr/blob/master/ChangeLog

Note that because of the version bump of Tesseract neither version 0.4.4
nor version 0.4.6 succeed to build, so we need to fix this up soon.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:36 +02:00
aszlig c381fa9b63
tesseract: 3.04.01 -> 3.05.00
Upstream changelog:

 * Made some fine tuning to the hOCR output.
 * Added TSV as another optional output format.
 * Fixed ABI break introduced in 3.04.00 with the AnalyseLayout()
   method.
 * text2image tool - Enable all OpenType ligatures available in a font.
   This feature requires Pango 1.38 or newer.
 * Training tools - Replaced asserts with tprintf() and exit(1).
 * Fixed Cygwin compatibility.
 * Improved multipage tiff processing.
 * Improved the embedded pdf font (pdf.ttf).
 * Enable selection of OCR engine mode from command line.
 * Changed tesseract command line parameter '-psm' to '--psm'.
 * Added new C API for orientation and script detection, removed the old
   one.
 * Increased minimum autoconf version to 2.59.
 * Removed dead code.
 * Fixed many compiler warning.
 * Fixed memory and resource leaks.
 * Fixed some issues with the 'Cube' OCR engine.
 * Fixed some openCL issues.
 * Added option to build Tesseract with CMake build system.
 * Implemented CPPAN support for easy Windows building.

The upstream URL of the change log is:

https://github.com/tesseract-ocr/tesseract/releases/tag/3.05.00

Tested by building against the following packages that directly depend
on it:

 * vapoursynth (with ocrSupport = true)
 * pyocr (fails)
 * vobsub2srt

Also tested against the following NixOS VM tests that have OCR enabled:

 * nixos/tests/chromium.nix -A stable
 * nixos/tests/emacs-daemon.nix
 * nixos/tests/installer.nix -A luksroot
 * nixos/tests/lightdm.nix
 * nixos/tests/plasma5.nix
 * nixos/tests/sddm.nix

All of the packages and tests except pyocr build/succeed on
x86_64-linux.

Fixing pyocr is outside of the scope of this commit and will happen very
soon.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:32 +02:00
aszlig 42bb63f803
leptonica: 1.72 -> 1.74.1
The changes are a bit too big to include it here in the commit message,
so if you want the details of what changed, please visit this URL:

http://leptonica.org/source/version-notes.html

I have also provided openjpeg, giflib and libwebp as dependencies so
that Leptonica is able to read/write those file formats.

Additionally I've added a patch that uses pkgconfig to resolve all
dependencies (except giflib), because unlike AC_CHECK_LIB() the
PKG_CHECK_MODULES() macro defines *_LIBS variables to include the linker
search path.

Unfortunately that patch alone is not enough, because the *_LIBS
variable are substituted by the upstream configure.ac to *not* include
the linker search paths, so we need to remove the AC_SUBST() calls
within PKG_CHECK_MODULES().

The only dependency that's not yet using PKG_CHECK_MODULES() is giflib,
because giflib doesn't have a pkg-config description file, therefore
we're using substituteInPlace to insert the linker search path after the
lept.pc file was generated by configure.

Another thing that we no longer need is the dependency on libpng version
1.2, because Leptonica now also works with more recent libpng versions.

Tested by building the package itself and also the following packages
that immediately depend on leptonica:

 * k2pdfopt
 * tesseract
 * jbig2enc

All of these packages succeeded to build on x86_64-linux.

The main reason why I'm bumping Leptonica to version 1.74.1 is that we
need at least version 1.74 to bump Tesseract to the latest upstream
version.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:29 +02:00
aszlig 288a79187c
tesseract: Reintroduce enableLanguages
I've removed that attribute in 68bc260ca2,
because the language files no longer were distributed as seperate files,
but if we for example only want to use the English training data, the
closure size of Tesseract gets quite large (around 1.2 GB), which is a
bit much just to be able to run NixOS VM tests.

For this reason I've also switched the VM tests back to using only the
English language.

Tested using the following VM tests (the ones that have OCR enabled) on
x86_64-linux:

 * nixos/tests/chromium.nix -A stable
 * nixos/tests/emacs-daemon.nix
 * nixos/tests/installer.nix -A luksroot
 * nixos/tests/lightdm.nix
 * nixos/tests/plasma5.nix
 * nixos/tests/sddm.nix

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:26 +02:00
Jon Banafato 4a4719c6ec keepassx-community: 2.1.3 -> 2.1.4
KeePassXC has a new bugfix release available: https://github.com/keepassxreboot/keepassxc/releases/tag/2.1.4
2017-04-10 20:54:23 -04:00
Aneesh Agrawal 769b991be6 openssh: 7.4p1 -> 7.5p1
Release notes are available at https://www.openssh.com/txt/release-7.5.
Mostly a bugfix release, no major backwards-incompatible changes.

Remove deprecated `UsePrivilegeSeparation` option,
which is now mandatory.
2017-04-10 19:39:22 -04:00
Michael Alan Dorman 5a5eea34cc melpa-packages: 2017-04-10
Removals:
 - dos: package removed from melpa
2017-04-10 19:20:07 -04:00
Michael Alan Dorman f087fd3c70 melpa-stable-packages: 2017-04-10 2017-04-10 19:20:07 -04:00
Michael Alan Dorman 842417b4bc elpa-packages: 2017-04-10 2017-04-10 19:20:07 -04:00
Philipp Steinpass eec5775a4c steam: move libpciaccess as non-runtime dependencies 2017-04-11 01:51:46 +03:00
Aristid Breitkreuz 6f3b15e3c1 Merge pull request #24798 from avnik/wine-update
wineUnstable: 2.4 -> 2.5
2017-04-10 23:26:50 +02:00
Robert Helgesson 08656a73f0
gpsbabel: fix darwin build 2017-04-10 22:57:06 +02:00
Aristid Breitkreuz 7813c9676a Merge pull request #24802 from asymmetric/awscli
awscli: 1.11.45 -> 1.11.75
2017-04-10 22:55:13 +02:00
John Ericson 2b85b38b1f Merge pull request #24804 from Ericson2314/platform-whitespace
top-level/platforms.nix: Reformat and clean up whitespace
2017-04-10 16:30:43 -04:00
John Ericson f3055a3c50 top-level/platforms.nix: Reformat and clean up whitespace 2017-04-10 15:39:47 -04:00
Thomas Tuegel c7dd8a707b
golden-cheetah: fix build
- Use Qt 5.6 to fix compile error.
- Run preInstall and postInstall hooks to fix linking error.
2017-04-10 13:51:45 -05:00
Lorenzo Manacorda 8d18f67a97 awscli: 1.11.45 -> 1.11.75
also update dependency botocore
2017-04-10 18:56:06 +02:00
Shea Levy 1bb8a47803 Add aggregate job for a forthcoming nixpkgs-darwin-unstable channel 2017-04-10 12:35:32 -04:00
Eelco Dolstra 0e0e7c1a8f Merge pull request #24787 from abbradar/gtk3-firefox
GTK3 by default in Firefox and Thunderbird
2017-04-10 18:11:06 +02:00
Vladimír Čunát 6d1374238f
gnutls: bugfix 3.5.10 -> 3.5.11 2017-04-10 17:53:54 +02:00
Alexander V. Nikolaev 3ec56d8da2 wineUnstable: 2.4 -> 2.5 2017-04-10 18:37:28 +03:00
Andrew R. M 785f6ce5d6 pass: Fix clipboard functionality
Add the patch that was removed that allows pass's clip() function to
work with single binary coreutils. This version of the patch is also
applied to darwin.sh, so this should fix the clipboard functionality in
darwin as well.
2017-04-10 10:31:00 -04:00
Thomas Tuegel 33194ec649
dropbox: 23.4.17 -> 23.4.18
This update has not been officially announced upstream, but version 23.4.17 no
longer works.
2017-04-10 09:28:01 -05:00
Vladimír Čunát c714f8241a
libdrm: 2.4.76 -> 2.4.79 2017-04-10 16:27:29 +02:00
Frederik Rietdijk 767e459200 Merge pull request #22726 from matthewbauer/openblas-closure-size
openblas: disable static libs
2017-04-10 16:11:19 +02:00
Tuomas Tynkkynen c0cef0425e btrfs-progs: 4.8.2 -> 4.10.2 2017-04-10 17:09:22 +03:00
Tuomas Tynkkynen 199be99c6f dosfstools: 3.0.28 -> 4.1 2017-04-10 17:09:22 +03:00
Tuomas Tynkkynen 183279002d f2fs-tools: 1.7.0 -> 1.8.0 2017-04-10 17:09:22 +03:00
Tuomas Tynkkynen c334daa5c2 f2fs-tools: Cleanup a bit 2017-04-10 17:09:22 +03:00
Lorenzo Manacorda 5108c4c7b2 notmuch: fix homepage and notmuch-mutt license (#24777)
* notmuch: fix homepage and notmuch-mutt license

notmuch-mutt's license is GPLv3. might have been changed when it was upstreamed.

* fix scheme

* fix typo in url

* fix field alignment

* use with to make statements shorter
2017-04-10 16:00:25 +02:00
Jörg Thalheim 92ab8b0ee7 Merge pull request #24782 from asymmetric/polybar
polybar: 3.0.4 -> 3.0.5
2017-04-10 15:58:29 +02:00
Tristan Helmich 7364e0e7a9 emby: 3.2.10 -> 3.2.12 2017-04-10 15:39:54 +02:00
Christine Koppelt b3eeca06c9 django_1_7: remove 2017-04-10 15:25:32 +02:00
Yann Hodique a78ce1d4c6 tig: 2.2 -> 2.2.1 (#24770)
* tig: 2.2 -> 2.2.1

Also move to different project URLs, as requested in
https://github.com/jonas/tig/releases/tag/tig-2.2.1

* tig: fix fetching mechanism

Rework the dependencies to allow use of fetchFromGitHub.
2017-04-10 15:03:04 +02:00
Tim Steinbach 5a3dca24d8
sbt: 0.13.14 -> 0.13.15 2017-04-10 08:44:32 -04:00
Tim Steinbach 205abc1fb6
linux: 4.11-rc5 -> 4.11-rc6 2017-04-10 08:34:23 -04:00
Franz Pletz 6049560e60
jenkins: 2.49 -> 2.53 2017-04-10 14:31:27 +02:00
Franz Pletz b4c7979363
libgit2: 0.24.6 -> 0.25.1 2017-04-10 14:31:26 +02:00
Jörg Thalheim cbe0062325
wireguard: 0.0.20170324 -> 0.0.20170409 2017-04-10 14:27:21 +02:00
Tobias Geerinckx-Rice f5fe20c7f4 Merge pull request #24773 from cko/maven-3_5_0
maven: 3.3.9 -> 3.5.0
2017-04-10 13:02:57 +01:00
Daniel Ehlers de83f55ee3 trayer: 1.1.6 -> 1.1.7 2017-04-10 13:29:00 +02:00
Lancelot SIX 045ecd11f8 Merge pull request #24785 from paperdigits/darktable-2.2.4
darktable: 2.2.3 -> 2.2.4
2017-04-10 13:18:11 +02:00
Vladimír Čunát e47ac55a21
glibc: apply the i686 patch only on i686
... to reduce rebuilding. /cc #23177.
2017-04-10 11:18:50 +02:00
Vladimír Čunát c30b12b9a5
glibc: fix i686 crashes via an upstream patch
Fixes #23177.
2017-04-10 11:13:00 +02:00
Frederik Rietdijk 90aaa7319e Merge pull request #24781 from ndowens/texstudio
texstudio: 2.11.2 > 2.12.4
2017-04-10 10:59:42 +02:00
Nikolay Amiantov f68de22683 wrapGAppsHook: add librvsg as a dependency
User themes may use SVG icons which won't work if the app can't access this
library. This is quite sure to happen (e.g. Adwaita's icons are vector).
2017-04-10 11:37:54 +03:00
Nikolay Amiantov ef1e28f5f6 qt56.qtwebengine: patch more library paths
Backport 040b86a96e.
2017-04-10 11:35:00 +03:00
Michael Raskin f12bd6e9b6 lispPackage.iolib: missed one system 2017-04-10 10:09:22 +02:00
Michael Raskin 08abe4fe93 lispPackage.iolib: list the hidden systems to make sure bundles exist 2017-04-10 09:57:17 +02:00
Daiderd Jordan f8230518a2 Merge pull request #24762 from matthewbauer/darwin-misc-fixes
darwin: miscellaneous fixes
2017-04-10 08:50:15 +02:00
Yann Hodique f4ff67099b keychain: add sigma as maintainer 2017-04-09 22:28:27 -07:00
Joachim Fasting 7701cbca6b
grsecurity: 4.9.20-201703310823 -> 4.9.21-201704091948 2017-04-10 03:34:42 +02:00
Nikolay Amiantov e2fe47008f thunderbird: enable GTK3 by default 2017-04-10 02:43:26 +03:00
Nikolay Amiantov 999cf98de9 firefox: enable GTK3 by default 2017-04-10 02:43:18 +03:00
Matthew Bauer dd25b6da62 cwebbin: fix src again 2017-04-09 18:33:48 -05:00
Nikolay Amiantov b023370f37 thunderbird: port changes from firefox
Fix random crashes.
Add optional GTK3 support.
2017-04-10 02:20:59 +03:00
Nikolay Amiantov 56ca347872 firefox: misc cleanups
Move more dependencies to nativeBuildInputs.
Use wrapGAppsHook.
Add checkInstallPhase.
2017-04-10 02:20:38 +03:00
Nikolay Amiantov 11d76ef891 nethack: add utils to path 2017-04-10 02:20:34 +03:00
taku0 55ff94b396 thunderbird: 45.8.0 -> 52.0 2017-04-10 02:20:29 +03:00
taku0 77f0ad5a37 thunderbird-bin: 45.8.0 -> 52.0 2017-04-10 02:20:26 +03:00
Michael Raskin 58d6b50232 lispPackages: load precompiled asdf; support more implementations 2017-04-10 01:10:49 +02:00
Mica Semrick eae15ab771 darktable: 2.2.3 -> 2.2.4 2017-04-09 15:58:06 -07:00
Tuomas Tynkkynen a05959e191 Merge remote-tracking branch 'upstream/master' into staging 2017-04-10 01:41:49 +03:00
Tuomas Tynkkynen b64163a90d bonnie: 1.97 -> 1.97.3 2017-04-10 01:16:39 +03:00
Michael Raskin c4bdec77a0 firejail: 0.9.44.8 -> 0.9.44.10 2017-04-10 00:14:34 +02:00
Michael Raskin 917ecc2390 lispPackages.iolib: precompile iolib/os 2017-04-09 23:48:24 +02:00
Dan Peebles c595d5ed3d cctools-port: 886 -> 895 2017-04-09 17:32:37 -04:00
Orivej Desh 2db5b5a009 verbiste: init at 0.1.44 2017-04-10 00:19:35 +03:00
David McFarland f2655dd0c7 mesa: patch vulkan manifests when any driver is enabled 2017-04-10 00:17:36 +03:00
Matthew Bauer cb180f47d4
cwebbin: fix src 2017-04-09 15:47:55 -05:00
Daiderd Jordan 35eb784bf2 Merge pull request #24761 from matthewbauer/hidapi2
hidapi: fix macos
2017-04-09 22:39:15 +02:00
Matthew Bauer cba6e28766
hidapi: fix macos 2017-04-09 15:21:26 -05:00
Lorenzo Manacorda 0788476624 polybar: 3.0.4 -> 3.0.5 2017-04-09 22:18:51 +02:00
ndowens 40e2e78d91 texstudio: 2.11.2 > 2.12.4 2017-04-09 15:17:55 -05:00
Lorenzo Manacorda da4fd5ef41 mutt: actually make imap optional (#24776) 2017-04-09 20:55:27 +01:00
Nikolay Amiantov 7099e8da83 linux: build with initrd support by default
We don't require initrd in some cases but still most boot sequences including ARM use it.
2017-04-09 22:46:07 +03:00
Nikolay Amiantov 250ab7a26a {armv7l,aarch64}-linux: build all kernel modules 2017-04-09 22:46:07 +03:00
Nikolay Amiantov c0e77dba0e linux: add kernelPreferBuiltin platform option
This allows to use kernelAutoModules but still compile in any options that are set so in template config.
It's helpful for ARM and maybe other platforms where defaul configurations are useful because they compile in
modules that we and udev cannot autodetect now.
2017-04-09 22:46:07 +03:00
Tuomas Tynkkynen 1b94c30beb fio: 2.17 -> 2.19 2017-04-09 22:34:19 +03:00
Tuomas Tynkkynen d284082b9f yle-dl: 2.11 -> 2.15 2017-04-09 22:17:16 +03:00
Tuomas Tynkkynen a7b572805c strace: 4.15 -> 4.16 2017-04-09 21:48:25 +03:00
Tuomas Tynkkynen aef593fcbf picocom: 2.1 -> 2.2 2017-04-09 21:48:25 +03:00
Tuomas Tynkkynen 1f625ce93e ntfs3g: 2016.2.22 -> 2017.3.23 2017-04-09 21:48:25 +03:00
Tuomas Tynkkynen 64306e29d7 less: 481 -> 487 2017-04-09 21:48:25 +03:00
Tuomas Tynkkynen 15efefa832 lcov: 1.12 -> 1.13 2017-04-09 21:48:25 +03:00
Tuomas Tynkkynen 997b77cd38 iperf: 3.1.3 -> 3.1.7 2017-04-09 21:48:25 +03:00
Tuomas Tynkkynen 6be6396804 i2c-tools: 3.1.1 -> 3.1.2 2017-04-09 21:48:25 +03:00
Tuomas Tynkkynen caccd11442 dtc: 1.4.2 -> 1.4.4 2017-04-09 21:48:25 +03:00
Aristid Breitkreuz faa5d22231 Merge pull request #24771 from sigma/pr/keychain
keychain: 2.8.0 -> 2.8.3
2017-04-09 20:26:19 +02:00
Peter Hoeg b520bed834 syncthing: 0.14.25 -> 0.14.26 2017-04-10 00:36:05 +08:00
Yann Hodique c51625b058 keychain: 2.8.0 -> 2.8.3 2017-04-09 09:17:32 -07:00
Peter Simons 282bc88093 Merge pull request #24754 from shlevy/haskell-overrideSrc
haskell-lib: Add overrideSrc helper
2017-04-09 17:55:23 +02:00
Christine Koppelt b7223e0393 maven: 3.3.9 -> 3.5.0 2017-04-09 16:58:48 +02:00
Dan Peebles d93f2c3865 darwin.libSystem: fix intermittent impurity bug
If you've seen issues with libsystem_symptoms.dylib,
this should fix that.
2017-04-09 09:39:30 -04:00
Michael Raskin ba7a1b6505 Merge pull request #24520 from asppsa/octave-hg
Add Octave HG version, use with purePackages.octave
2017-04-09 15:23:51 +02:00
Tristan Helmich 4a9da1c538 sonarr: 2.0.0.4645 -> 2.0.0.4689 (#24767) 2017-04-09 14:09:31 +01:00
Peter Simons 4e307b644a Merge pull request #24760 from matthewbauer/linux-only-pkgs
Mark linux-only pkgs
2017-04-09 14:18:10 +02:00
Alastair Pharo 68c56c46fb purePackages.octave: Use octaveHg
Pure's Octave package compiles but crashes with Octave 4.2 due to an
upstream bug which is fixed in mercurial.
2017-04-09 21:54:39 +10:00
Alastair Pharo 813eb41cf6 octaveHg: add package 2017-04-09 21:54:14 +10:00
Benno Fünfstück 8130c350b2 Merge pull request #24743 from ljli/hs-haskell-tools
haskell: Correct dependencies for haskell-tools-*_0_6_0_0
2017-04-09 13:35:21 +02:00
Matthew Bauer 87e6b2c50f
xcbuild: try to fix sdk not found
This is an attempt to get rid of the issues with sdk not found in
xcbuild when building pinentry_mac.
2017-04-09 04:27:56 -05:00
Matthew Bauer 34422f428d
ibtool: add to toolchain
- init package
- add into xcbuild/toolchain.nix
2017-04-09 04:27:21 -05:00
Matthew Bauer 38fa991064
pinentry_mac: use xcbuild 2017-04-09 04:24:16 -05:00
Matthew Bauer a78af29ae7
install_name_tool: remove
cctools provides install_name_tool
2017-04-09 04:22:44 -05:00
Matthew Bauer 5eb75ce205
xcbuild: add app bundle specs 2017-04-09 04:22:08 -05:00
Franz Pletz a49481a740 Merge pull request #24763 from matthewbauer/darwin-glfw-fixes
glfw: fix darwin build
2017-04-09 11:17:42 +02:00
Jörg Thalheim 4c86093002 Merge pull request #24764 from matthewbauer/spectrwm-osx
spectrwm: fix OSX build
2017-04-09 11:13:33 +02:00
Franz Pletz e23c8f05ab Merge pull request #24756 from NeQuissimus/minikube_0_18_0
minikube: 0.17.1 -> 0.18.0
2017-04-09 11:08:16 +02:00
Franz Pletz e798712da7 Merge pull request #24759 from matthewbauer/inkscape-darwin-fix
inkscape: fix missing library error
2017-04-09 10:56:20 +02:00
Gabriel Ebner 443dc395c5 gnome3.gnome_settings_daemon: use wrapGAppsHook
This fixes the "Using the 'memory' GSettings backend." error if
gnome-settings-daemon is used separately from gnome.
2017-04-09 10:00:12 +02:00
Matthew Bauer 8df24b78d5
wxGTK28: linux only 2017-04-09 02:11:16 -05:00
Alastair Pharo 250ddfe1a2 octave: add runtime texinfo dependency
makeinfo (provided by the texinfo package) is used by the "help"
command in Octave to display info about functions, etc.  By default,
Octave looks for "makeinfo" in the PATH, rather than specifying the
location of the executable.  This results in Nix not being aware that
makeinfo is required at runtime (so unless you happen have makeinfo
available from your path, "help" won't work).

This patch fixes that by setting the path to makeinfo in Octave,
thereby creating a runtime dependency on texinfo.
2017-04-09 16:42:56 +10:00
Matthew Bauer f75703bfbf
spectrwm: fix OSX build 2017-04-09 01:30:38 -05:00
Matthew Bauer d8b98c4f77
safecopy: linux only 2017-04-09 01:29:52 -05:00
Matthew Bauer 1df7966d9d
scanmem: linux only 2017-04-09 01:29:41 -05:00
Matthew Bauer 525b5dce19
tcp-wrappers: linux only 2017-04-09 01:29:29 -05:00
Matthew Bauer 23d8b4f10c
glfw: fix darwin build 2017-04-09 00:23:24 -05:00
Matthew Bauer 3baff95efd
botan: fix macOS build 2017-04-08 23:49:55 -05:00
Alastair Pharo f0ebcc6444 epstool: add package 2017-04-09 14:35:06 +10:00
Matthew Bauer c02ab895a1
hwinfo: make linux-only 2017-04-08 23:34:54 -05:00
Matthew Bauer 4db3b90314
rssh: make linux-only 2017-04-08 23:34:53 -05:00
Matthew Bauer 038550b596
gcsfuse: make linux-only 2017-04-08 23:34:52 -05:00
Matthew Bauer 2a2e9b8f2e
xautolock: make linux-only 2017-04-08 23:34:52 -05:00
Matthew Bauer 3f2560cc08
xbase: make linux-only 2017-04-08 23:34:51 -05:00
Matthew Bauer a1f22aafa2
neardal: make linux-only 2017-04-08 23:34:51 -05:00
Matthew Bauer 04f8199e5b
libx86emu: make linux-only 2017-04-08 23:34:41 -05:00
Matthew Bauer 8dbefea714
lout: fix macOS build 2017-04-08 23:28:03 -05:00
Matthew Bauer d983235155
nuttcp: fix macOS build 2017-04-08 23:28:03 -05:00
Matthew Bauer 65d9a8e4fb
rrdtool: fix macOS build 2017-04-08 23:28:03 -05:00
Matthew Bauer 06716f310a
zstmdt: fix macOS build 2017-04-08 23:28:02 -05:00
Matthew Bauer 1953cb5f71
sysdig: fix macOS build 2017-04-08 23:28:02 -05:00
Matthew Bauer 9e7faf9883
exult: Fix macOS build 2017-04-08 23:28:02 -05:00
Matthew Bauer efcd597ab6
cwebbin: Fix macOS build 2017-04-08 23:28:01 -05:00
Matthew Bauer 719cb89342
wxsqlite3: fix macOS build 2017-04-08 23:28:01 -05:00
Matthew Bauer 6a6b371a77
liblastfm: fix macOS build 2017-04-08 23:28:01 -05:00
Matthew Bauer c344f46321
djview: fix macOS build 2017-04-08 23:28:00 -05:00
Matthew Bauer ba78c50069
inkscape: fix missing library error 2017-04-08 23:20:10 -05:00
Dan Peebles ec674a6372 nix: fix evaluation
Sorry!
2017-04-08 21:15:21 -04:00
Cole Scott ff1e372849
arm-frc-linux-gnueabi-gcc: init at 4.9.4
fixes #24578
2017-04-09 01:06:34 +02:00
Cole Scott 1d7a478c92
arm-frc-linux-gnueabi-binutils: init at 2.28 2017-04-09 01:06:34 +02:00
Cole Scott 7c32b93c9a
arm-frc-linux-gnueabi-eglibc: init at 2.21-r0.83 2017-04-09 01:06:33 +02:00
Cole Scott 9597247cc0
arm-frc-linux-gnueabi-linux-api-headers: init at 3.19-r0.36 2017-04-09 01:06:33 +02:00
Tim Steinbach 215e8e4020
minikube: 0.17.1 -> 0.18.0 2017-04-08 18:13:48 -04:00
Tim Steinbach 33b4be33c3 Merge pull request #24750 from NeQuissimus/coursier_1_0_0_rc1
coursier: 1.0.0-M15-5 -> 1.0.0-RC1
2017-04-08 17:27:26 -04:00
Dan Peebles fbdc4616ab nix: fix on LLVM 4.0 2017-04-08 16:54:16 -04:00
Dan Peebles 72d9016b8b darwin.make-bootstrap-tools: fix to use LLVM 4
This should now roughly match the bootstrap tools we're using on Darwin
2017-04-08 16:38:48 -04:00
Shea Levy a6c39ed207 haskell-lib: Add overrideSrc helper 2017-04-08 16:21:57 -04:00
Christoph Hrdinka 60160234aa
nsd: 4.1.14 -> 4.1.15 2017-04-08 21:49:13 +02:00
Thomas Tuegel 333923c88b
dropbox: 22.4.24 -> 23.4.17 2017-04-08 14:48:07 -05:00
Tim Steinbach 9d94e100f5
coursier: 1.0.0-M15-5 -> 1.0.0-RC1 2017-04-08 15:03:33 -04:00
Michael Raskin 16e12a6c42 glusterfs: 3.10.0 -> 3.10.1 2017-04-08 18:37:24 +02:00
Aristid Breitkreuz 17fc70a11d Merge pull request #24609 from zimbatm/terraform-fix
terraform: remove broken tests
2017-04-08 17:53:36 +02:00
Benno Fünfstück 8889d405c7 rustRegistry: 2017-04-03 -> 2017-04-08 2017-04-08 17:43:51 +02:00
Michael Raskin 861726579b Merge pull request #24008 from phile314/slimserver
slimserver: Init at 7.9.0 (pkg + module)
2017-04-08 17:43:41 +02:00
Jörg Thalheim cb6d1fdfd9 Merge pull request #24331 from LumiGuide/ssmtp-AuthPassFile
ssmtp: use the authPassFile option instead of authPass
2017-04-08 17:22:26 +02:00
Thomas Tuegel a40600bc58
fontconfig-penultimate: 0.3.2 -> 0.3.3 2017-04-08 09:42:09 -05:00
Leon Isenberg 55e191d844 haskell: Correct dependencies for haskell-tools-*_0_6_0_0 2017-04-08 14:51:43 +02:00
Tim Steinbach 184e3238c7 Merge pull request #24544 from NeQuissimus/skopeo_policy
skopeo: default policy
2017-04-08 08:36:41 -04:00
Thomas Tuegel e0b1288ebd Merge pull request #24340 from periklis/topic_qt58_modules
qt58: extend darwin compatibility
2017-04-08 07:32:21 -05:00
Tim Steinbach 79f9544eca
linux: 4.4.59 -> 4.4.60 2017-04-08 08:04:54 -04:00
Tim Steinbach 1988c1fa41
linux: 4.10.8 -> 4.10.9 2017-04-08 08:02:18 -04:00
Tim Steinbach 016a319b50
linux: 4.9.20 -> 4.9.21 2017-04-08 07:59:27 -04:00
Jörg Thalheim f7b97df2cd Merge pull request #24730 from Infinisil/buku-2.9
buku: 2.8 -> 2.9
2017-04-08 13:24:45 +02:00
Aristid Breitkreuz 9f148e9166 Merge pull request #24593 from bdimcheff/upgrade-astroid-0.8
astroid: 0.7 -> 0.8
2017-04-08 13:09:02 +02:00
Aristid Breitkreuz a0eabfbcbd Merge pull request #24715 from ljli/ghcjs-dep-cycle
haskell: ghcjs packages: Break dependency cycle less invasive
2017-04-08 12:25:54 +02:00
Aristid Breitkreuz 4ca22140d9 Merge pull request #24669 from gnidorah/master2
autorandr: 53d29f9 -> 855c18b and module
2017-04-08 12:17:57 +02:00
Aristid Breitkreuz 43626b6a88 Merge pull request #24698 from MP2E/ffmpeg_sdl2
ffmpeg-full: replace SDL support with SDL2 support
2017-04-08 12:16:11 +02:00
Aristid Breitkreuz 18e5d913d7 Merge pull request #24740 from dyrnade/chefdk
chefdk: 0.11.2 -> 1.3.40
2017-04-08 12:13:56 +02:00
Aristid Breitkreuz 07306f437c Merge pull request #24721 from xmikus01/patch-1
advancecomp: fix license
2017-04-08 12:01:44 +02:00
Aristid Breitkreuz e893646494 Merge pull request #24692 from LumiGuide/haskell-link-with-gold
haskell: add the linkWithGold function to link packages with ld.gold
2017-04-08 12:01:05 +02:00
Aristid Breitkreuz 058610c355 Merge pull request #24722 from ljli/ghcjs-prim
haskell: ghcjs packages: Remove ghcjs-prim
2017-04-08 11:58:23 +02:00
Aristid Breitkreuz 59057d2272 Merge pull request #24679 from lsix/django_security_fixes
Django security fixes (for CVEs)
2017-04-08 11:48:46 +02:00
Aristid Breitkreuz 6dd7dd52b8 Merge pull request #24539 from Ralith/vulkan-loader
vulkan-loader: 1.0.39.1 -> 1.0.42.2
2017-04-08 11:48:04 +02:00
Aristid Breitkreuz 290315ff6a Merge pull request #24627 from mdaiter/suitesparseCUDATouchups
suitesparse: refining CUDA support
2017-04-08 11:45:17 +02:00
Aristid Breitkreuz cafd9c922c Merge pull request #24705 from emanueleperuffo/master
robomongo: 0.8.4 -> 0.9.0
2017-04-08 11:43:51 +02:00
Aristid Breitkreuz f6fc8467cd Merge pull request #24672 from magnetophon/libsndfile
libsndfile: 1.0.27 -> 1.0.28
2017-04-08 11:33:03 +02:00
Jörg Thalheim c74ee67e41 Merge pull request #24713 from Profpatsch/mktorrent-1.1
mktorrent: 1.0 -> 1.1
2017-04-08 11:31:59 +02:00
Aristid Breitkreuz 672160a00f Merge pull request #24741 from kamilchm/ponyc
ponyc: 0.12.2 -> 0.13.0
2017-04-08 11:28:43 +02:00
Jörg Thalheim 6444321633 Merge pull request #24725 from sphaugh/master
i3: add separateDebugInfo
2017-04-08 11:15:31 +02:00
Aristid Breitkreuz 3f00bce59b Merge pull request #24723 from edanaher/update-bup
bup: 0.29 -> 0.29.1
2017-04-08 11:04:37 +02:00
Vladimír Čunát 26766f0e57
Merge branch 'staging'
There are a few dozen new failures on Darwin, probably related to
updates of stdenv's llvm and/or pkgconfig.
Still the total number of successes increases.
2017-04-08 11:02:36 +02:00
Aristid Breitkreuz 94214467ff google-cloud-sdk: 148.0.1 -> 150.0.0 2017-04-08 10:57:33 +02:00
Jörg Thalheim cc95da572e Merge pull request #24739 from tjg1/master
purple-facebook: 0.9.0 -> 0.9.3
2017-04-08 10:23:43 +02:00
Periklis Tsirakidis 775531c1e3 qt58: extend darwin compatibility 2017-04-08 09:54:46 +02:00
Kamil Chmielewski b55a9f86e4 ponyc: 0.12.2 -> 0.13.0
https://github.com/ponylang/ponyc/issues/1823
2017-04-08 09:43:24 +02:00
dyrnade 0a573f7a0c changed chefdk version to 1.3.40
upgraded dependencies for chefdk-1.3.40
2017-04-08 10:16:56 +03:00
Silvan Mosberger c2a0f2584a
buku: 2.8 -> 2.9 2017-04-08 08:56:35 +02:00
Tomasz Jan Góralczyk 90b2290ca3
purple-facebook: 0.9.0 -> 0.9.3 2017-04-08 07:56:28 +01:00
Jörg Thalheim efe12d6658 Merge pull request #24732 from NeQuissimus/scala_2_11_10
scala: 2.11.9 -> 2.11.10
2017-04-08 08:50:50 +02:00
Jörg Thalheim 6c59393888 Merge pull request #24735 from nixy/hy/0.12.1-update
hy: 0.11.1 -> 0.12.1
2017-04-08 08:45:00 +02:00
Vanessa McHale 8a78fc5a34 Merge branch 'master' of github.com:vmchale/nixpkgs 2017-04-08 00:14:49 -05:00
Vanessa McHale 47e943e8d1 init tweet-hs at 0.5.3.2 2017-04-08 00:09:31 -05:00
Andrew R. M 106214a7c9 hy: 0.11.1 -> 0.12.1
Fixed build inputs up a little while bumping version
2017-04-07 23:15:16 -04:00
Matthew Bauer 94acb5b780
yasr: make linux-only 2017-04-07 21:55:02 -05:00
Tim Steinbach 4151bf5fd4
scala: 2.11.9 -> 2.11.10 2017-04-07 19:54:40 -04:00
Dan Peebles 9ae3f39e8e p7zip: fix purity on Darwin
This should (I hope) get Hydra to build it. Fixes #24714
2017-04-07 16:51:23 -04:00
Sean Haugh 30b6561982 i3: add separateDebugInfo 2017-04-07 15:24:08 -05:00
Aristid Breitkreuz 65be0b3a4b bup: enable par2 by default
The par2 closure is <300 KB, so having it enabled by default seems
reasonable.
2017-04-07 21:47:03 +02:00
Evan Danaher 82a63385fb bup: 0.29 -> 0.29.1
This pretty much only has a single fix for gc --threshold 0:
https://github.com/bup/bup/blob/master/note/0.29.1-from-0.29.md
2017-04-07 15:44:10 -04:00