Commit Graph

360622 Commits

Author SHA1 Message Date
Sandro
846adc603c
Merge pull request #163546 from r-ryantm/auto-update/python3.10-azure-storage-file-share 2022-03-10 13:36:13 +01:00
Sandro
ab13e4ff7f
Merge pull request #163491 from peperunas/patch-1 2022-03-10 13:34:58 +01:00
Sandro
83333c3e77
Merge pull request #163553 from Izorkin/update-nginx-quic 2022-03-10 13:34:03 +01:00
Sandro
6b3ae39ad7
Merge pull request #163505 from SuperSandro2000/yt-dlp 2022-03-10 13:12:47 +01:00
Zhong Jianxin
cf5d5a6f50 soundfile: Fix indent 2022-03-10 20:12:43 +08:00
Sandro
f173196254
Merge pull request #163555 from SuperSandro2000/yq-go 2022-03-10 13:12:02 +01:00
github-actions[bot]
d41fcfc34e
Merge staging-next into staging 2022-03-10 12:01:50 +00:00
github-actions[bot]
cac809141e
Merge master into staging-next 2022-03-10 12:01:13 +00:00
Alyssa Ross
f8be98b2cb cryptsetup: separate binaries from libraries
This reduces closure sizes by making the libraries not depend on the
binaries, which is good for dynamic builds, and (when statically
linked) making the binaries not depend on the libraries, which is good
for static builds.

When static building, we additionally have to disable loading LUKS
plugins from $lib to avoid a reference, which probably wouldn't have
worked anyway.
2022-03-10 11:13:15 +00:00
Alyssa Ross
fb079c3110 linux.configfile: fix alts containing "/m"
generate-config.pl's auto modules feature answers "m" to any Kconfig
question it thinks supports being a module.  It detected this by
seeing if the help shown by make config (called "alts" by the script)
contained the string "/m", which it would in the case of e.g a
tristate option, where alts would be "N/m/y/?".

But then along came CONFIG_MODPROBE_PATH in Linux 5.13, with a default
value, shown in the make config help, of "/sbin/modprobe".
generate-config.pl would see the "/m" substring, and answer "m" to the
question, meaning (I think) that the built kernel would expect the
modprobe binary to be at /m.  This broke the (non-NixOS) VM images I
build with Nix.  NixOS was unaffected because it uses a different
mechanism to set the modprobe path.

With the current architecture, we can't 100% determine whether a
Kconfig option is a string or a tristate, but we can get a lot closer
by using a better regex.  My new regex only accepts single word
characters, separated by slashes, with a "/?" at the end.  This is
much less likely to ever end up as the default value of a string
option.

Tested by building linux_latest.configfile before and after my
changes, and checking the only difference is the correct default for
CONFIG_MODPROBE_PATH.
2022-03-10 11:13:11 +00:00
Sandro Jäckel
139b28e274
yq-go: 4.21.1 -> 4.22.1 2022-03-10 12:06:48 +01:00
Izorkin
79d107f858
nginxQuic: 6f8253673669 -> 55b38514729b 2022-03-10 14:03:15 +03:00
Sandro
83580a2e4f
Merge pull request #163523 from r-ryantm/auto-update/python-openstackclient 2022-03-10 11:50:16 +01:00
taku0
6766069f57 thunderbird: 91.6.2 -> 91.7.0 2022-03-10 11:50:09 +01:00
taku0
f54f099b95 thunderbird-bin: 91.6.2 -> 91.7.0 2022-03-10 11:50:09 +01:00
Sandro
635b5afceb
Merge pull request #152733 from jakubgs/init/soundconverter 2022-03-10 11:49:45 +01:00
Daniel Olsen
db40016cf6 ocamlPackages.shine: init at 0.2.2 2022-03-10 11:45:28 +01:00
Daniel Olsen
c09ba4441a shine: init at 3.1.1 2022-03-10 11:45:28 +01:00
Jacek Galowicz
9a5d5408aa
Merge pull request #160223 from VirtusLab/chore/update-git-machete
git-machete: updates to 3.7.2
2022-03-10 11:42:13 +01:00
Sandro
d747802b23
Merge pull request #163168 from azuwis/shadowsocks-rust 2022-03-10 11:41:38 +01:00
K900
7e3c503257 build-support/writeTextFile: add test for weird file names 2022-03-10 13:30:46 +03:00
K900
267f618da5 build-support/makeDesktopItem: remove workaround, fix quoting 2022-03-10 13:30:45 +03:00
K900
3fae68b30c build-support/writeTextFile: fix for names with spaces
I am sorry.
2022-03-10 13:30:20 +03:00
R. Ryantm
54c7c01800 python310Packages.azure-storage-file-share: 12.6.0 -> 12.7.0 2022-03-10 10:02:20 +00:00
R. Ryantm
a3e672e22e python310Packages.azure-storage-blob: 12.9.0 -> 12.10.0 2022-03-10 09:26:44 +00:00
Bobby Rong
085e8934e4
Merge pull request #163397 from samuela/upkeep-bot/vscode-1.65.1-1646785501
vscode: 1.65.0 -> 1.65.1
2022-03-10 17:10:00 +08:00
Bobby Rong
9f3b74b8da
Merge pull request #163438 from samuela/upkeep-bot/vscodium-1.65.1-1646827859
vscodium: 1.65.0 -> 1.65.1
2022-03-10 17:09:41 +08:00
Fabian Affolter
02180f3f8f checkov: 2.0.928 -> 2.0.931 2022-03-10 09:19:59 +01:00
Åsmund Østvold
d8012c5458
nuget-to-nix: deterministic sorting of output list (#162187)
It is the package list output that should be sorted. The current
output sequence is not logical because '.' is sorted in front of '/'
with input sorting and is not deterministic for different language
environments.

To get a deterministic and logical sorting in environments with
different language configured, env "LC_ALL=C" is set and the produced
strings is that is sorted. To get alphabetic sorting and not a pure
ASCII value sort "--ignore-case" is added.
2022-03-10 09:11:04 +01:00
Thiago Kenji Okada
eb7e73916e
Merge pull request #163521 from bryanasdev000/kn130
kn: 1.2.0 -> 1.3.0
2022-03-10 07:57:21 +00:00
R. Ryantm
f31a842e6a python310Packages.pytenable: 1.4.3 -> 1.4.4 2022-03-10 07:41:59 +00:00
Robert Schütz
a25c0af123 python3Packages.pyturbojpeg: 1.6.5 -> 1.6.6 2022-03-10 07:39:18 +00:00
hiljusti
dca5021c14 sigi: 3.0.0 -> 3.0.2 2022-03-09 23:11:56 -08:00
zowoq
847d9649a9 cni-plugins: 1.1.0 -> 1.1.1
https://github.com/containernetworking/plugins/releases/tag/v1.1.1
2022-03-10 17:03:05 +10:00
Zhong Jianxin
90124307e7 shadowsocks-rust: Enable optional features
This features will make it possible to setup transparent proxy on Linux
and macOS.
2022-03-10 14:49:01 +08:00
Vincent Laporte
96f422f558
ocamlPackages.index: 1.5.0 → 1.6.0 2022-03-10 07:26:34 +01:00
github-actions[bot]
8379968bb2
Merge staging-next into staging 2022-03-10 06:02:07 +00:00
github-actions[bot]
c46a02f957
Merge master into staging-next 2022-03-10 06:01:29 +00:00
Bobby Rong
5dd8960d56
Merge pull request #162250 from rileyinman/streamlink-twitch-gui
streamlink-twitch-gui-bin: 1.11.0 -> 2.0.0
2022-03-10 13:51:30 +08:00
Bobby Rong
f1bb58bc99
Merge pull request #163237 from r-ryantm/auto-update/brave
brave: 1.36.109 -> 1.36.111
2022-03-10 13:38:28 +08:00
Bobby Rong
1adbba155c
Merge pull request #163410 from veprbl/pr/broken_retro-gtk
retro-gtk: mark as broken on darwin
2022-03-10 13:33:45 +08:00
Bobby Rong
5f5bddd15e
Merge pull request #163373 from andresilva/ledger-live-2.39.2
ledger-live-desktop: 2.38.3 -> 2.39.2
2022-03-10 13:29:02 +08:00
techknowlogick
341358d046 dex-oidc: 2.30.0 -> 2.31.0 2022-03-10 00:14:26 -05:00
Bobby Rong
50c314535a
Merge pull request #162929 from eduarrrd/marktext
marktext: 0.16.3 -> 0.17.1
2022-03-10 13:11:26 +08:00
Bobby Rong
10d4f89c44
Merge pull request #163104 from r-ryantm/auto-update/foxotron
foxotron: 2022-03-05 -> 2022-03-06
2022-03-10 13:04:35 +08:00
techknowlogick
2d1321c99d packer: 1.7.10 -> 1.8.0 2022-03-09 23:55:02 -05:00
Bobby Rong
f4402c8932
Merge pull request #163286 from totoroot/update/qownnotes-22.3.1
qownnotes: 22.2.9 -> 22.3.1
2022-03-10 12:54:55 +08:00
Bobby Rong
d8cbebf2e9
Merge pull request #163436 from dasisdormax/astc-encoder-3.4
astc-encoder: 3.3 -> 3.4
2022-03-10 12:45:14 +08:00
Robert Schütz
a8110b9347 abcmidi: 2022.02.13 -> 2022.02.21 2022-03-10 03:51:06 +00:00
R. Ryantm
bdc2648807 tilt: 0.25.1 -> 0.25.2 2022-03-09 22:24:42 -05:00