Commit graph

42002 commits

Author SHA1 Message Date
sternenseemann f4e018075e gnatcoll-core: init at 21.0.0 2021-08-03 14:58:49 +02:00
sternenseemann c3c4ef859a gprbuild, xmlada: init at 21.0.0
GPRbuild is a multi language build system developed by AdaCore which
is mostly used for build Ada-related projects using GNAT.

Since GPRbuild is used to build itself and its dependency library
XML/Ada we first build a bootstrap version of it using the provided
bash build script bootstrap.sh as the gprbuild-boot derivation.
gprbuild-boot is then used to build xmlada and the proper gprbuild
derivation.

GPRbuild has its own search path mechanism via GPR_PROJECT_PATH which
we address via a setupHook. It currently works quite similar to the
pkg-config one: It accumulates all inputs into GPR_PROJECT_PATH,
GPR_PROJECT_PATH_FOR_BUILD etc. However this is quite limited at the
moment as we don't have a gprbuild wrapper yet which understands the
_FOR_BUILD suffix. However, we'll need to address this in the future
as it is currently basically impossible to test since the distinction
only affects cross-compilation, but it is not possible to build a GNAT
cross-compiler in nixpkgs at the moment (I'm working on changing that,
however).

Another issue we had to solve was GPRbuild not finding the right GNAT
via its gprconfig tool: GPRbuild has a knowledge base with compiler
definitions which run some checks and collect info about binaries
which are in PATH. In the end the first compiler in PATH that supports
the desired language is selected.

We want GPRbuild to discover our wrapped GNAT since the unwrapped one
is incapable of producing working binaries since it won't find the
crt*.o objects distributed with libc. GPRbuild however needs to find
the Ada runtime distributed with GNAT which is not part of the wrapper
derivation, so it will skip the wrapper and select the unwrapped GNAT.
Symlinking the unwrapped's lib directory into the wrapper fixes this
problem, but breaks linking in some cases (e. g. when linking against
OMP from gcc, the runtime variant will shadow the problem dynamic lib
from buildInputs). Additionally it uses gnatls as an indicator it has
found GNAT which is not part of the wrapper.

The solution we opted to adopt here is to install a custom compiler
description into gprbuild's knowledge base which properly detects the
nixpkgs GNAT wrapper: It uses gnatmake to detect GNAT instead of
gnatls and discovers the runtime via a symlink we add to
`$out/nix-support`. This additional definition is enough to properly
detect GNAT, since the plain wrapped gcc detection works out of the
box. It may, however, be necessary to add special definitions for
other languages in the future where gprbuild also needs to discover
the runtime.

One future improvement would be to install libgpr into a separate
output or split it into a separate derivation (which would require to
link gprbuild statically always since otherwise we end up with a
cyclical dependency).
2021-08-03 14:58:49 +02:00
R. RyanTM 6754fbb8b2 duckdb: 0.2.7 -> 0.2.8 2021-08-03 04:19:50 +00:00
Dmitry Kalinkin 32f2712625
fastnlo_toolkit: enable tests 2021-08-02 07:41:35 -04:00
Dmitry Kalinkin 3e4f2f4f51
fastnlo_toolkit: 2.3.1pre-2411 -> 2.5.0pre-2823 2021-08-02 07:41:34 -04:00
Sandro Jäckel 76341deaab
grpc: format 2021-08-02 13:12:04 +02:00
Sandro Jäckel 42e7791556
grpc: format 2021-08-02 10:59:36 +02:00
Sandro Jäckel 6cd1b4ef26
zchunk: format 2021-08-02 10:58:45 +02:00
Ben Siraphob ae3a055677
Merge pull request #132310 from alyssais/grpc
grpc: fix cross
2021-08-02 15:31:36 +07:00
Sandro bf768225b2
Merge pull request #132015 from Artturin/pcl
pcl: 1.11.1 -> 1.12.0
2021-08-02 07:57:22 +00:00
Tom Repetti c925232e67 lemon-graph: init at 1.3.1 2021-08-01 11:55:48 -04:00
Alyssa Ross b2402c5cd3
grpc: fix cross
I couldn't find any alternative to setting _gRPC_PROTOBUF_PROTOC_EXECUTABLE.
protobuf.cmake uses find_program when cross-compiling, which finds the
host platform's protoc instead of the build platform's.  I even tried
giving protobuf multiple outputs and not including the one with the
binary in buildInputs, but it didn't help.
2021-08-01 13:03:24 +00:00
R. RyanTM 61a014cd05 lime: 4.5.14 -> 5.0.0 2021-08-01 09:37:51 +00:00
Jörg Thalheim f5135a1291
Merge pull request #132272 from angustrau/libgme
libgme: fix build on apple silicon
2021-08-01 08:06:43 +01:00
Ben Siraphob 286553db51
Merge pull request #132258 from r-ryantm/auto-update/gensio
gensio: 2.2.7 -> 2.2.8
2021-08-01 12:09:18 +07:00
Ben Siraphob 2d74656a15
Merge pull request #132262 from smancill/libcanberra-darwin
libcanberra/libcanberra-gtk2: fix build on darwin
2021-08-01 12:04:46 +07:00
Angus Trau 9ab9a8118c libgme: fix build on apple silicon 2021-08-01 12:53:10 +10:00
Sebastián Mancilla bf0cd1ce16 libcanberra/libcanberra-gtk2: fix build on darwin
All libcanberra/libcanberra-gtk2/libcanberra-gtk3 packages were marked
as broken on commit 806d814516 (libcanberra: mark broken on darwin,
2021-02-11), but only libcanberra-gtk3 is broken due to the missing
header.

This commit refactors how to enable GTK support, to mark just
libcanberra-gtk3 as broken and allow building libcanberra and
libcanberra-gtk2.

libcanberra builds but the linker fails with:

    ld: file not found: /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon for architecture x86_64
    clang-7: error: linker command failed with exit code 1 (use -v to see invocation)

Adding Carbon to the inputs solves the problem.

libcanberra-gtk2 builds and the linker finishes without the above error,
most likely because it depends on gtk2 and gtk2 depends on Cocoa.

Also fix some issues with the derivation:

- Use pname/version instead of name.
- Use lib.optionalString to set postPatch.
- Only set passthru if building with GTK support, and ensure that the
  proper directory is passed for each GTK version.
2021-07-31 19:35:48 -04:00
R. RyanTM bf3fd5a7db gensio: 2.2.7 -> 2.2.8 2021-07-31 23:02:39 +00:00
AndersonTorres ce2d6c8e97 zchunk: 1.1.11 -> 1.1.16 2021-07-31 19:26:30 -03:00
wheelsandmetal ec6c669d5e sentry-native: init at 0.4.11 2021-07-31 21:40:51 +01:00
Ben Siraphob 2f94991628 treewide: fix redirected URLs
Using the script in maintainers/scripts/update-redirected-urls.sh
2021-08-01 00:01:50 +07:00
Ben Siraphob 554c50b617
Merge pull request #132017 from r-ryantm/auto-update/libhdhomerun
libhdhomerun: 20210224 -> 20210624
2021-07-31 23:48:15 +07:00
Ben Siraphob b56f51e32a
Merge pull request #113699 from r-ryantm/auto-update/librelp
librelp: 1.9.0 -> 1.10.0
2021-07-31 19:08:14 +07:00
Ben Siraphob 7542e22f59
Merge pull request #113275 from r-ryantm/auto-update/libebur128
libebur128: 1.2.5 -> 1.2.6
2021-07-31 19:07:50 +07:00
Ben Siraphob 54bc3fd519
Merge pull request #110249 from r-ryantm/auto-update/petsc
petsc: 3.14.2 -> 3.14.3
2021-07-31 19:06:35 +07:00
Ben Siraphob ddae52922a
Merge pull request #112825 from r-ryantm/auto-update/reproc
reproc: 14.1.0 -> 14.2.2
2021-07-31 18:59:01 +07:00
Ben Siraphob e490ea1b8e
Merge pull request #111169 from r-ryantm/auto-update/dyncall
dyncall: 1.1 -> 1.2
2021-07-31 18:58:27 +07:00
Maximilian Bosch 22c5b3053d
Merge pull request #132179 from Kranzes/bump-filezilla
filezilla: 3.53.1 -> 3.55.0
2021-07-31 13:29:49 +02:00
Ben Siraphob b0dd39d606
Merge pull request #127101 from r-ryantm/auto-update/leptonica
leptonica: 1.81.0 -> 1.81.1
2021-07-31 15:29:42 +07:00
Ben Siraphob f8954d0178
Merge pull request #130825 from r-ryantm/auto-update/freetds
freetds: 1.2.21 -> 1.3
2021-07-31 13:42:15 +07:00
Ben Siraphob 7eecde797c
Merge pull request #124724 from r-ryantm/auto-update/ethash
ethash: 0.6.0 -> 0.7.0
2021-07-31 13:41:49 +07:00
Ben Siraphob 82ad135657
Merge pull request #111135 from r-ryantm/auto-update/aws-sdk-cpp
aws-sdk-cpp: 1.8.121 -> 1.8.130
2021-07-31 13:40:44 +07:00
Ilan Joselevich a7f41de6ba libfilezilla: 0.27.0 -> 0.30.0 2021-07-31 02:17:43 +03:00
R. RyanTM 2f216e02f4 libhdhomerun: 20210224 -> 20210624 2021-07-30 04:02:17 +00:00
Dmitry Kalinkin 303e44b3c1
Merge pull request #131994 from tobim/pkgs/arrow-cpp-5.0.0
arrow-cpp: 4.0.1 -> 5.0.0
2021-07-29 23:01:14 -04:00
Artturin d2285de1ba pcl: 1.11.1 -> 1.12.0 2021-07-30 05:18:25 +03:00
Tobias Mayer 51b1d4b421
arrow-cpp: 4.0.1 -> 5.0.0 2021-07-29 21:30:34 +02:00
Sandro f0c3961c54
Merge pull request #111207 from r-ryantm/auto-update/libffcall
libffcall: 2.1 -> 2.2
2021-07-29 13:52:20 +00:00
Artturin d70eee2cb2 libvarlink: init at 22 2021-07-29 16:48:56 +03:00
Sandro Jäckel 14af34c2f4
treewide: remove lib.{lists,string}.optional* 2021-07-29 14:15:12 +02:00
Sandro 0144487f65
Merge pull request #131533 from r-ryantm/auto-update/libcouchbase
libcouchbase: 3.1.4 -> 3.2.0
2021-07-29 12:05:47 +00:00
Sandro f374e8c8dc
Merge pull request #131299 from expipiplus1/vulkan-182 2021-07-29 11:58:56 +00:00
Sandro 2323c6e153
Merge pull request #131748 from musfay/libcprime-fix 2021-07-29 11:43:07 +00:00
Robin Gloster 823e158a3b
Merge pull request #131873 from fpletz/pkgs/nuspell-5.0.0
nuspell: 4.2.0 -> 5.0.0
2021-07-29 12:41:44 +02:00
Frederik Rietdijk 8dcfe523f7
Merge pull request #131719 from FRidh/python2-to-3
Python: further migrate packages from 2 to 3
2021-07-29 10:49:00 +02:00
Frederik Rietdijk 3888701716
Merge pull request #131345 from NixOS/staging-next
Staging next
2021-07-29 10:45:20 +02:00
Ben Siraphob fe273ea648
Merge pull request #113263 from lopsided98/samba-cross
samba: fix cross-compilation
2021-07-29 13:18:37 +07:00
Franz Pletz ebfa909dd1
nuspell: 4.2.0 -> 5.0.0 2021-07-28 22:21:26 +02:00
github-actions[bot] 6fcda9f1ec
Merge master into staging-next 2021-07-28 18:01:16 +00:00
Franz Pletz 923457614b
Merge pull request #131478 from risicle/ris-libgrss-CVE-2016-20011
libgrss: add patch for CVE-2016-20011
2021-07-28 19:45:19 +02:00
Pavol Rusnak 4bfc320c9a
Merge pull request #131812 from prusnak/gcab-unix
gcab/msitools: enable build on darwin
2021-07-28 15:38:04 +02:00
Mustafa Çalışkan 7b299ee734
libcprime: fix application dirs 2021-07-28 15:45:01 +03:00
Yuka 3ff7100f05
qt5.qtwebengine: 5.15.3 -> 5.15.5 (#131123) 2021-07-28 14:43:08 +02:00
Pavol Rusnak a4a19bca8c
gcab: enable build on darwin 2021-07-28 14:42:08 +02:00
github-actions[bot] a1d3be1d42
Merge master into staging-next 2021-07-28 12:01:16 +00:00
Graham Christensen ab93cc0add
Merge pull request #131762 from grahamc/lib-fprint
{lib,}fprint: version bumps
2021-07-28 07:01:18 -04:00
Sandro bc3039dffc
Merge pull request #131530 from SuperSandro2000/libjpeg 2021-07-28 10:59:12 +00:00
Graham Christensen 6f0fc1c9b8 libfprint: 1.90.7 -> 1.92.1 2021-07-27 22:41:04 -04:00
Frederik Rietdijk afa9c4ae68 mlt: requires python3 2021-07-27 20:42:00 +02:00
Frederik Rietdijk dc04d776a3 mirtk: use python3 2021-07-27 20:42:00 +02:00
Frederik Rietdijk 53d4f53a14 mapnik: use python3 for tools
but use python for the bindings.
2021-07-27 20:37:06 +02:00
Frederik Rietdijk a313d4c338 lvtk: stay with python2 2021-07-27 20:37:06 +02:00
Frederik Rietdijk 4e8d1a8936 subunit: use python3 2021-07-27 20:37:05 +02:00
Frederik Rietdijk f9697608d7 libsystemtap: python2 is needed 2021-07-27 20:37:05 +02:00
Frederik Rietdijk f887fbcaef boost: python is only used when called from python-packages.nix 2021-07-27 20:37:04 +02:00
Frederik Rietdijk 03e4fa0cdc fastnlo_toolkit: python is only used when called from python-packages.nix 2021-07-27 20:37:04 +02:00
Frederik Rietdijk 8fab49cd7b gdcm: python is only used when called from python-packages.nix 2021-07-27 20:37:04 +02:00
github-actions[bot] db6a26db02
Merge master into staging-next 2021-07-27 18:01:01 +00:00
Phillip Seeber 43e749aa76 avogadrolibs: init at 1.94.0
avogadrolibs: review comments
2021-07-27 18:43:15 +02:00
Phillip Seeber b5bf1346c0 molequeue: init at 0.9.0
molequeue: review comments
2021-07-27 18:43:15 +02:00
Phillip Seeber 3ea182f321 mmtf-cpp: init at 1.0.0 2021-07-27 18:43:15 +02:00
Phillip Seeber a54c0b9503 libmsym: init at 0.2.3
libmsym: code-review stuff
2021-07-27 18:43:15 +02:00
Ben Siraphob 2e5c4d5fe7
Merge pull request #131634 from ryanorendorff/functional-linear-algebra-0.4
agdaPackages.functional-linear-algebra 0.3->0.4
2021-07-27 23:18:14 +07:00
Ryan Orendorff 721475c83b agdaPackages.functional-linear-algebra 0.3->0.4 2021-07-27 10:14:32 -06:00
Sandro Jäckel 96f904b076 python39Packages.python-mapnik: cleanup, remove pkgs from input, remove alias 2021-07-27 08:14:56 -07:00
Sandro Jäckel 332e711c66 eventlog: cleanup 2021-07-27 08:14:56 -07:00
Sandro 9f87e8ff74
Merge pull request #131024 from dan4ik605743/coreaction2
coreaction: init at 4.2.0
2021-07-27 12:59:52 +00:00
github-actions[bot] 2692c2e427
Merge master into staging-next 2021-07-27 12:01:20 +00:00
Sandro Jäckel 6f8845d30d
libjpeg: modernize 2021-07-27 11:22:09 +02:00
Alyssa Ross fc04308b0a libelf: fix build on NetBSD
This is a better solution than disabling native language entirely,
like on Darwin.
2021-07-27 09:18:33 +00:00
Fabian Affolter ea6c415332
Merge pull request #131506 from fabaff/bump-wolfssl
wolfssl: 4.8.0 -> 4.8.1
2021-07-27 10:54:32 +02:00
github-actions[bot] d01381167a
Merge master into staging-next 2021-07-26 18:01:17 +00:00
sterni 6f08b46853
Merge pull request #130424 from NixOS/haskell-updates
haskellPackages: update stackage and hackage
2021-07-26 18:06:23 +02:00
Sandro 694492c912
Merge pull request #131081 from dan4ik605743/corearchiver 2021-07-26 15:06:56 +00:00
Sandro 52196d21ec
Merge pull request #131072 from Flakebi/amdvlk 2021-07-26 14:01:55 +00:00
José Romildo Malaquias 4a440fd922
Merge pull request #131068 from romildo/upd.qtstyleplugin-kvantum
libsForQt5.qtstyleplugin-kvantum: 0.20.0 -> 0.20.1
2021-07-26 09:57:13 -03:00
Manuel Bärenz b0284395a6 agdaPackages.agda-categories: 0.1.6 -> 0.1.7.1 2021-07-26 14:52:32 +02:00
Alex Rice 9d4867074b Agda: mark packages as broken until 2.6.2 compatible release is made
Co-authored-by: sternenseemann <sternenseemann@systemli.org>
2021-07-26 11:41:06 +02:00
Frederik Rietdijk 62370fb59a Merge remote-tracking branch 'upstream/master' into staging-next 2021-07-26 09:19:44 +02:00
R. RyanTM 17d25b4255 libcouchbase: 3.1.4 -> 3.2.0 2021-07-26 00:13:41 +00:00
Sandro Jäckel 0834491cb7
flint: cleanup 2021-07-26 00:59:36 +02:00
Fabian Affolter f22bf0211b wolfssl: 4.8.0 -> 4.8.1 2021-07-25 20:48:46 +02:00
R. RyanTM 40b02a9f5b libsForQt5.kdsoap: 1.10.0 -> 2.0.0 2021-07-25 16:36:29 +00:00
R. RyanTM 6b2f853975 commonsCompress: 1.20 -> 1.21 2021-07-25 13:25:09 +00:00
Robert Scott b50d7d0683 libgrss: add patch for CVE-2016-20011 2021-07-25 14:23:36 +01:00
R. RyanTM 4036c82da8 flint: 2.7.1 -> 2.8.0 2021-07-25 10:19:30 -03:00
Mauricio Collares d0c2a472d8 arb: 2.19.0 -> 2.20.0 2021-07-25 10:19:30 -03:00
R. RyanTM 9d28b44f60 bzrtp: 4.5.10 -> 5.0.0 2021-07-25 10:28:11 +02:00
R. RyanTM 463148c57a cimg: 2.9.7 -> 2.9.8 2021-07-25 10:23:56 +02:00
Michael Raskin 4be510e3ad
Merge pull request #131379 from graham33/fix/octave_darwin_fixes
pkgs:octaveFull: darwin fixes
2021-07-25 07:54:03 +00:00
github-actions[bot] 6a5e4f2c3d
Merge master into staging-next 2021-07-25 06:01:27 +00:00
R. RyanTM 1730d167ec libcouchbase: 3.1.3 -> 3.1.4 2021-07-24 20:31:26 -07:00
R. RyanTM c9ea31512c csfml: 2.5 -> 2.5.1 2021-07-24 20:25:22 -07:00
github-actions[bot] a37fbac53b
Merge master into staging-next 2021-07-25 00:01:35 +00:00
Sandro 2f87afc3bd
Merge pull request #131274 from dotlambda/libxlsxwriter-1.1.1
libxlsxwriter: 1.0.9 -> 1.1.1
2021-07-24 23:06:14 +00:00
Sandro 92c9175760
Merge pull request #131398 from alyssais/librsync
btar: fix build with librsync 1.x; librsync_0_9: drop
2021-07-24 22:58:18 +00:00
Sandro e12016758d
Merge pull request #131295 from arcnmx/gst-callpackage
gst_all_1: get all dependencies via callPackage
2021-07-24 22:55:08 +00:00
Sandro dd2233fe6a
Merge pull request #129950 from hexagonal-sun/hamlib-bump
hamlib: 3.3 -> 4.2
2021-07-24 22:52:34 +00:00
Alyssa Ross 648aacb65d
librsync_0_9: drop
This was restored in a0dcd49bbc ("btar: fix build by reintroducing
librsync 0.9.x for ZHF") to fix the build of a single package.  We now
use a patch to make it work with more recent versions of librsync, so
there's no reason to keep this package around any more.
2021-07-24 22:27:14 +00:00
Sandro efbd28f277
Merge pull request #131260 from SquarePear/ffmpeg-full
ffmpeg-full: enable libdrm
2021-07-24 22:20:41 +00:00
Graham Bennett 2b8523fd7e portaudio: remove unsupported compiler flag
Appears to no longer be supported in the latest clang.
2021-07-24 20:45:24 +01:00
urlordjames b98b88fa49 drogon: cleanup 2021-07-24 13:34:36 -04:00
R. RyanTM f50fa1aca1 libbluray: 1.2.1 -> 1.3.0 2021-07-24 15:41:34 +02:00
R. RyanTM 07d6422893 libgit2: 1.1.0 -> 1.1.1 2021-07-24 15:38:14 +02:00
R. RyanTM 3c64b6cd46 libbytesize: 2.5 -> 2.6 2021-07-24 15:37:34 +02:00
R. RyanTM a8059e7fbf libdvdcss: 1.4.2 -> 1.4.3 2021-07-24 15:32:16 +02:00
R. RyanTM de2e3040aa libdvdread: 6.1.1 -> 6.1.2 2021-07-24 15:32:02 +02:00
Simon Bruder a19626a485 xvidcore: 1.3.5 -> 1.3.7
This also switches to the new upstream URL, since the old one is
deprecated and does not provide current versions.
2021-07-24 15:30:32 +02:00
R. RyanTM 18b79d29aa libndp: 1.7 -> 1.8 2021-07-24 15:28:21 +02:00
R. RyanTM d073245f24 libgpgerror: 1.41 -> 1.42 2021-07-24 15:21:40 +02:00
R. RyanTM b575c26b69 libGLU: 9.0.1 -> 9.0.2 2021-07-24 15:21:16 +02:00
R. RyanTM 06c7c2a431 harfbuzz: 2.8.1 -> 2.8.2 2021-07-24 15:19:48 +02:00
R. RyanTM 04de16a04d freetype: 2.10.4 -> 2.11.0 2021-07-24 15:17:02 +02:00
ash lea 1b3ba289b2 mesa: fix datadir location 2021-07-24 15:11:58 +02:00
ajs124 6de88a880d attr: 2.4.48 -> 2.5.1 2021-07-24 15:08:09 +02:00
github-actions[bot] 8ed4976a55
Merge staging-next into staging 2021-07-24 06:01:55 +00:00
Guilherme Silva cdac06c9bb
Agda cubical 2.6.2 fix (#131280)
Co-authored-by: Ben Siraphob <bensiraphob@gmail.com>
2021-07-24 06:46:44 +01:00
Joe Hermaszewski 51b73b6320
vulkan: 1.2.176 -> 1.2.182
Updates
- vulkan-headers
- vulkan-loader
- vulkan-validation-layers
- vulkan-extension-layer
- vulkan-tools
- vulkan-tools-lunarg

Also adds some additional asserts for version matching to these packages
2021-07-24 11:35:21 +08:00
Kira Bruneau 16f50144f4
vulkan-loader: 1.2.162.0 → 1.2.176.0 2021-07-24 10:49:09 +08:00
Kira Bruneau d205df5d44
vulkan-headers: 1.2.162.0 → 1.2.176.0 2021-07-24 10:49:08 +08:00
arcnmx c3822ddb58 gst_all_1: get all dependencies via callPackage
The use of `rec` would bypass callPackage's machinery for gstreamer
interdependencies and hinder overrides via overlays.
2021-07-23 17:20:44 -07:00
github-actions[bot] af6aca5931
Merge staging-next into staging 2021-07-24 00:02:14 +00:00
Robert Schütz 3a075ab4d6 libxlsxwriter: 1.0.9 -> 1.1.1
https://github.com/jmcnamara/libxlsxwriter/releases/tag/RELEASE_1.1.0
https://github.com/jmcnamara/libxlsxwriter/releases/tag/RELEASE_1.1.1
2021-07-23 22:46:18 +02:00
Matthew Leach a3f4b6f890 hamlib: 3.3 -> 4.2 2021-07-23 20:08:40 +01:00
Philipp Bartsch 3bb38198e9 webkitgtk: 2.32.1 -> 2.32.3
Relevant security advisory:
https://webkitgtk.org/security/WSA-2021-0004.html

CVEs:
CVE-2021-1817,  CVE-2021-1820,  CVE-2021-1825,  CVE-2021-1826,
CVE-2021-21775, CVE-2021-21779, CVE-2021-21806, CVE-2021-30661,
CVE-2021-30663, CVE-2021-30665, CVE-2021-30666, CVE-2021-30682,
CVE-2021-30689, CVE-2021-30720, CVE-2021-30734, CVE-2021-30744,
CVE-2021-30749, CVE-2021-30758, CVE-2021-30761, CVE-2021-30762,
CVE-2021-30795, CVE-2021-30797, CVE-2021-30799
2021-07-23 20:57:02 +02:00
github-actions[bot] cb1426e30a
Merge staging-next into staging 2021-07-23 18:01:46 +00:00
Jeffrey Harmon f1100e94e1 ffmpeg-full: enable libdrm 2021-07-23 13:15:50 -04:00
sternenseemann ba803ee57b fcft: 2.4.3 -> 2.4.4
Fixes rendering of bitmap font with freetype >= 2.11 (so this issue
did not affect us).

https://codeberg.org/dnkl/fcft/releases/tag/2.4.4
2021-07-23 18:32:39 +02:00
Bernardo Meurer 50d12a5794
Merge pull request #130982 from jansol/pipewire
pipewire: 0.3.31 -> 0.3.32
2021-07-23 09:22:59 -07:00
Shea Levy f047001881
Merge branch 'agda-cubical-2.6.2' 2021-07-23 11:10:48 -04:00
Sandro 6fc54b6ba5
Merge pull request #130741 from r-ryantm/auto-update/armadillo 2021-07-23 15:30:20 +02:00
Sandro 5bd0c66364
Merge pull request #130053 from IvarWithoutBones/fix/qtbase-gcc11 2021-07-23 14:30:18 +02:00
Michael Weiss 88ac1e707f
Merge pull request #131210 from primeos/libaom
libaom: 3.1.1 -> 3.1.2
2021-07-23 14:21:15 +02:00
Michael Weiss 3121bc74df
Merge pull request #131222 from primeos/intel-media-driver
intel-media-driver: 21.2.3 -> 21.3.0
2021-07-23 14:20:34 +02:00
Michael Raskin ff632b4a8a
Merge pull request #131104 from arcnmx/mwaw-parallel
libmwaw: enableParallelBuilding
2021-07-23 12:18:22 +00:00
github-actions[bot] 3bc17773a5
Merge staging-next into staging 2021-07-23 12:02:01 +00:00
Shea Levy 36935f9736
agdaPackages.cubical: 0.2 -> 0.3pred5030a9
0.2 does not build with agda 2.6.2
2021-07-23 07:42:26 -04:00
Ulrik Strid e506c26d14 Fix tezos-rust-libs to work with tezos-sapling 2021-07-23 13:33:59 +02:00
Michael Weiss 3e32d8627f
intel-media-driver: 21.2.3 -> 21.3.0 2021-07-23 13:28:32 +02:00