net-p2p/prowlarr: Fix rc script for 15 after SSL version bump
PR: 291736
Approved by: Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer, implicit)
MFH: 2025Q4
(cherry picked from commit 0530c673f13cfaff1070e76f39e8008b15a6dd46)
net-p2p/lidarr: Fix rc script for 15 after SSL version bump
PR: 291736
Approved by: Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer, implicit)
MFH: 2025Q4
(cherry picked from commit 82e117b6ee954427493a75f7cb5c566b9eed3246)
net-p2p/readarr: Fix rc script for 15 after SSL version bump
PR: 291736
Approved by: Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer, implicit)
MFH: 2025Q4
(cherry picked from commit 41399888591fb9c86e48ba9c6f21de1b62f64001)
net-p2p/radarr: Fix rc script for 15 after SSL version bump
PR: 291734 291736
Tested by: edgeman at gmail.com
Approved by: Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer)
MFH: 2025Q4
(cherry picked from commit 0cb581a0f01e3fb93543a2735186df6c87fb710b)
net-p2p/sonarr: Fix rc script for 15 after SSL version bump
By default Sonarr (Mono?) is looking for libssl.so.3.
This was worked around in the 14.X series by setting an environment
override in the shipped init script to tell the executable to instead
look for libssl.so.30
Update the override for FreeBSD >= 15.0-RELEASE so that it now looks for
libssl.so.35 without removing the workaround for FreeBSD 14.X.
Without this patch Sonarr exits code 6 and is restarted continuously.
PR: 291736
Tested by: edgeman at gmail.com
Approved by: Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer)
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
MFH: 2025Q4
(cherry picked from commit 3b77347aef053944bfb424a1b0fab7b83603cc7b)
net-p2p/prowlarr: Fix rc script for 15 after SSL version bump
PR: 291736
Approved by: Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer, implicit)
MFH: 2025Q4
net-p2p/lidarr: Fix rc script for 15 after SSL version bump
PR: 291736
Approved by: Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer, implicit)
MFH: 2025Q4
net-p2p/readarr: Fix rc script for 15 after SSL version bump
PR: 291736
Approved by: Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer, implicit)
MFH: 2025Q4
net-p2p/radarr: Fix rc script for 15 after SSL version bump
PR: 291734 291736
Tested by: edgeman at gmail.com
Approved by: Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer)
MFH: 2025Q4
py-test-run-parallel: updated to 0.8.1
0.8.1
Only run logic for selected pytest items
fix: add capteesys, capsysbinary, capfd and capfdbinary to thread-unsafe fixtures
Only fail tests for enabling the GIL in parallel runs
py-joblib: updated to 1.5.3
1.5.3
The Memory object won't overwrite an already existing .gitignore file in its cache directory anymore.
Harden the safety checks in eval_expr(pre_dispatch) to prevent excessive memory allocation and potential crashes by limiting the allowed length of the expression and the maximum numeric value of sub-expressions and not evaluating expressions with non-numeric literals.
Vendor cloudpickle 3.1.2 to fix a pickling problem with interactively defined abstract base classes and type annotations in Python 3.14+.
boost: updated to 1.90.0
1.90.0
New Libraries
OpenMethod:
* Open-(multi-)methods in C++17 and above, from Jean-Louis Leroy.
https://www.boost.org/releases/latest/
net-p2p/sonarr: Fix rc script for 15 after SSL version bump
By default Sonarr (Mono?) is looking for libssl.so.3.
This was worked around in the 14.X series by setting an environment
override in the shipped init script to tell the executable to instead
look for libssl.so.30
Update the override for FreeBSD >= 15.0-RELEASE so that it now looks for
libssl.so.35 without removing the workaround for FreeBSD 14.X.
Without this patch Sonarr exits code 6 and is restarted continuously.
PR: 291736
Tested by: edgeman at gmail.com
Approved by: Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer)
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
MFH: 2025Q4
[cmake] Simplify LLVM_ON_WIN32 logic (#173525)
This is just a vestige of an old llvm-config.h configuration macro that
was removed long ago. LLVM_ON_UNIX remains, but its main purpose is to
enable targetting bare metal through -DCMAKE_SYSTEM_NAME=Generic (see
1422f1bf2b1).
[VPlan] Support truncated IVs in getSCEVExprForVPValue. (NFCI)
Handle truncated inductions in getSCEVExprForVPValue. This means we are
able to compute SCEV expressions for more inductions used in the
VPlan-based cost model, which should produce costs matching the legacy
cost model.
truss - Prevent infinite loop when exec fails.
* And remove waitpid(2) call that can never reliably catch this error when
we do a real fork(2), and not a vfork(2).