Commit Graph
420887 Commits
Author SHA1 Message Date
Nikolay KorotkiyandGitHub 2ce5121a24 Merge pull request #197725 from r-ryantm/auto-update/crow-translate
crow-translate: 2.10.0 -> 2.10.1
2022-10-25 23:52:28 +03:00
markuskowaandGitHub f2ddb13985 Merge pull request #197305 from foo-dogsquared/update-shortwave
shortwave: 3.0.0 -> 3.1.0
2022-10-25 22:46:40 +02:00
Michael WeissandGitHub b4c2844566 Merge pull request #197779 from primeos/chromiumBeta
chromium{Beta,Dev}: Fix the configuration phase
2022-10-25 22:34:16 +02:00
markuskowaandGitHub df2a2b4de3 Merge pull request #197634 from newAM/flake8-bugbear
python3Packages.flake8-bugbear: 22.9.23 -> 22.10.25
2022-10-25 22:32:54 +02:00
markuskowaandGitHub be25cca3bb Merge pull request #197488 from r-ryantm/auto-update/python310Packages.pydal
python310Packages.pydal: 20220814.1 -> 20220916.1
2022-10-25 22:32:01 +02:00
markuskowaandGitHub b6a6a851b9 Merge pull request #197506 from r-ryantm/auto-update/argo
argo: 3.4.1 -> 3.4.2
2022-10-25 22:30:24 +02:00
Robert Helgesson 2bdcaca296 svtplay-dl: update formatting and float version 2022-10-25 22:24:26 +02:00
Robert Helgesson a8536ad12e svtplay-dl: 4.13 -> 4.14 2022-10-25 22:24:26 +02:00
markuskowaandGitHub c157ca66e1 Merge pull request #197679 from r-ryantm/auto-update/tidal-hifi
tidal-hifi: 4.3.0 -> 4.3.1
2022-10-25 22:20:50 +02:00
markuskowaandGitHub 88b28689cc Merge pull request #197765 from r-ryantm/auto-update/ihp-new
ihp-new: 0.20.0 -> 1.0.0
2022-10-25 22:19:41 +02:00
Anthony RousselandGitHub 3689a76637 awscli2: 2.7.33 -> 2.8.5 (#197270) 2022-10-25 21:34:08 +02:00
Vladimír Čunát 0079830888 Merge #195644: mysql57: drop 2022-10-25 21:23:27 +02:00
figsodaandGitHub 0f190ab597 Merge pull request #197767 from r-ryantm/auto-update/joker
joker: 1.0.1 -> 1.0.2
2022-10-25 15:20:38 -04:00
Vladimír Čunát c46947a471 Merge #196838: mysql80: 8.0.30 -> 8.0.31 2022-10-25 21:13:47 +02:00
Vladimír Čunát 0c18f8f42a Merge #195333: dotnetPackages.RestSharp: 105.2.3 -> 106.12.0 2022-10-25 21:13:42 +02:00
Michael Weiss f709a74fa3 chromium{Beta,Dev}: Fix the configuration phase
Setting `clang_base_path` [0] does skip [1] a clang version check [2]
that would fail in our case:
```
configuring
ERROR at //build/config/compiler/BUILD.gn:1314:22: Script returned non-zero exit code.
    clang_revision = exec_script("//tools/clang/scripts/update.py",
                     ^----------
Current dir: /tmp/nix-build-chromium-unwrapped-107.0.5304.29.drv-0/chromium-107.0.5304.29/out/Release/
Command: python3 /tmp/nix-build-chromium-unwrapped-107.0.5304.29.drv-0/chromium-107.0.5304.29/tools/clang/scripts/update.py --print-revision --verify-version=16.0.0
Returned 1 and printed out:

The expected clang version is llvmorg-16-init-4609-g025a5b22-2 but the actual version is
Did you run "gclient sync"?

See //build/config/BUILDCONFIG.gn:329:3: which caused the file to be included.
  "//build/config/compiler:afdo",
  ^-----------------------------
error: builder for '/nix/store/02riyhzvrgn2vaab29d3gipxzkx6nb44-chromium-unwrapped-107.0.5304.29.drv' failed with exit code 1
```

I also chose to disable the Qt support for now. The Qt support is
enabled by default on Linux [3] but we need to add the required
dependencies first to fix the build (and my current priority is to get a
basic build working for the security critical stable channel update):
```
configuring
ERROR at //build/config/linux/pkg_config.gni:104:17: Script returned non-zero exit code.
    pkgresult = exec_script(pkg_config_script, args, "value")
                ^----------
Current dir: /tmp/nix-build-chromium-unwrapped-107.0.5304.62.drv-0/chromium-107.0.5304.62/out/Release/
Command: python3 /tmp/nix-build-chromium-unwrapped-107.0.5304.62.drv-0/chromium-107.0.5304.62/build/config/linux/pkg-config.py Qt5Core Qt5Widgets
Returned 1.
stderr:

Package Qt5Core was not found in the pkg-config search path.
Perhaps you should add the directory containing `Qt5Core.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Qt5Core' found
Package Qt5Widgets was not found in the pkg-config search path.
Perhaps you should add the directory containing `Qt5Widgets.pc'
to the PKG_CONFIG_PATH environment variable
No package 'Qt5Widgets' found
Could not run pkg-config.

See //ui/qt/BUILD.gn:13:1: whence it was called.
pkg_config("qt5_config") {
^-------------------------
See //ui/linux/BUILD.gn:54:15: which caused the file to be included.
    deps += [ "//ui/qt" ]
              ^--------
error: builder for '/nix/store/3zzddkh74cnhvq6nql32y9pnbvzf2jv9-chromium-unwrapped-107.0.5304.62.drv' failed with exit code 1
```

[0]: https://source.chromium.org/chromium/chromium/src/+/refs/tags/107.0.5304.62:docs/clang.md
[1]: https://source.chromium.org/chromium/chromium/src/+/refs/tags/107.0.5304.62:build/config/compiler/BUILD.gn;l=1306
[2]: https://source.chromium.org/chromium/chromium/src/+/refs/tags/107.0.5304.62:tools/clang/scripts/update.py;l=358
[3]: https://source.chromium.org/chromium/chromium/src/+/refs/tags/107.0.5304.62:ui/qt/qt.gni;l=8
2022-10-25 21:10:01 +02:00
Samuel AinsworthandGitHub b2399a8190 Merge pull request #197600 from samuela/samuela/chex
chex, dm-tree, flax upgrades
2022-10-25 11:33:00 -07:00
Vladimír Čunát 9bf75e616a Merge #196479: qemu: add patch for CVE-2022-3165 2022-10-25 20:20:51 +02:00
R. Ryantm b9c493616b joker: 1.0.1 -> 1.0.2 2022-10-25 17:34:04 +00:00
R. Ryantm 2fed795fb2 ihp-new: 0.20.0 -> 1.0.0 2022-10-25 17:14:01 +00:00
0x4A6FandGitHub be7042a040 Merge pull request #197684 from matthiasbeyer/update-zellij
zellij: 0.31.4 -> 0.32.0
2022-10-25 18:42:30 +02:00
R. RyantmandJonathan Ringer b410bee3cd SDL_compat: 1.2.56 -> 1.2.60 2022-10-25 09:11:15 -07:00
7c6f434candGitHub 02835f2253 Merge pull request #197645 from r-ryantm/auto-update/opensmt
opensmt: 2.4.1 -> 2.4.2
2022-10-25 16:04:34 +00:00
SandroandGitHub de7292e85a Merge pull request #197291 from SuperSandro2000/playwright-fix-firefox-path 2022-10-25 18:03:57 +02:00
SandroandGitHub 1c40f58e75 Merge pull request #196632 from SuperSandro2000/python310Packages.geventhttpclient 2022-10-25 18:02:59 +02:00
SandroandGitHub 8623e5a54f Merge pull request #196805 from SuperSandro2000/diffoscope 2022-10-25 18:02:48 +02:00
SandroandGitHub 0bb4ca047e Merge pull request #194899 from sveitser/update-black-22.10.0 2022-10-25 18:02:03 +02:00
Charlotte Van PetegemandJonathan Ringer 1a7a61b7bd mu: 1.8.10 -> 1.8.11
https://github.com/djcb/mu/releases/tag/v1.8.11
2022-10-25 08:58:42 -07:00
R. RyantmandJonathan Ringer 625e4a55d1 wishlist: 0.7.0 -> 0.8.0 2022-10-25 08:58:31 -07:00
R. RyantmandJonathan Ringer 0d067d9a29 autotiling: 1.6.1 -> 1.7 2022-10-25 08:58:13 -07:00
Fabian AffolterandJonathan Ringer b8995de2c5 python310Packages.policy-sentry: 0.12.4 -> 0.12.5 2022-10-25 08:55:06 -07:00
R. RyantmandJonathan Ringer 2109990852 docker-slim: 1.38.0 -> 1.39.0 2022-10-25 08:54:16 -07:00
R. RyantmandJonathan Ringer 36bf8e0b54 datree: 1.6.40 -> 1.6.42 2022-10-25 08:53:15 -07:00
K900andJonathan Ringer 4986855cd5 memtest86plus: 6.00-beta2 -> 6.00 2022-10-25 08:50:33 -07:00
R. RyantmandJonathan Ringer c17abb3648 antimicrox: 3.2.5 -> 3.3.1 2022-10-25 08:47:38 -07:00
R. RyantmandJonathan Ringer 5136fd8720 brev-cli: 0.6.128 -> 0.6.130 2022-10-25 08:47:19 -07:00
R. RyantmandJonathan Ringer bf3d4513a1 bzip3: 1.1.6 -> 1.1.7 2022-10-25 08:45:02 -07:00
R. RyantmandJonathan Ringer 882cedd1a9 cargo-update: 10.0.1 -> 11.0.0 2022-10-25 08:44:34 -07:00
R. RyantmandJonathan Ringer fd0a5f378b cargo-llvm-lines: 0.4.18 -> 0.4.19 2022-10-25 08:44:28 -07:00
R. RyantmandJonathan Ringer f20d74f0d9 cjose: 0.6.2 -> 0.6.2.1 2022-10-25 08:43:44 -07:00
Jan TojnarandGitHub dd21d0b041 Merge pull request #197238 from NixOS/gnome
GNOME: 43.0 → 43.1
2022-10-25 17:40:25 +02:00
Doron BeharandGitHub 0ad1d02c69 Merge pull request #197747 from sinavir/musescore_overridable_QT_env_var 2022-10-25 15:30:48 +00:00
colinandJan Tojnar 22834c42cc gnome.nautilus: use the gtk4 FileChooser settings schema (fixes crash-on-start)
upstream PR for more context: <https://gitlab.gnome.org/GNOME/nautilus/-/merge_requests/1013>

with the recent nixpkgs bump from GNOME 42 -> 43, we build nautilus with
gtk4 (as upstream expects). if the user has nothing else in their
environment providing gtk3, then nautilus fails to locate a gtk3
gsettings schema it depends on. i.e.

```console
$ nautilus
(org.gnome.Nautilus): GLib-GIO-ERROR **: Settings schema 'org.gtk.Settings.FileChooser' is not installed
```

we could solve this on our end by adding gtk3 to `gappsWrapperArgs`, but
this seems like an upstream bug: i believe they mean to use the gtk4 settings
schemas instead of the legacy gtk3 ones.
2022-10-25 17:26:07 +02:00
SandroandGitHub 1ce20e8b30 Merge pull request #196577 from wegank/evolution-data-server-darwin 2022-10-25 17:08:23 +02:00
Jan TojnarandGitHub d0072ce484 Merge pull request #197051 from jtojnar/fix-gnome-default-backround
gnome.nixos-gsettings-overrides: Ensure the settings are not overwritten
2022-10-25 17:03:08 +02:00
Jan TojnarandGitHub 361d98667c Merge pull request #197029 from jtojnar/webp-loader
webp-pixbuf-loader: Adopt by GNOME
2022-10-25 17:02:06 +02:00
sinavir 4135fb7eaf Musescore: make QT_QPA_PLATFORM env var overridable 2022-10-25 16:55:24 +02:00
José Romildo MalaquiasandGitHub c34254b40a Merge pull request #197542 from iblech/patch-thonny
thonny: 3.3.14 -> 4.0.1
2022-10-25 11:53:37 -03:00
Damien CassouandGitHub c2b2d5faff Merge pull request #197496 from DamienCassou/iosevka-comfy-1.1.0 2022-10-25 16:52:35 +02:00
SandroandGitHub 9237fad409 Merge pull request #185169 from extole/kafka_3 2022-10-25 16:45:08 +02:00