Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rspamd for openSUSE:Factory checked 
in at 2025-01-02 19:22:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rspamd (Old)
 and      /work/SRC/openSUSE:Factory/.rspamd.new.1881 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rspamd"

Thu Jan  2 19:22:34 2025 rev:34 rq:1234471 version:3.11.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/rspamd/rspamd.changes    2024-12-24 
16:26:19.297535350 +0100
+++ /work/SRC/openSUSE:Factory/.rspamd.new.1881/rspamd.changes  2025-01-02 
19:23:21.929271465 +0100
@@ -1,0 +2,11 @@
+Wed Dec 25 20:29:19 UTC 2024 - Marcus Rueckert <[email protected]>
+
+- we can enable hyperscan also on newer SLE 15 service packs
+
+-------------------------------------------------------------------
+Wed Dec 25 20:25:54 UTC 2024 - Marcus Rueckert <[email protected]>
+
+- added 
https://github.com/rspamd/rspamd/commit/ccb45df90df60fae36b9438cfb2b0088e590306b.patch
+  To fix building without hyperscan
+
+-------------------------------------------------------------------

New:
----
  ccb45df90df60fae36b9438cfb2b0088e590306b.patch

BETA DEBUG BEGIN:
  New:
- added 
https://github.com/rspamd/rspamd/commit/ccb45df90df60fae36b9438cfb2b0088e590306b.patch
  To fix building without hyperscan
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rspamd.spec ++++++
--- /var/tmp/diff_new_pack.tZVVcm/_old  2025-01-02 19:23:22.665301758 +0100
+++ /var/tmp/diff_new_pack.tZVVcm/_new  2025-01-02 19:23:22.669301923 +0100
@@ -29,7 +29,7 @@
 %global lua_abi_version 51
 
 %ifarch %{ix86} x86_64
-  %if 0%{?suse_version} > 1500
+  %if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150500
     %bcond_without hyperscan
   %endif
   %if 0%{?suse_version} >= 1500
@@ -71,6 +71,8 @@
 Patch0:         rspamd-conf.patch
 Patch1:         rspamd-after-redis-target.patch
 Patch2:         fix_missing_return.patch
+# remove with next version update
+Patch3:         ccb45df90df60fae36b9438cfb2b0088e590306b.patch
 %if !0%{?is_opensuse}
 # because 80-check-malware-scan-clamav triggered in SLE-15-SP2
 BuildRequires:  -post-build-checks-malwarescan

++++++ ccb45df90df60fae36b9438cfb2b0088e590306b.patch ++++++
>From ccb45df90df60fae36b9438cfb2b0088e590306b Mon Sep 17 00:00:00 2001
From: Vsevolod Stakhov <[email protected]>
Date: Tue, 17 Dec 2024 13:37:54 +0000
Subject: [PATCH] [Fix] Fix crash on FreeBSD when Rspamd is built without
 hyperscan

---
 src/rspamd.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/rspamd.c b/src/rspamd.c
index 088bfba49c..dafd9aebeb 100644
--- a/src/rspamd.c
+++ b/src/rspamd.c
@@ -56,9 +56,10 @@
 
 #ifdef WITH_HYPERSCAN
 #include "libserver/hyperscan_tools.h"
-#include "rspamd_simdutf.h"
 #endif
 
+#include "rspamd_simdutf.h"
+
 /* 2 seconds to fork new process in place of dead one */
 #define SOFT_FORK_TIME 2
 

Reply via email to