git: 6ca19bd65488 - 2025Q4 - net-p2p/prowlarr: 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:15:21 UTC
The branch 2025Q4 has been updated by vvd:
URL: https://cgit.FreeBSD.org/ports/commit/?id=6ca19bd65488f2671928ab58b8a7458bd5b65ca1
commit 6ca19bd65488f2671928ab58b8a7458bd5b65ca1
Author: Vladimir Druzenko <vvd@FreeBSD.org>
AuthorDate: 2025-12-25 23:11:02 +0000
Commit: Vladimir Druzenko <vvd@FreeBSD.org>
CommitDate: 2025-12-25 23:14:54 +0000
net-p2p/prowlarr: Fix rc script for 15 after SSL version bump
PR: 291736
Approved by: Michiel van Baak Jansen <michiel@vanbaak.eu> (maintainer, implicit)
MFH: 2025Q4
(cherry picked from commit 0530c673f13cfaff1070e76f39e8008b15a6dd46)
---
net-p2p/prowlarr/Makefile | 1 +
net-p2p/prowlarr/files/prowlarr.in | 5 ++++-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/net-p2p/prowlarr/Makefile b/net-p2p/prowlarr/Makefile
index a02cdaa929ae..0d7172e3db79 100644
--- a/net-p2p/prowlarr/Makefile
+++ b/net-p2p/prowlarr/Makefile
@@ -1,5 +1,6 @@
PORTNAME= prowlarr
DISTVERSION= 2.0.5.5160
+PORTREVISION= 1
CATEGORIES= net-p2p
MASTER_SITES= https://github.com/Prowlarr/Prowlarr/releases/download/v${DISTVERSION}/
DISTNAME= Prowlarr.master.${DISTVERSION}.freebsd-core-x64
diff --git a/net-p2p/prowlarr/files/prowlarr.in b/net-p2p/prowlarr/files/prowlarr.in
index d0e60536884e..f6b1d8860b91 100644
--- a/net-p2p/prowlarr/files/prowlarr.in
+++ b/net-p2p/prowlarr/files/prowlarr.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