Commit Graph

119922 Commits

Author SHA1 Message Date
aszlig
44cb95a234
llvmPackages/libc++: Fix build against glibc 2.26
This is very similar to what we had in bb0b0822ef.

The xlocale.h header is no longer existing in glibc version 2.26, so we
need to avoid including it.

I've tested building against all of the libcxx attributes of LLVM 3.5,
3.7, 3.8, 3.9, 4 and 5.

All of them succeeded except version 3.5, which failed because of an
unrelated issue (build of libc++abi has failed, one of its
dependencies), so I only verified whether the patch applies cleanly.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @vcunat
2017-11-08 22:08:11 +01:00
Joerg Thalheim
03e8bed8b3 openafs-client: prefer patch provided by upstream 2017-11-08 20:47:22 +00:00
Jörg Thalheim
8d145da64a
Merge pull request #30127 from florianjacob/limit_interface_name_length
nixos/network-interfaces: assertion for too long interface names
2017-11-08 20:35:08 +00:00
Joerg Thalheim
4d2c2d8d9f openafs: add patch for glibc 2.26 2017-11-08 20:24:34 +00:00
Joerg Thalheim
55e6a5a4da android-udev-rules: 20171031 -> 20171107 2017-11-08 20:24:00 +00:00
aszlig
33b0b5ed1d
anki: Fix hash of the source tarball
Searching the web for the base-16 encoded hash of the one we have in the
Nix expression didn't give any results and I also couldn't find the
older tarball anywhere (even the mirrors I've checked don't have it).

So checking the updated hash I've found that other distros use this, so
I'd bet it's safe to do this.

I've tested building the package but I didn't do any runtime test.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @the-kenny
2017-11-08 21:12:22 +01:00
aszlig
a2045e029a
libstdc++5: Add patch to fix type for ucontext_t
Since glibc 2.26, struct ucontext no longer exists but is wrapped in a
typedef ucontext_t.

This is basically a backport of the patch to gcc version 4.5 which was
introduced by @vcunat in f04b64c1e9.

Building against x86_64-linux and i686-linux now succeeds.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @abbradar
2017-11-08 20:52:20 +01:00
Tim Steinbach
4cb8c5dc3c
linux-copperhead: 4.13.11.a -> 4.13.12.a 2017-11-08 14:34:31 -05:00
Tim Steinbach
087d1e8d36
linux: 4.13.11 -> 4.13.12 2017-11-08 14:34:31 -05:00
Tim Steinbach
db1e2444a5
linux: 4.9.60 -> 4.9.61 2017-11-08 14:34:31 -05:00
Tim Steinbach
bd4b9062ea
linux: 4.4.96 -> 4.4.97 2017-11-08 14:34:31 -05:00
Orivej Desh
27831cbd86
Merge pull request #31397 from nico202/reaver-upgrade
reaver-wps-t6x: 1.5.2 -> 1.6.3
2017-11-08 19:27:24 +00:00
John Ericson
0101856765
Merge pull request #30549 from obsidiansystems/bintools
treewide: Introduce stdenv.cc.bintools
2017-11-08 14:20:48 -05:00
Jörg Thalheim
999bcd098d
Merge pull request #31296 from ryantm/mattermost43
mattermost, nixos/mattermost: update to 4.3.0
2017-11-08 17:45:42 +00:00
Michael Raskin
e9965b5b19 julia_06: fix libgit2 tests by updating the literal strings searched in the error messages 2017-11-08 18:43:02 +01:00
Jörg Thalheim
f1992a206f
Merge pull request #31389 from xvapx/meliae
pythonPakages.meliae fix version
2017-11-08 17:42:30 +00:00
Maxime Dénès
a53462ea85 psc-package: 0.2.0 -> 0.2.4 2017-11-08 18:06:51 +01:00
Joerg Thalheim
00344162a7 Revert "nixos/test-instrumentation: softcode DISPLAY"
This reverts commit 4531ec5955.

This broke waitForX: b11ac5d29d (commitcomment-25486347)

cc @Lassulus
2017-11-08 17:04:39 +00:00
Nicolò Balzarotti
2b409cc7c3 reaver-wps-t6x: 1.5.2 -> 1.6.3 2017-11-08 17:42:58 +01:00
Sander van der Burg
f162d54b76
Merge pull request #31381 from Ma27/repackage-zed-with-node2nix
zed: replace npm2nix with node2nix
2017-11-08 17:11:10 +01:00
Peter Simons
c7203efb7d
Merge pull request #31333 from ElvishJerricco/unextracted-all-cabal-hashes
Unextracted all cabal hashes
2017-11-08 16:25:16 +01:00
aszlig
bb0b0822ef
neko: Fix build against glibc 2.26
The header file xlocale.h has been removed in glibc 2.26.

Quoting the release notes[1]:

* The nonstandard header <xlocale.h> has been removed. Most programs
  should use <locale.h> instead. If you have a specific need for the
  definition of locale_t with no other declarations, please contact
  libc-alpha@sourceware.org and explain.

I've backported HaxeFoundation/neko@e286c8f330
against version 2.1.0 and the build now succeeds.

Signed-off-by: aszlig <aszlig@nix.build>
2017-11-08 16:05:19 +01:00
Maximilian Bosch
e9bf6c4104
zed: replace npm2nix with node2nix 2017-11-08 16:03:01 +01:00
aszlig
845aae9c10
clisp: Add patch to remove reference to cfree
Fixes the build failure after the upgrade to glibc 2.26 in
9bb67d5c1e.

From the cfree(3) manpage:

This function should never be used. Use free(3) instead. Starting with
version 2.26, it has been removed from glibc.

From the glibc 2.26 release notes[1]:

* The obsolete function cfree has been removed.  Applications should use
  free instead.

[1]: https://sourceware.org/ml/libc-alpha/2017-08/msg00010.html

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @7c6f434c, @tohl
2017-11-08 15:52:25 +01:00
Jörg Thalheim
b11ac5d29d
Merge pull request #31198 from Lassulus/test-display
nixos/test-instrumentation: take DISPLAY from system-config
2017-11-08 14:44:16 +00:00
Michael Weiss
c4dbbbd890 gns3Packages.{server,gui}Preview: 2.1.0rc3 -> 2.1.0rc4 2017-11-08 14:56:36 +01:00
Yegor Timoshenko
8bc70c892a COPYING: there are no more bootstrap binaries in Nixpkgs tree 2017-11-08 14:56:02 +01:00
Robert Helgesson
503ddcf025
perl-String-ShellQuote: add license field 2017-11-08 14:21:14 +01:00
Robert Helgesson
3edc01d5d7
eclipse/plugins: remove phases fields 2017-11-08 14:16:10 +01:00
Joerg Thalheim
81154d929a dbench: fix compilation with glibc 2.6
stdint is needed for intptr_t
2017-11-08 12:39:07 +00:00
Orivej Desh
26ac0de8be
Merge pull request #31391 from devhell/mediainfo
{lib-}mediainfo{-gui},libzen: 0.7.99 -> 17.10, 0.4.35 -> 0.4.37
2017-11-08 12:13:38 +00:00
Michael Weiss
9413521682
Merge pull request #31375 from dywedir/sway
sway: 0.14.0 -> 0.15.0
wlc: 0.0.10 -> 0.0.11
2017-11-08 12:46:30 +01:00
makefu
292f60504c linux.kernel: enable build of stk1160 modules 2017-11-08 12:41:54 +02:00
Orivej Desh
82973dfc04 mediainfo: enable parallel building 2017-11-08 10:36:21 +00:00
Sander van der Burg
39015dbe4b nixui: do not copy node-env.nix on regeneration 2017-11-08 11:25:02 +01:00
Orivej Desh
06408bd713
Merge pull request #31380 from djgoku/bump-erlang-to-20.1
erlang: 20.0 -> 20.1
2017-11-08 10:15:34 +00:00
devhell
5bfeeef850 {lib-}mediainfo{-gui},libzen: 0.7.99 -> 17.10, 0.4.35 -> 0.4.37
Update to the latest version (note versioning change).

From the changelog for 'mediainfo' (libzen changelog is unavailable):
===
Version 17.10, 2017-11-02
--------------
+ We need your support! Visit https://mediaarea.net/SupportUs
+ Version scheme is now YY.MM (year dot month, 2 digits each)
+ New MediaInfo XML output, with XSD, more suitable for automatic
parsing. Use Option("Inform", "OLDXML") for keeping previous behavior
+ New "Info_OutputFormats" option for listing supported output formats
+ Universal Ad ID: refactored display, better display of value and
registry, XML name slightly modified
+ MOV: support of HDR metadata (MasteringDisplayColorVolume, MaxCLL,
 MaxFALL)
+ BWF: display of UMID and loudness info
+ AAC: show program_config_element in trace
+ MPEG Audio: frame rate info
+ PCM in WAV and Matroska: Support of ValidBitsPerSample
+ I197, EBUCore: 1.8 output uses now final version of XSD and final XSD
location
+ Matroska: tweaking frame rate empirical detection for some corner
cases
x I1070, LAME 3.100 info tag was incorrectly parsed
x B1068, MPEG Audio: Incoherent duration between General and Audio
parts, Audio part duration fixed
x Matroska: showing "A_MS/ACM" Matroska CodecID
x MXF: Fix crash with some buggy files
x MXF: was not well supporting MXF referencing only 1 file
x PCM in WAV: 8-bit content is unsigned and without endianess
x PCM in WAV and Matroska: More coherency between Wave info and
ExtensibleWave Info (bitdepth, sign)
x WAV: GUID display was with first 8 bytes in wrong order
x Several crash fixes
2017-11-08 10:06:57 +00:00
Orivej Desh
d19244d2b9
Merge pull request #31383 from orivej/hex
hex-packages: delete transitively unbuildable packages
2017-11-08 09:59:37 +00:00
Vladimír Čunát
c2b9ab578d
nfs-utils: fixup includes with glibc-2.26 2017-11-08 10:27:39 +01:00
Marti Serra
f4562ba8c3 pythonPakages.meliae fix version 2017-11-08 10:20:14 +01:00
Vladimír Čunát
18aada9c4c
virtualbox: fixup build with glibc-2.26
Explanation:
https://www.linuxquestions.org/questions/slackware-14/sbo-scripts-not-building-on-current-read-1st-post-pls-4175561999/page46.html#post5753698
2017-11-08 10:00:32 +01:00
Michael Raskin
27f7999280 glucose, glucose-syrup: 4.0 -> 4.1 2017-11-08 09:55:29 +01:00
dywedir
ffa60968a3 wlc: 0.0.10 -> 0.0.11 2017-11-08 10:40:00 +02:00
Orivej Desh
2aeb612326
Merge pull request #31385 from dtzWill/update/gnuplot-5.2.1
gnuplot: 5.2.0 -> 5.2.1
2017-11-08 08:07:04 +00:00
Bjørn Forsman
6c7c3beea3 keepassxc: rename from keepassx-community
I think the new name is more appropriate, see https://keepassxc.org/.
2017-11-08 08:48:54 +01:00
Will Dietz
7390087b78 gnuplot: 5.2.0 -> 5.2.1 2017-11-08 01:48:40 -06:00
Orivej Desh
ba86c9f27b hex-packages: delete transitively unbuildable packages
Fixes #26279
2017-11-08 07:23:51 +00:00
aszlig
b9b5942e2b
uqm: Remove the -lgcc_s hack
This is no longer needed and I've verified this by building and running
the game.

Signed-off-by: aszlig <aszlig@nix.build>
2017-11-08 06:48:57 +01:00
aszlig
7603da33de
uqm: Fix build against glibc 2.26
I've bisected the introduction of the build failure to be the glibc 2.26
upgrade with commit 9bb67d5c1e.

At first I was somewhat stumped why an glibc update could cause
undeclared identifiers, but after looking at the changes of glibc and
the source code of The Ur-Quan Masters the problem quickly turned out to
be this very change:

https://sourceware.org/git/?p=glibc.git;a=commit;h=7b037c095e31c2396d0a9b0e6356bc566ee4812f

So string.h now in turn includes strings.h, which in theory wouldn't be
a problem.

However, both strings.h and the strings.h in the uqm source code use
constant _STRINGS_H, which causes the glibc strings.h to be included but
the one from uqm basically includes an empty file.

Signed-off-by: aszlig <aszlig@nix.build>
2017-11-08 06:48:15 +01:00
Jonathan C. Otsuka
442e238234 erlang: 20.0 -> 20.1 2017-11-07 23:36:13 -06:00