git: 25fa745e835d - main - sysutils/rsyslog8: update to 8.2602.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 22 Feb 2026 14:50:45 UTC
The branch main has been updated by matthew:
URL: https://cgit.FreeBSD.org/ports/commit/?id=25fa745e835dad6b9fb78f37edcd3cc90fd4b6e7
commit 25fa745e835dad6b9fb78f37edcd3cc90fd4b6e7
Author: Matthew Seaman <matthew@FreeBSD.org>
AuthorDate: 2026-02-22 14:48:44 +0000
Commit: Matthew Seaman <matthew@FreeBSD.org>
CommitDate: 2026-02-22 14:50:41 +0000
sysutils/rsyslog8: update to 8.2602.0
Changes: https://github.com/rsyslog/rsyslog/blob/v8.2602.0/ChangeLog
Reported by: repology
---
sysutils/rsyslog8/Makefile | 9 ++++++---
sysutils/rsyslog8/distinfo | 6 +++---
sysutils/rsyslog8/files/patch-plugins_impstats_Makefile.am | 11 +++++++++++
sysutils/rsyslog8/files/patch-runtime_nsd__ossl.c | 8 ++++----
sysutils/rsyslog8/pkg-plist | 5 ++++-
5 files changed, 28 insertions(+), 11 deletions(-)
diff --git a/sysutils/rsyslog8/Makefile b/sysutils/rsyslog8/Makefile
index 1e7a8f0c2e0c..c6f0be0de93e 100644
--- a/sysutils/rsyslog8/Makefile
+++ b/sysutils/rsyslog8/Makefile
@@ -1,5 +1,5 @@
PORTNAME= rsyslog
-PORTVERSION= 8.2512.0
+PORTVERSION= 8.2602.0
CATEGORIES= sysutils
MASTER_SITES= http://www.rsyslog.com/files/download/rsyslog/
@@ -10,11 +10,14 @@ WWW= https://www.rsyslog.com/
LICENSE= GPLv3 LGPL3 APACHE20
LICENSE_COMB= multi
-LIB_DEPENDS= libestr.so:devel/libestr \
+LIB_DEPENDS= libcurl.so:ftp/curl \
+ libestr.so:devel/libestr \
libfastjson.so:devel/libfastjson \
liblogging-rfc3195.so:devel/liblogging \
+ libprotobuf-c.so:devel/protobuf-c \
+ libsnappy.so:archivers/snappy \
libuuid.so:misc/libuuid \
- libcurl.so:ftp/curl
+ libyaml.so:textproc/libyaml
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>0:textproc/py-docutils@${PY_FLAVOR}
USES= cpe libtool pkgconfig autoreconf python:env
diff --git a/sysutils/rsyslog8/distinfo b/sysutils/rsyslog8/distinfo
index 4f4a5bc33350..af11fc473a63 100644
--- a/sysutils/rsyslog8/distinfo
+++ b/sysutils/rsyslog8/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1765477210
-SHA256 (rsyslog-8.2512.0.tar.gz) = 93c50025d90b6c795fa350d56a3d832bfce45043ea9bd68240d9c2a9394bc629
-SIZE (rsyslog-8.2512.0.tar.gz) = 6768847
+TIMESTAMP = 1771445338
+SHA256 (rsyslog-8.2602.0.tar.gz) = 4fe5256cea046d77546d36042d090e384184bc24041ecda5d03c03d35d1eabbb
+SIZE (rsyslog-8.2602.0.tar.gz) = 9804654
diff --git a/sysutils/rsyslog8/files/patch-plugins_impstats_Makefile.am b/sysutils/rsyslog8/files/patch-plugins_impstats_Makefile.am
new file mode 100644
index 000000000000..ed3803f9d8dc
--- /dev/null
+++ b/sysutils/rsyslog8/files/patch-plugins_impstats_Makefile.am
@@ -0,0 +1,11 @@
+--- plugins/impstats/Makefile.am.orig 2026-02-16 13:33:21 UTC
++++ plugins/impstats/Makefile.am
+@@ -34,7 +34,7 @@ remote.pb-c.c remote.pb-c.h: remote.proto
+ BUILT_SOURCES = remote.pb-c.c remote.pb-c.h
+
+ remote.pb-c.c remote.pb-c.h: remote.proto
+- $(PROTOC_C) --proto_path=$(srcdir) --c_out=. $<
++ $(PROTOC_C) --c_out=. $>
+
+ CLEANFILES = remote.pb-c.c remote.pb-c.h
+ endif
diff --git a/sysutils/rsyslog8/files/patch-runtime_nsd__ossl.c b/sysutils/rsyslog8/files/patch-runtime_nsd__ossl.c
index 8fd03819cdb5..d51a0d2e1a31 100644
--- a/sysutils/rsyslog8/files/patch-runtime_nsd__ossl.c
+++ b/sysutils/rsyslog8/files/patch-runtime_nsd__ossl.c
@@ -1,11 +1,11 @@
---- runtime/nsd_ossl.c.orig 2025-09-05 13:46:02 UTC
+--- runtime/nsd_ossl.c.orig 2026-02-07 11:43:26 UTC
+++ runtime/nsd_ossl.c
-@@ -803,7 +803,7 @@ rsRetVal osslPostHandshakeCheck(nsd_ossl_t *pNsd) {
+@@ -889,7 +889,7 @@ rsRetVal osslPostHandshakeCheck(nsd_ossl_t *pNsd) {
if (SSL_get_shared_ciphers(pNsd->pNetOssl->ssl, szDbg, sizeof szDbg) != NULL)
dbgprintf("osslPostHandshakeCheck: Debug Shared ciphers = %s\n", szDbg);
--#if OPENSSL_VERSION_NUMBER >= 0x10002000L
-+#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(LIBRESSL_VERSION_NUMBER)
+-#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(ENABLE_WOLFSSL)
++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(LIBRESSL_VERSION_NUMBER) && !defined(ENABLE_WOLFSSL)
if (SSL_get_shared_curve(pNsd->pNetOssl->ssl, -1) == 0) {
// This is not a failure
LogMsg(0, RS_RET_NO_ERRCODE, LOG_INFO,
diff --git a/sysutils/rsyslog8/pkg-plist b/sysutils/rsyslog8/pkg-plist
index 0c3d2c1c230f..8d962780d56e 100644
--- a/sysutils/rsyslog8/pkg-plist
+++ b/sysutils/rsyslog8/pkg-plist
@@ -11,6 +11,9 @@ lib/rsyslog/impstats.so
lib/rsyslog/imtcp.so
lib/rsyslog/imudp.so
lib/rsyslog/imuxsock.so
+lib/rsyslog/liboverride_getaddrinfo.so
+lib/rsyslog/liboverride_gethostname.so
+lib/rsyslog/liboverride_gethostname_nonfqdn.so
lib/rsyslog/lmnet.so
lib/rsyslog/lmnetstrms.so
lib/rsyslog/lmnsd_ptcp.so
@@ -26,6 +29,6 @@ lib/rsyslog/omstdout.so
lib/rsyslog/omtesting.so
lib/rsyslog/omuxsock.so
lib/rsyslog/pmciscoios.so
+sbin/rsyslogd
share/man/man5/rsyslog.conf.5.gz
share/man/man8/rsyslogd.8.gz
-sbin/rsyslogd