net-p2p/jackett: Update to 0.24.704
While here, added the --NoUpdates flag to the RC script so the app
does not check for a non-existent automatic update.
Changes: https://github.com/Jackett/Jackett/compare/v0.24.196...v0.24.704
PR: 291442
Reported by: Matt <lazeraman at gmail.com>
Approved by: Ralf van der Enden <tremere at cainites.net> (maintainer, timeout 4 weeks)
[C++20] [Modules] Fix incorrect read of TULocalOffset for delayed namespace (#174365)
Close https://github.com/llvm/llvm-project/issues/158321
The root cause of the problem is a mismatch in an initializer.
[OpenMP][OMPIRBuilder] Hoist static parallel region allocas to the entry block on the CPU (#174314)
Follow-up on #171597, this PR hoists allocas in a parallel region to the
entry block of its corresponding outlined function. This PR does this
for the CPU while #171597 introduced the main mechanism to do so and did
it for the GPU.
devel/ast-grep: update to 0.40.4
feat: support --files-with-matches to list all files like ripgrep #2371
fix: use new assert_cmd command #2399
chore(deps): update dependency dprint to v0.51.1 9d00e5b
chore(deps): update dependency @ast-grep/napi to v0.40.3 80f9c2b
chore(deps): update dependency oxlint to v1.36.0 dea9153
15.0/errata: Begin listing known open regressions
List three known traps upgrading to 15.0R in the release errata.
Noting: this is 34 days late, but first time since 12.0R
Discussed with: adrian, imp, jhb, jrtc27, ngie
Reviewed by: adrian
periodic/801.trim-zfs: Fix daily-trim-zfs-flags
This variable was named incorrectly, resulting in any specified flags
being silently ignored.
PR: 292074
MFC after: 3 days
Reported by: CrazyMihey at Ya.Ru
Fixes: 493908c4b45c (Add a daily zfs trim script)
(cherry picked from commit 68d6abd9714384a41028dc0d5086b4930366bbea)
periodic/801.trim-zfs: Fix daily-trim-zfs-flags
This variable was named incorrectly, resulting in any specified flags
being silently ignored.
PR: 292074
MFC after: 3 days
Reported by: CrazyMihey at Ya.Ru
Fixes: 493908c4b45c (Add a daily zfs trim script)
(cherry picked from commit 68d6abd9714384a41028dc0d5086b4930366bbea)
[OpenMP][OMPIRBuilder] Hoist static parallel region allocas to the entry block on the CPU
Follow-up on #171597, this PR hoists allocas in a parallel region to the
entry block of its corresponding outlined function. This PR does this
for the CPU while #171597 introduced the main mechanism to do so and did
it for the GPU.
devel/cargo-nextest: update to 0.9.118
Added
Nextest now supports user configuration for personal preferences. User config is stored in ~/.config/nextest/config.toml (or %APPDATA%\nextest\config.toml on Windows) and includes the following settings:
show-progress: Controls progress display during test runs.
max-progress-running: Maximum number of running tests to show in the progress bar.
input-handler: Enable or disable keyboard input handling.
output-indent: Enable or disable output indentation for captured test output.
User config settings are lower priority than CLI arguments and environment variables. For details, see User configuration.
Fixed
Fixed an issue where nextest could hang when tests spawn interactive shells (e.g., zsh -ic) that call tcsetpgrp to become the foreground process group. Nextest now ignores SIGTTIN and SIGTTOU signals while input handling is active. (#2884)