Commit Graph

34421 Commits

Author SHA1 Message Date
Jörg Thalheim
6cfb2c8ebc
Merge pull request #85499 from bhipple/u/dnnl 2020-04-19 16:39:35 +01:00
Jan Tojnar
6cbf2e186c
webkitgtk: 2.28.0 → 2.28.1 (#85378)
Fixes a CVE https://webkitgtk.org/security/WSA-2020-0004.html
https://webkitgtk.org/2020/04/13/webkitgtk2.28.1-released.html
2020-04-19 16:54:16 +02:00
worldofpeace
0bab5253b1
Revert "[WIP] {help wanted} twolame: 2017-09-27 -> 0.4.0" 2020-04-18 20:43:37 -04:00
Vladimír Čunát
e233a9d4dd
Merge #84442: staging-next branch 2020-04-18 23:11:00 +02:00
Anderson Torres
8bafac89cd
Merge pull request #84363 from AndersonTorres/update-twolame
twolame : 2017-09-27 -> 0.4.0
2020-04-18 16:54:43 -03:00
Jan Tojnar
09c4736405
Merge pull request #83755 from jtojnar/jcat-0.1 2020-04-18 20:38:24 +02:00
Benjamin Hipple
dfe70a2d63 dnnl: 1.2.2 -> 1.4
The upstream readme has a note about renaming the git repo and libname:
https://github.com/oneapi-src/oneDNN#oneapi-deep-neural-network-library-onednn

Changelog: https://github.com/oneapi-src/oneDNN/releases/tag/v1.4
2020-04-18 11:40:47 -04:00
Pavol Rusnak
fadcfc3ea4
treewide: per RFC45, remove more unquoted URLs 2020-04-18 14:04:37 +02:00
Vladimír Čunát
d96487b9ca
Merge branch 'master' into staging-next
Hydra nixpkgs: ?compare=1582510
2020-04-18 07:42:26 +02:00
Will Dietz
ca722c5e2b libtorrent-rasterbar: 1.1.11 -> 1.2.5
https://raw.githubusercontent.com/arvidn/libtorrent/libtorrent-1_2_5/ChangeLog

The old release is kept available as libtorrentRasterbar-1_1_x for deluge 1.x.
2020-04-18 02:00:04 +02:00
Milan Pässler
69e73264a9 Partially revert "libtorrent-raster: 1.1.11 -> 1.2.5; qbittorrent: 4.2.1 -> 4.2.2"
This partially reverts commit cc03fb4210.
The libtorrentRasterbar update broke deluge 1.x, the hash was not
updated and obsolete dependencies and flags were not removed.
2020-04-18 02:00:04 +02:00
adisbladis
ce283f055b
Merge pull request #85448 from bhipple/fix/mesa-glu
mesa-glu: use HTTPS instead of FTP
2020-04-18 00:46:20 +02:00
Matthew Bauer
fcf33e2499 scs: breaks on 64bit blas 2020-04-17 16:24:31 -05:00
Matthew Bauer
98fb0ede70 arrayfire: remove mkl
This is unfree.
2020-04-17 16:24:30 -05:00
Matthew Bauer
1c8aba8334 treewide: use blas and lapack
This makes packages use lapack and blas, which can wrap different
BLAS/LAPACK implementations.

treewide: cleanup from blas/lapack changes

A few issues in the original treewide:

- can’t assume blas64 is a bool
- unused commented code
2020-04-17 16:24:09 -05:00
Matthew Bauer
43873351ff blas/lapack: add wrapper for “alternative”s of BLAS/LAPACK provider
This is based on previous work for switching between BLAS and LAPACK
implementation in Debian[1] and Gentoo[2]. The goal is to have one way
to depend on the BLAS/LAPACK libraries that all packages must use. The
attrs “blas” and “lapack” are used to represent a wrapped BLAS/LAPACK
provider. Derivations that don’t care how BLAS and LAPACK are
implemented can just use blas and lapack directly. If you do care what
you get (perhaps for some CPP), you should verify that blas and lapack
match what you expect with an assertion.

The “blas” package collides with the old “blas” reference
implementation. This has been renamed to “blas-reference”. In
addition, “lapack-reference” is also included, corresponding to
“liblapack” from Netlib.org.

Currently, there are 3 providers of the BLAS and LAPACK interfaces:

- lapack-reference: the BLAS/LAPACK implementation maintained by netlib.org
- OpenBLAS: an optimized version of BLAS and LAPACK
- MKL: Intel’s unfree but highly optimized BLAS/LAPACK implementation

By default, the above implementations all use the “LP64” BLAS and
LAPACK ABI. This corresponds to “openblasCompat” and is the safest way
to use BLAS/LAPACK. You may received some benefits from “ILP64” or
8-byte integer BLAS at the expense of breaking compatibility with some
packages.

This can be switched at build time with an override like:

    import <nixpkgs> {
        config.allowUnfree = true;
        overlays = [(self: super: {
          lapack = super.lapack.override {
            lapackProvider = super.lapack-reference;
          };
          blas = super.blas.override {
            blasProvider = super.lapack-reference;
          };
        })];
      }

or, switched at runtime via LD_LIBRARY_PATH like:

    $ LD_LIBRARY_PATH=$(nix-build -E '(with import <nixpkgs> {}).lapack.override { lapackProvider = pkgs.mkl; is64bit = true; })')/lib:$(nix-build -E '(with import <nixpkgs> {}).blas.override { blasProvider = pkgs.mkl; is64bit = true; })')/lib ./your-blas-linked-binary

By default, we use OpenBLAS LP64 also known in Nixpkgs as
openblasCompat.

[1]: https://wiki.debian.org/DebianScience/LinearAlgebraLibraries
[2]: https://wiki.gentoo.org/wiki/Blas-lapack-switch
2020-04-17 16:23:55 -05:00
Matthew Bauer
90326ba624 lapack: enable shared libraries, cblas, and tests 2020-04-17 16:17:12 -05:00
Jan Tojnar
42f2d370a5
Merge pull request #81955 from r-ryantm/auto-update/poppler-glib 2020-04-17 18:38:20 +02:00
Michele Guerini Rocco
8afc0daa29
Merge pull request #85431 from rnhmjoj/vapoursynth
vapoursynth: R48 -> R49
2020-04-17 18:20:46 +02:00
Benjamin Hipple
ba8c116519 mesa-glu: use HTTPS instead of FTP
FTP is often blocked by firewalls and is generally slower and less secure than HTTPS.

No change to `src` hash.
2020-04-17 11:35:16 -04:00
rnhmjoj
c339130b80
vapoursynth: R48 -> R49 2020-04-17 08:51:55 +02:00
Profpatsch
bcfca556f4 skalibs: 2.9.2.0 -> 2.9.2.1 2020-04-16 11:54:11 +02:00
Jan Tojnar
3d8e436917
Merge branch 'master' into staging-next 2020-04-16 10:09:43 +02:00
worldofpeace
10d1088f7f
Merge pull request #85338 from lopsided98/g2o-update
g2o: unstable-2019-04-07 -> 20200410
2020-04-16 02:33:43 -04:00
Jan Tojnar
03bfda0196
poppler: add freedesktop team to maintainers 2020-04-16 04:54:58 +02:00
Jan Tojnar
796f9696f1
poppler: 0.86.1 → 0.87.0 2020-04-16 04:18:09 +02:00
R. RyanTM
6187d5babc
poppler: 0.85.0 -> 0.86.1 2020-04-16 04:17:21 +02:00
Niklas Hambüchen
7d39eea965
Merge pull request #85283 from r-ryantm/auto-update/smarty3
smarty3: 3.1.34 -> 3.1.35
2020-04-16 04:16:30 +02:00
Ben Wolsieffer
9693911c5a g2o: unstable-2019-04-07 -> 20200410 2020-04-15 19:57:13 -04:00
Ben Wolsieffer
dd14ee840c g2o: fix log limit exceeded error in Hydra 2020-04-15 19:56:43 -04:00
Jan Tojnar
2a19a03431
Merge pull request #85210 from prusnak/gtk-mac-integration 2020-04-15 21:15:07 +02:00
Jan Tojnar
1fade973fc
libjcat: init at 0.1.1 2020-04-15 20:30:06 +02:00
R. RyanTM
33da4f7174 smarty3: 3.1.34 -> 3.1.35 2020-04-15 08:56:51 +00:00
Anderson Torres
36b48140d6
Merge pull request #84631 from AndersonTorres/update-biblesync+sword
Update biblesync+sword
2020-04-15 01:13:49 -03:00
Anderson Torres
0ee3bf460e
Merge pull request #84607 from AndersonTorres/update-libtap
libtap: 1.12.0 -> 1.14.0
2020-04-15 00:42:37 -03:00
AndersonTorres
b818fb185a cimg: 2.8.4 -> 2.9.0 2020-04-14 21:39:39 -03:00
AndersonTorres
968ccdbc39 sword: 1.7.4 -> 1.8.1 2020-04-14 20:39:13 -03:00
AndersonTorres
88978483b1 biblesync: 1.1.2 -> 2.0.1 2020-04-14 20:39:13 -03:00
Maximilian Bosch
85e15b545a
Merge pull request #85177 from mayflower/sslscan-openssl-ssl3
sslscan: enabling scanning for sslv3
2020-04-14 15:59:37 +02:00
Maximilian Bosch
401e07d419
Merge pull request #84551 from gnprice/pr-stripDebugList
treewide: Fix types of stripDebugList attrs (and fix doc)
2020-04-14 15:54:52 +02:00
Markus Kowalewski
11a99fb68f
globalarrays: 5.7 -> 5.7.1 2020-04-14 12:29:36 +02:00
Pavol Rusnak
da9feeb40b
gtk-mac-integration: 2.0.8 -> 2.1.3 2020-04-14 12:01:35 +02:00
Austin Seipp
7b235b02e4
liburing: 0.4pre514_2454d630 -> 0.6pre600
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2020-04-13 20:36:11 -05:00
Robin Gloster
f6be629595
sslscan: enabling scanning for sslv3 2020-04-13 21:23:22 +02:00
Jörg Thalheim
2d9888f61c
Merge pull request #85156 from DieGoldeneEnte/boost-check
boost: check clang version
2020-04-13 19:56:38 +01:00
Roberto Di Remigio
fcf009bbb2 highfive: init at 2.2
Co-Authored-By: Jon <jonringer@users.noreply.github.com>
2020-04-13 11:22:02 -07:00
Jan Tojnar
cc57640aeb
Merge pull request #84470 from jtojnar/ardour-cleanup
ardour: clean up the expression
2020-04-13 20:10:27 +02:00
Jan Tojnar
a04625379a
Merge branch 'master' into staging-next 2020-04-13 18:50:35 +02:00
Holger Wünsche
556b0e89ca
boost: check clang version
boost <1.69 can't be compiled with clang >=8. This commit adds an assert
to catch the error early on.
2020-04-13 16:01:50 +02:00
Eelco Dolstra
87d598e310
Merge pull request #85117 from r-ryantm/auto-update/opensubdiv
opensubdiv: 3.4.0 -> 3.4.3
2020-04-13 09:43:17 +02:00