Commit graph

21772 commits

Author SHA1 Message Date
ndowens d46fe334ca
ffmpegthumbnailer: 2.0.10 -> 2.2.0 2017-03-14 09:41:24 +01:00
Periklis Tsirakidis a6be98c9c1 qt57.{qtdeclarative,qtscript,qttranslations}: fix darwin compat
Fixes duplicate linkings issue for Qt-Frameworks provided by qtbase
during configurePhase.
2017-03-14 09:37:37 +01:00
Volth d4294265fd virt-viewer: 2.0 -> 5.0 2017-03-14 04:54:11 +00:00
ndowens 706bd194c7 iso-codes: 3.56 -> 3.74 2017-03-13 20:29:03 -05:00
ndowens 64218d61fc hwloc: 1.11.2 -> 1.11.6 (#23870) 2017-03-14 00:44:28 +01:00
Tuomas Tynkkynen aba0b45b86 Merge remote-tracking branch 'upstream/master' into staging
Conflicts:
      pkgs/development/libraries/qt-5/5.7/qtbase/default.nix
2017-03-14 00:49:22 +02:00
ndowens 4aee4cc8a5 htmlcxx: 0.85 -> 0.86 2017-03-13 17:11:03 -05:00
Tim Steinbach 6e0c3e1a6d Merge pull request #23862 from mimadrid/update/filezilla-3.25.0
filezilla: 3.24.0 -> 3.25.0
2017-03-13 17:58:34 -04:00
ndowens f3dab1a1e9 armadillo: 7.700.0 -> 7.800.0
armadillo: Added forgotton version update
2017-03-13 16:38:47 -05:00
mimadrid 7e9c815c23
libfilezilla: 0.9.0 -> 0.9.1 2017-03-13 22:17:08 +01:00
Vladimír Čunát b264486cf1
gnutls: bugfix+security 3.5.9 -> 3.5.10
http://gnutls.org/security.html#GNUTLS-SA-2017-3
2017-03-13 10:28:53 +01:00
Robin Gloster 89747d357b
msilbc: fix build 2017-03-13 09:33:15 +01:00
ndowens afeb989c5c gtkspell:3.0.8 -> 3.0.9 2017-03-12 20:38:46 -05:00
ndowens b64c6b46b1 gssdp: 0.14.11 -> 1.0.1 2017-03-12 19:41:00 -05:00
ndowens 86a23bcfff gmm: 4.3 -> 5.1
gmm: Remove whitespace
2017-03-12 18:51:15 -05:00
ndowens a2d50e744a gloox: 1.0.14 -> 1.0.20 2017-03-12 17:56:33 -05:00
Thomas Tuegel 65592837b6
freetype: 2.6.5 -> 2.7.1
The Infinality bytecode interpreter is removed in favor of the new v40 TrueType
interpreter. In the past, the Infinality interpreter provided support for
ClearType-style hinting instructions while the default interpreter (then v35)
provided support only for original TrueType-style instructions. The v40
interpreter corrects this deficiency, so the Infinality interpreter is no longer
necessary.

To understand why the Infinality interpreter is no longer necessary, we should
understand how ClearType differs from TrueType and how the v40 interpreter
works. The following is a summary of information available on the FreeType
website [1] mixed with my own editorializing.

TrueType instructions use horizontal and vertical hints to improve glyph
rendering. Before TrueType, fonts were only vertically hinted; horizontal hints
improved rendering by snapping stems to pixel boundaries. Horizontal hinting is
a risk because it can significantly distort glyph shapes and kerning. Extensive
testing at different resolutions is needed to perfect the TrueType
hints. Microsoft invested significant effort to do this with its "Core fonts for
the Web" project, but few other typefaces have seen this level of attention.

With the advent of subpixel rendering, the effective horizontal resolution of
most displays increased significantly. ClearType eschews horizontal hinting in
favor of horizontal supersampling. Most fonts are designed for the Microsoft
bytecode interpreter, which implements a compatibility mode with
TrueType-style (horizontal and vertical) instructions. However, applying the
full horizontal hints to subpixel-rendered fonts leads to color fringes and
inconsistent stem widths. The Infinality interpreter implements several
techniques to mitigate these problems, going so far as to embed font- and
glyph-specific hacks in the interpreter. On the other hand, the v40 interpreter
ignores the horizontal hinting instructions so that glyphs render as they are
intended to on the Microsoft interpreter. Without the horizontal hints, the
problems of glyph and kerning distortion, color fringes, and inconsistent stem
widths--the problems the Infinality interpreter was created to solve--simply
don't occur in the first place.

There are also security concerns which motivate removing the Infinality patches.
Although there is an updated version of the Infinality interpreter for FreeType
2.7, the lack of a consistent upstream maintainer is a security concern. The
interpreter is a Turing-complete virtual machine which has had security
vulnerabilities in the past. While the default interpreter is used in billions
of devices and is maintained by an active developer, the Infinality interpreter
is neither scrutinized nor maintained. We will probably never know if there are
defects in the Infinality interpreter, and if they were discovered they would
likely never be fixed. I do not think that is an acceptable situtation for a
core library like FreeType.

Dropping the Infinality patches means that font rendering will be less
customizable. I think this is an acceptable trade-off. The Infinality
interpreter made many compromises to mitigate the problems with horizontal
hinting; the main purpose of customization is to tailor these compromises to the
user's preferences. The new interpreter does not have to make these compromises
because it renders fonts as their designers intended, so this level of
customization is not necessary.

The Infinality-associated patches are also removed from cairo. These patches
only set the default rendering options in case they aren't set though
Fontconfig. On NixOS, the rendering options are always set in Fontconfig, so
these patches never actually did anything for us!

The Fontconfig test suite is patched to account for a quirk in the way PCF fonts
are named.

The fontconfig option `hintstyle` is no longer configurable in NixOS. This
option selects the TrueType interpreter; the v40 interpreter is `hintslight` and
the older v35 interpreter is `hintmedium` or `hintfull` (which have actually
always been the same thing). The setting may still be changed through the
`localConf` option or by creating a user Fontconfig file.

Users with HiDPI displays should probably disable hinting and antialiasing: at
best they have no visible effect.

The fontconfig-ultimate settings are still available in NixOS, but they are no
longer the default. They still work, but their main purpose is to set rendering
quirks which are no longer necessary and may actually be
detrimental (e.g. setting `hintfull` for some fonts). Also, the vast array of
font substitutions provided is not an appropriate default; the default setting
should be to give the user the font they asked for.

[1]. https://www.freetype.org/freetype2/docs/subpixel-hinting.html
2017-03-12 17:31:33 -05:00
Jörg Thalheim ceeb0de60c Merge pull request #23773 from ndowens/cdk
cdk:5.0-20160131 -> 5.0-20161210
2017-03-12 23:16:19 +01:00
ndowens f0bb10fea3 geis: 2.2.16 -> 2.2.17 2017-03-12 16:25:18 -05:00
ndowens d80cb1b080 gecode: 4.4.0 -> 5.0.0 2017-03-12 16:21:13 -05:00
ndowens 3d9d879bc0 ace: 6.3.3 -> 6.4.2 2017-03-12 21:03:42 +00:00
Bo Bakker 1d948ddc01
caf: init at 0.15.3
fixes #23772
2017-03-12 21:53:49 +01:00
ndowens 6723703f46 filter-audio: 20150624 -> 0.0.1 2017-03-12 15:43:03 -05:00
ndowens a7b6f2eee4 ffms: 2.21 -> 2.22 2017-03-12 15:24:05 -05:00
ndowens fb35166629 fcppt: 1.3.0 -> 2.5.0 2017-03-12 14:53:50 -05:00
ndowens e86bb4da9d exosip: 4.0.0 -> 4.1.0 2017-03-12 14:44:58 -05:00
ndowens 7b89e8b2b6 exempi: 2.2.2 -> 2.4.2 2017-03-12 14:33:54 -05:00
Nikolay Amiantov c05ac3ea12 makeDBusConf: re-add XDG directories for session bus
Fixes #23770.
2017-03-12 22:15:51 +03:00
ndowens 498cc60f90 libp11: 0.2.7 -> 0.4.4 2017-03-12 13:27:55 -05:00
ndowens 45cfd3969a drumstick: 1.0.2 -> 1.1.0 2017-03-12 20:23:44 +02:00
Jörg Thalheim 55074a0e3c Merge pull request #23783 from ndowens/cl
cl:1.2.1 -> 1.2.3
2017-03-12 18:51:43 +01:00
Jörg Thalheim 879ccfd69c Merge pull request #23779 from ndowens/chipmunk
chipmunk:7.0.0 -> 7.0.1
2017-03-12 18:50:08 +01:00
Karn Kallio d2e30a74f4
eigen : Fix an extra slash. 2017-03-12 18:40:07 +01:00
Vladimír Čunát 50fadc8b18
cups: split the $lib output
This saves > 10 MB from most closures.
Printing test succeeds on x86_64-linux.
2017-03-12 18:36:30 +01:00
Jörg Thalheim 28337316d1 Merge pull request #23796 from ndowens/dlib
dlib: 18.10 -> 19.4
2017-03-12 18:32:19 +01:00
Jörg Thalheim bcc3755477 Merge pull request #23784 from ndowens/ck
concurrencykit: 0.4.5 -> 0.6.0
2017-03-12 18:30:38 +01:00
ndowens 496b293070 dlib: 18.10 -> 19.4 2017-03-12 11:15:38 -05:00
Periklis Tsirakidis 4904df80bb qt57.qtbase: enable darwin compatibility 2017-03-12 15:02:24 +01:00
mimadrid a57d9e420c
libzip: 1.1.2 -> 1.2.0 2017-03-12 12:33:04 +01:00
ndowens 819b8c68de assimp: 3.2 -> 3.3.1 2017-03-12 08:34:51 +01:00
ndowens 1e68693cef cimg: 1.7.0 -> 1.7.9 2017-03-12 08:32:32 +01:00
ndowens a7843b01f2 chromaprint: 1.3.1 -> 1.3.2 2017-03-11 21:52:14 -06:00
ndowens 5f03cf8f94 concurrencykit: 0.4.5 -> 0.6.0 2017-03-11 21:15:29 -06:00
ndowens ef741de5b1 cl:1.2.1 -> 1.2.3 2017-03-11 20:59:11 -06:00
ndowens 5d025f5731 chipmunk:7.0.0 -> 7.0.1 2017-03-11 19:58:16 -06:00
ndowens a50e64a60c ceres-solver: 1.10.0 -> 1.12.0 2017-03-11 19:10:06 -06:00
ndowens e098899023 cdk:5.0-20160131 -> 5.0-20161210 2017-03-11 18:36:11 -06:00
Thomas Tuegel e24261ed16
qtbase: fix sed syntax in .pc file fixup 2017-03-11 16:25:48 -06:00
ndowens 286917bfc9 aubio: 0.4.1 -> 0.4.4 (#23739) 2017-03-11 15:28:07 +01:00
Tuomas Tynkkynen a241abf603 Revert "stdenv: aarch64 is also ARM"
This reverts commit a5f4e22289.

Breaks the stdenv build, e.g.: http://hydra.nixos.org/build/50015717
In general, the architectures are different enough that there is no
reason to consider both as ARM, just like we don't consider x86_64 as
32-bit x86.

cc @fpletz
2017-03-11 15:57:51 +02:00
Robin Gloster 91bbd73ffa
suil-qt5: fix build 2017-03-11 14:47:29 +01:00
aszlig e25f8f2e37
gwenhywfar: 4.15.3 -> 4.17.0
* 4.17.0: A few smaller fixes.
 * 4.16.0beta: It's now possible to show saved passwords from the
               GWEN_PASSWD_STORE file.
 * 4.15.6beta: Improve Certificate handling with TLS connections.
 * 4.15.5beta: Fix problem with some servers aborting SSL connections.

The full changelogs in German can be found at:

https://www.aquamaniac.de/sites/news/index.php

Built and tested successfully on my machine.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-03-11 12:38:01 +01:00
aszlig 460c064852
aqbanking: 5.6.10 -> 5.6.12
* 5.6.11: Fix problem with some servers aborting SSL connections.
 * 5.6.12: Improve handling of offset accounts during turnover
           retrieval.

The full changelogs in German can be found at:

https://www.aquamaniac.de/sites/news/index.php

Built and tested successfully on my machine.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-03-11 12:37:58 +01:00
aszlig 1de5f1bbeb
aqbanking/updater: Switch to HTTPS URL
The site has changed to HTTPS and no longer serves HTTP (yay).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-03-11 12:37:54 +01:00
Franz Pletz bf6c90ed67
libarchive: 3.2.2 -> 3.3.1 2017-03-11 10:25:34 +01:00
Franz Pletz 70b174d79d
Revert "libarchive: 3.2.2 -> 3.3.1"
This reverts commit 051b3b3b78.

This is a mass rebuild and should go into staging.
2017-03-11 10:24:29 +01:00
Franz Pletz a5f4e22289
stdenv: aarch64 is also ARM 2017-03-11 09:40:19 +01:00
Michael Raskin 8ef4cd9e20 Merge pull request #23733 from ndowens/cgal
cgal: 4.7 -> 4.9
2017-03-11 08:18:57 +00:00
Franz Pletz 051b3b3b78
libarchive: 3.2.2 -> 3.3.1 2017-03-11 08:14:28 +01:00
vbgl cef420bd61 cgal: fix typo in license 2017-03-11 06:49:31 +00:00
ndowens 9017f36349 appstream: 0.9.5 -> 0.10.6 2017-03-10 18:49:01 -06:00
Tuomas Tynkkynen 8d3c35ad02 SDL2_gfx: Fix non-x86 build 2017-03-11 02:37:00 +02:00
Daiderd Jordan a2eae3bc44
Revert "Merge pull request #23602 from periklis/topic_qt57_darwin"
This reverts commit 4c0737eb80, reversing
changes made to 943c4ed72f.
2017-03-11 00:28:23 +01:00
ndowens 0a72e457cc cgal: 4.7 -> 4.9 2017-03-10 17:16:01 -06:00
ndowens 6e73c30135 coinmp: 1.7.6 -> 1.8.3 2017-03-10 16:48:29 -06:00
ndowens ccba00655a libhttpseverywhere: 0.2.3 -> 0.2.10 2017-03-10 15:56:35 -06:00
Tuomas Tynkkynen 2b450377bf boost155: Not supported on aarch64 2017-03-10 20:06:34 +02:00
Thomas Tuegel 4c0737eb80 Merge pull request #23602 from periklis/topic_qt57_darwin
qt57: darwin compatibility
2017-03-10 09:54:06 -06:00
Thomas Tuegel 66bc2135f6
qtbase: don't patch non-existent .pc files on Darwin 2017-03-10 09:23:05 -06:00
Thomas Tuegel 64b88c3017 Merge branch 'master' into phonon-gstreamer 2017-03-10 07:30:14 -06:00
Thomas Tuegel 5a05f6f483
phonon-backend-gstreamer: hardcode gstreamer plugin paths 2017-03-10 07:26:39 -06:00
Periklis Tsirakidis c663f6aba9 qt57: darwin compatibility
Port of the qt56 compatibility patch 7a9400d by @acowley
2017-03-10 08:25:09 +01:00
Vladimír Čunát ed4a79c65e
Merge branch 'master' into staging
... to fix an evaluation problem in dogecoin.
2017-03-09 23:14:19 +01:00
Vladimír Čunát 6211765676
qtstyleplugins: fix eval of meta 2017-03-09 23:09:32 +01:00
rnhmjoj 4c33ea35b7 libpcap: fix missing remote-ext.h error 2017-03-09 22:08:33 +02:00
Michael Raskin 308f13ce60 libre: 0.5.0 -> 0.5.1 2017-03-09 18:59:31 +01:00
Michael Raskin eaf8cf2f75 harfbuzz: 1.4.2 -> 1.4.4 2017-03-09 18:59:31 +01:00
Michael Raskin 6de1b73db1 eigen: 3.2.5 -> 3.2.10 2017-03-09 18:59:30 +01:00
Michael Raskin b5485da2cd icu_57: init at 57.1 for LibreOffice Still 2017-03-09 18:47:38 +01:00
Michael Raskin 8a91ac56b4 eigen3_3: 3.3.1 -> 3.3.3 2017-03-09 18:47:38 +01:00
Michael Raskin 3589e08ac5 mpir: 2.7.2 -> 3.0.0 2017-03-09 18:47:37 +01:00
Michael Raskin 6962e84b8d botan2: init at 2.0.1 2017-03-09 18:47:37 +01:00
Dan Peebles 15a1743d87 libuv: disable tests (temporarily) on Darwin
They're flaky, break Hydra builds regularly, and lots of stuff depends
transitively on libuv.
2017-03-09 07:45:50 -05:00
Nikolay Amiantov 7eb9a85b90 qt5.qtwebengine: fix library paths
Without this it would try to find files in qtbase.
2017-03-09 15:38:10 +03:00
Robin Gloster 32bcda741a
Merge pr/23635, pr/23634 and pr/23633 to fix firefox 2017-03-08 17:51:18 +01:00
Tuomas Tynkkynen c8402dde15 libp11: Fetch src from GitHub 2017-03-08 15:31:34 +02:00
Alexey Shmalko 28598c01e7
icu: 57.1 -> 58.2
Firefox requires new version of the icu to build:
```
checking for icu-i18n >= 58.1... Requested 'icu-i18n >= 58.1' but version of icu-i18n is 57.1
configure: error: Library requirements (icu-i18n >= 58.1) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
```
2017-03-08 14:01:39 +02:00
Alexey Shmalko d4bb1c786f
sqlite: 3.16.2 -> 3.17.0
Firefox requires the latest sqlite to build:
```
checking for sqlite3 >= 3.17.0... Requested 'sqlite3 >= 3.17.0' but version of SQLite is 3.16.2
configure: error: Library requirements (sqlite3 >= 3.17.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
```
2017-03-08 13:39:40 +02:00
Alexey Shmalko cb670556c5
nss: 3.28.1 -> 3.28.3
This should fix firefox build, which fails due to nss being too old.
2017-03-08 13:27:16 +02:00
Vladimír Čunát b86b7c04a3
Merge branch 'master' into staging 2017-03-07 21:59:32 +01:00
Vladimír Čunát 17b64e8929
mesa: maintenance 17.0.0 -> 17.0.1 2017-03-07 21:48:18 +01:00
Peter Simons e7b68767a8 nlopt: rescue build by dropping support for Octave 2017-03-07 14:56:46 +01:00
Joachim Fasting 9632cc221a
zimlib: 20150710 -> 1.4 2017-03-07 14:06:09 +01:00
Will Dietz 5013998b0e
ustr: Remove unhelpful 'buildTargets' value.
mkDerivation doesn't do anything with this,
and while it does become an environment variable
AFAICT that was never the intention and isn't helpful here.
2017-03-06 19:34:07 -05:00
Franz Pletz d102115101 Merge pull request #23573 from LnL7/darwin-gss
gss: don't build with shishi on darwin
2017-03-07 00:31:04 +01:00
Graham Christensen 5054035c18 Merge pull request #23571 from rycee/remove/javasvn
javasvn: remove
2017-03-06 17:27:53 -05:00
Robert Helgesson a3e6b41d36
javasvn: remove
Upstream URL is invalid and the package has not had direct attention
since June 2006.
2017-03-06 23:07:11 +01:00
Daiderd Jordan a5fcca2004
gss: don't build with shishi on darwin 2017-03-06 22:57:54 +01:00
mimadrid eba71df6bc
sqlite3_analyzer: 3.8.10.1 -> 3.17.0
fixes #23479
2017-03-06 20:53:34 +01:00
Jörg Thalheim b10fb4624b
xapian-ruby: link against correct xapian 2017-03-06 20:24:07 +01:00
AndersonTorres 1205b27b24
wxSVG: init at 1.5.11 2017-03-06 17:36:20 +01:00
Graham Christensen 33b738be44 Merge pull request #23386 from lsix/update_gnupg21
gnupg21: 2.1.18 -> 2.1.19
2017-03-06 09:03:18 -05:00
Benno Fünfstück 128901e09f phonon-backend-gstreamer: don't create $out/$out/share/icons
The build system tries to update the mtime of the icons directory if
`DESTDIR` is unset. That code has bug though that does not deal well
with absolute `CMAKE_SHARE_PREFIX` resulting a double prefix bug.

Setting `DESTDIR=/` (should be a no-op) fixes this.
2017-03-06 13:25:12 +01:00
Renaud f39e718cab
uriparser: 0.8.2 -> 0.8.4
Fixed the Makefile for the doc : there is no .map files to install in
this release since dot outputs images in PNG and SVG

fixes #23456
2017-03-06 08:41:47 +01:00
Thomas Tuegel 2a38551651
qtwebengine: update build system paths for Qt 5.8 2017-03-05 17:05:33 -06:00
Thomas Tuegel 923224ab2e
qtstyleplugins: mark broken with Qt 5.8 2017-03-05 17:05:17 -06:00
Thomas Tuegel 869037812c
qttools: update cmake paths for Qt 5.8 2017-03-05 17:04:53 -06:00
Tomas Hlavaty 079c306c6e openshot-qt: remove myself from the maintainer list 2017-03-05 20:47:24 +01:00
Vladimír Čunát 2fd787ddd1
libuv: disable another flaky test on Darwin
I really want to avoid debugging these on Darwin.
2017-03-05 12:38:20 +01:00
Vladimír Čunát 2839b101f9
Merge commit older staging
No new failures on Hydra.
2017-03-05 08:00:42 +01:00
Michael Raskin 3f817d09b9 Merge pull request #23430 from rnhmjoj/libchop
libchop: fix package
2017-03-04 23:43:55 +00:00
Bjørn Forsman f5d460a7a0
qt5.qtbase: fix host_bins= path in pkg-config file
So that pkg-config can be used to find 'moc' etc. (Currently it points
to a non-existing path.)

Fixes #22945 ('Linux kbuild incompatible with "nix-shell -p qt5.full"').
2017-03-04 15:08:47 -06:00
Thomas Tuegel 8ec7f51167
phonon: 4.9.0 -> 4.9.1
Fix build failure with Qt 5.8.0
2017-03-04 15:08:47 -06:00
Thomas Tuegel cd7d8a60b4
qt58: init at 5.8.0
Qt 5.8 is now the default version.
2017-03-04 15:08:47 -06:00
Thomas Tuegel a368a80c90
libxkbcommon: add ttuegel to maintainers 2017-03-04 15:08:47 -06:00
Thomas Tuegel a909329bed
libxkbcommon: 0.6.1 -> 0.7.1 2017-03-04 15:08:46 -06:00
Thomas Tuegel ff8f2b87e8 Merge pull request #23451 from ttuegel/mesa-drivers
mesa: allow overriding driver compilation
2017-03-04 15:05:30 -06:00
Wout Mertens 9ed232b730 Merge pull request #23480 from mimadrid/update/sqlite3-3.17.0
sqlite: 3.16.2 -> 3.17.0
2017-03-04 13:41:21 +01:00
mimadrid f704050a21
sqlite: 3.16.2 -> 3.17.0 2017-03-04 11:59:54 +01:00
Graham Christensen 75bc511222 Merge pull request #22848 from loskutov/gpgme-macos-fix
gpgme: fix build on macOS
2017-03-03 14:48:10 -05:00
Joachim Schiele d6b0c87bda tlspool: init at 20170123 (#23437) 2017-03-03 17:38:33 +01:00
Thomas Tuegel eccc1fa9bb
mesa: allow overriding driver compilation 2017-03-03 10:01:34 -06:00
Vladimír Čunát da34670033
snappy: split into multiple outputs
Most of the size was documentation;
it got into many closures via mysql attribute.
2017-03-03 14:30:36 +01:00
Vladimír Čunát d5d7fcb95f
snappy: performance update 1.1.3 -> 1.1.4
... and use release tarball instead of snapshot.
2017-03-03 14:27:48 +01:00
Robin Gloster 75c3f00971
libclc: fix evaluation 2017-03-03 12:39:39 +01:00
Benno Fünfstück 410bba8f95 libbladeRF: fix udev rule location in $out
Shell variables in cmakeFlags are not expanded, so the rules instead ended up
in `$out/'$out'/etc/udev/rules.d`.
2017-03-03 12:27:49 +01:00
Lancelot SIX a25c93994b Merge pull request #23094 from veprbl/for_upstream
pythonPackages: add pyhepmc, graphviz; bump rootpy
2017-03-03 09:42:55 +01:00
rnhmjoj fc12998c3a
libchop: fix package 2017-03-03 04:56:57 +01:00
Tuomas Tynkkynen 1254f1a46a gf2x: Disable i686 build
http://hydra.nixos.org/build/49552136/nixlog/3/raw
2017-03-03 00:21:47 +02:00
Graham Christensen 5ce06263a3
kdeFrameworks.kio: patch for insecure URL passing 2017-03-02 08:26:25 -05:00
Robin Gloster c1866cade9
libsForQt5.qmltermwidget: fix build 2017-03-02 14:13:35 +01:00
Cray Elliott d2aa1706bd ffmpeg-full: 3.2.2 -> 3.2.4 2017-03-02 02:44:28 -08:00
Lancelot SIX ff9891767f
libgpg-error: 1.26 -> 1.27 2017-03-02 10:07:59 +01:00
Dmitry Kalinkin cb1b08a871
herwig: 7.0.3 -> 7.0.4 2017-03-01 22:53:41 -05:00
Ben Darwin 05359c327b ANTs: init at 2.1.0 (0gyys1lf) 2017-03-01 21:06:30 -05:00
Vladimír Čunát b43614a6bb
Merge branch 'staging'
(Truly, this time :-)
2017-03-01 11:34:44 +01:00
Peter Hoeg fa03b8279f libbsd: 0.8.2 -> 0.8.3 2017-03-01 09:36:53 +08:00
Thomas Tuegel baac92fc41 Merge pull request #23286 from ttuegel/qt5-community-releases
Update Qt 5 community releases automatically
2017-02-28 11:14:38 -06:00
Thomas Tuegel 0e5cce32d8
qt57: update community releases automatically 2017-02-28 11:10:02 -06:00
Robin Gloster 8ddfbe34bc
libjson_rpc_cpp_0_2_1: remove 2017-02-28 17:15:04 +01:00
Robin Gloster efd9331333
libjson-rpc-cpp: 0.6.0 -> 0.7.0, fix build 2017-02-28 17:15:04 +01:00
Robin Gloster 4c04d4e6e2
libclc: 2015-08-07 -> 2017-02-25 2017-02-28 17:15:04 +01:00
Gabriel Ebner ffcc897090 qt5.qttools: fix path to qhelpgenerator 2017-02-28 16:48:44 +01:00
Robin Gloster be84f410cd
libcm: remove
umaintained, broken and not used for 10 years
2017-02-28 16:06:23 +01:00
Nikolay Amiantov d7ecf89580 opensubdiv: 3.0.5 -> 3.2.0
Also remove cudatoolkit override as we have cudatoolkit = cudatoolkit8 now.
2017-02-28 17:22:06 +03:00
Robin Gloster 6784a44296
clearsilver: fix build
fixes CVE-2011-4357
cc @grahamc, @fpletz, @domenkozar, @rbvermaa
2017-02-28 15:14:55 +01:00
Thomas Tuegel cff0e06ed7
kwindowsystem: mark broken on Qt 5.5 2017-02-28 07:53:32 -06:00
Thomas Tuegel a7d3a084b9
attica: mark broken on Qt 5.5 2017-02-28 07:53:28 -06:00
Thomas Tuegel a821be7a06
sonnet: mark broken on Qt 5.5 2017-02-28 07:53:25 -06:00
Thomas Tuegel a8cc6d909b
kconfig: mark broken on Qt 5.5 2017-02-28 07:53:25 -06:00
Thomas Tuegel 9cd0754191
karchive: mark broken on Qt 5.5 2017-02-28 07:53:24 -06:00
Thomas Tuegel b682464f4e
kwidgetsaddons: mark broken on Qt 5.5 2017-02-28 07:53:24 -06:00
Thomas Tuegel 49f554aae0
kcoreaddons: mark broken on Qt 5.5 2017-02-28 07:53:24 -06:00
Thomas Tuegel eb340b5753
ki18n: mark broken on Qt 5.5 2017-02-28 07:53:23 -06:00
Thomas Tuegel 4208845583
kitemviews: mark broken on Qt 5.5 2017-02-28 07:53:23 -06:00
Thomas Tuegel c1630b5337
kdbusaddons: mark broken on Qt 5.5 2017-02-28 07:53:22 -06:00
Thomas Tuegel ffa8be8a0a
kguiaddons: mark broken on Qt 5.5 2017-02-28 07:53:07 -06:00
Thomas Tuegel be580f91d8
kcodecs: mark broken on Qt 5.5 2017-02-28 07:53:01 -06:00
Thomas Tuegel 6ddaa3f746
solid: mark broken on Qt 5.5 2017-02-28 07:53:01 -06:00
Thomas Tuegel e1bd5c96ea
syntax-highlighting: mark broken on Qt 5.5 2017-02-28 07:53:00 -06:00
Thomas Tuegel 78b6a1ad14
kwayland: mark broken on Qt 5.5 2017-02-28 07:53:00 -06:00
Thomas Tuegel 34df5c5684
bluez-qt: mark broken on Qt 5.5 2017-02-28 07:41:16 -06:00
Thomas Tuegel 29d0bf7434
kplotting: mark broken on Qt 5.5 2017-02-28 07:40:40 -06:00
Thomas Tuegel e77114e72b
kitemmodels: mark broken on Qt 5.5 2017-02-28 07:40:01 -06:00
Thomas Tuegel 5f372535cd
kidletime: mark broken on Qt 5.5 2017-02-28 07:37:22 -06:00
Thomas Tuegel e5283531c4
kdnssd: mark broken on Qt 5.5 2017-02-28 07:36:54 -06:00
Thomas Tuegel 3acf24e67e
networkmanager-qt: mark broken on Qt 5.5 2017-02-28 07:36:08 -06:00
Thomas Tuegel e7b2300a0c
threadweaver: mark broken on Qt 5.5 2017-02-28 06:01:52 -06:00
Thomas Tuegel a0b0dd2a32
modemmanager-qt: mark broken on Qt 5.5 2017-02-28 06:01:12 -06:00
Vladimír Čunát e6541423b6
libuv: disable a problematic test on Darwin 2017-02-28 09:14:38 +01:00
Vladimír Čunát a1919db7cd
Merge branch 'master' into staging 2017-02-27 20:15:27 +01:00
Vladimír Čunát 18bd007714
Merge #23245: break gnutls -> openssl dependency 2017-02-27 20:14:30 +01:00
Vladimír Čunát a9c7610874
Merge #22854: mesa: 13.0.x -> 17.0.0
The versioning scheme is changing to start with the year.
2017-02-27 20:12:37 +01:00
Thomas Tuegel 1d71027632
qt55: Add compatibility attribute for qtquickcontrols2 2017-02-27 11:50:05 -06:00
Thomas Tuegel e8ad7f0570
qt5: Add compatibility attribute for qtquick1 2017-02-27 11:50:03 -06:00
Thomas Tuegel 127bf18a35
extra-cmake-modules: Lift Qt dependency 2017-02-27 11:49:46 -06:00
Thomas Tuegel e21b5da630
qt56.qtquickcontrols2: init at 5.6.2 2017-02-27 11:49:37 -06:00
Thomas Tuegel 490bbb288e
qt56: Update instructions 2017-02-27 11:49:32 -06:00
Thomas Tuegel fca3f2e661
kdeFrameworks: Hide internal kdeFramework deriver 2017-02-27 11:49:27 -06:00
Thomas Tuegel 68e0bc38a2
Move kdeWrapper out of kdeFrameworks 2017-02-27 11:49:21 -06:00
Thomas Tuegel d446303d0b
Move kdeDerivation out of kdeFrameworks 2017-02-27 11:49:16 -06:00
Thomas Tuegel a33ab04d1b
Clean up KDE Frameworks 2017-02-27 11:49:15 -06:00
Thomas Tuegel c650dc8bd7
kirigami_2: Do not mix Qt versions! 2017-02-27 11:49:15 -06:00
Thomas Tuegel e39a4597ce
mkLibsForQt5: remove kdeFrameworks attribute 2017-02-27 11:49:13 -06:00
Thomas Tuegel 8eb4d2afbc
Remove top-level kde5 attribute
- There is no such thing as KDE 5
2017-02-27 11:49:10 -06:00
Thomas Tuegel 4f2e7a0424
Separate Qt 5 packages from dependent libraries 2017-02-27 11:49:04 -06:00
Vladimír Čunát 78e4f9d8d7
libevent: split _openssl into a separate output
... to save ~3.4 MB of openssl from the default closure.
2017-02-27 18:18:39 +01:00
Shea Levy fa84ad2593 gusb: 0.2.4 -> 0.2.9 2017-02-27 08:30:20 -05:00
Shea Levy 0c2f96a81f appstream-glib: propagate gtk3 2017-02-27 08:29:58 -05:00
Graham Christensen ba78819782 Merge pull request #23225 from joachifm/webkitgtk24x-broken
webkitgtk24x: mark as insecure
2017-02-27 07:13:54 -05:00
Bjørn Forsman 3d104ab2b3 gst-plugins-base: align attrname with pkgname 2017-02-27 12:16:26 +01:00
Bjørn Forsman 9e21b2c5e9 gst-python: align attrname with pkgname 2017-02-27 12:16:26 +01:00
Edward Tjörnhammar 5e44b5e299
protobuf3_2: init at 3.2 2017-02-27 10:52:21 +01:00
Bart Brouns 90690e71b0 fftw: 3.3.5 -> 3.3.6-pl1 (#23226) 2017-02-27 09:22:32 +01:00
Joachim Fasting 442b589b71
webkitgtk24x: mark as insecure
See https://github.com/NixOS/nixpkgs/issues/18312
2017-02-26 22:52:07 +01:00
Bjørn Forsman 392331ad58 pythonPackages.gst-python: fix source hash
Commit 5e937b173d
("gstreamer: 1.10.3 -> 1.10.4 for multiple CVEs") bumped the version but not
the hash.
2017-02-26 21:28:41 +01:00
Franz Pletz 8fcd1a063e
faac: fix build with glibc-2.25
Use patches from Arch to really build against the provided external
mp4v2 library.
2017-02-26 19:09:29 +01:00
Franz Pletz 5e937b173d
gstreamer: 1.10.3 -> 1.10.4 for multiple CVEs
See https://gstreamer.freedesktop.org/releases/1.10/#1.10.4.

Fixes:

  * CVE-2017-5847
  * CVE-2017-5848

cc #23072
2017-02-26 18:08:42 +01:00
Thomas Tuegel 0ed156a216 Merge pull request #22977 from ttuegel/triage-kde4
Remove KDE 4 desktop packages
2017-02-25 12:21:44 -06:00
Jonathan Rudenberg a6dffeecfa libcec: 3.1.0 -> 4.0.2 2017-02-25 08:53:31 +01:00