git: 41399888591f - main - net-p2p/readarr: Fix rc script for 15 after SSL version bump
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 25 Dec 2025 23:11:50 UTC
The branch main has been updated by vvd:
URL: https://cgit.FreeBSD.org/ports/commit/?id=41399888591fb9c86e48ba9c6f21de1b62f64001
commit 41399888591fb9c86e48ba9c6f21de1b62f64001
Author: Vladimir Druzenko <vvd@FreeBSD.org>
AuthorDate: 2025-12-25 23:09:18 +0000
Commit: Vladimir Druzenko <vvd@FreeBSD.org>
CommitDate: 2025-12-25 23:09:18 +0000
net-p2p/readarr: Fix rc script for 15 after SSL version bump
PR: 291736
Approved by: Michiel van Baak Jansen <michiel@vanbaak.eu> (maintainer, implicit)
MFH: 2025Q4
---
net-p2p/readarr/Makefile | 1 +
net-p2p/readarr/files/readarr.in | 5 ++++-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/net-p2p/readarr/Makefile b/net-p2p/readarr/Makefile
index 0d4436d5b6b8..22ca25dfe543 100644
--- a/net-p2p/readarr/Makefile
+++ b/net-p2p/readarr/Makefile
@@ -1,5 +1,6 @@
PORTNAME= readarr
DISTVERSION= 0.4.16.2793
+PORTREVISION= 1
CATEGORIES= net-p2p
MASTER_SITES= https://github.com/Readarr/Readarr/releases/download/v${DISTVERSION}/
DISTNAME= Readarr.develop.${DISTVERSION}.freebsd-core-x64
diff --git a/net-p2p/readarr/files/readarr.in b/net-p2p/readarr/files/readarr.in
index 70e302850f06..2120f03ebd1c 100644
--- a/net-p2p/readarr/files/readarr.in
+++ b/net-p2p/readarr/files/readarr.in
@@ -48,7 +48,10 @@ start_precmd=${name}_precmd
export DOTNET_SYSTEM_NET_DISABLEIPV6=1
fi
- if [ `uname -K` -ge 1400092 ]; then
+ USERLAND_VERSION=`uname -U`
+ if [ ${USERLAND_VERSION} -ge 1500068 ]; then
+ export CLR_OPENSSL_VERSION_OVERRIDE=35
+ elif [ ${USERLAND_VERSION} -ge 1400092 ]; then
export CLR_OPENSSL_VERSION_OVERRIDE=30
fi