Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rspamd for openSUSE:Factory checked in at 2023-03-25 18:55:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rspamd (Old) and /work/SRC/openSUSE:Factory/.rspamd.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rspamd" Sat Mar 25 18:55:51 2023 rev:14 rq:1074269 version:3.5 Changes: -------- --- /work/SRC/openSUSE:Factory/rspamd/rspamd.changes 2023-02-01 16:54:26.150740971 +0100 +++ /work/SRC/openSUSE:Factory/.rspamd.new.31432/rspamd.changes 2023-03-25 18:56:07.586905454 +0100 @@ -1,0 +2,64 @@ +Fri Mar 17 21:53:38 UTC 2023 - Marcus Rueckert <[email protected]> + +- Enable more features + - Enable nice stacktraces for crashes. New BR: libunwind-devel + - use system xxhash: New BR: xxhash-devel + - enable blas/lapack support for the neural network processing + New BR: lapack-devel, libopenblas_openmp-devel, openblas-common-devel + +------------------------------------------------------------------- +Fri Mar 17 21:21:47 UTC 2023 - Marcus Rueckert <[email protected]> + +- Update to 3.5 + - [Test] Remove test case with non-deterministic result by + @arkamar in #4323 + - [WebUI] Add legacy history version badge by @moisseev in #4326 + - [Feature] Enable Mime part filters on antivirus module by + @jonmoesli in #4328 + - [Test] Use TMPDIR if available by @arkamar in #4327 + - metadata_exporter http pusher: Extend valid return codes by + @yo000 in #4334 + - [Minor] debian package: disable luajit on arm64 by @fatalbanana + in #4335 + - Support external maps in Rspamd by @vstakhov in #4324 + - [Fix] Return true from has_urls(true) if only emails are + present by @cpragadeesh in #4365 + - [Fix] received: filtering of artificial header by @kakochang in + #4367 + - [Fix] Replace broken strict_domains with phishing_exceptions by + @dupondje in #4376 + - Fix build with gcc 13 by including by @heirecka in #4375 + - rspamc: add -R option for human readable report by @amishmm in + #4377 + - rspamc: optimize indentation condition by @amishmm in #4381 + - Set required_score = reject score and minor change to the + report by @amishmm in #4383 + - conf/modules.d/arc.conf: fix parameter name by @jendis in #4387 + - Fixes to support global lua maps in user settings by @dpetrov67 + in #4393 + - [Enhancement] Make Google URL redirection rules productive by + @twesterhever in #4399 + - [Enhancement] Add rule to detect Google Firebase URLs by + @twesterhever in #4401 + - [Minor] Assorted cleanup and housekeeping of configuration + files by @twesterhever in #4397 + - addition: add Betterbird to user_agent_thunderbird by + @georglauterbach in #4404 + - [Minor] Replace "Spamhaus XBL any" hack with a more clear + solution by @twesterhever in #4398 + - [Enhancement] Add IPFS URL heuristic by @twesterhever in #4310 + - Checking for redirector url in mail by @korgoth1 in #4351 + - fix incorrect asn references in bimi.conf by @mta59066 in #4410 + - [Minor] Account for one more undisclosed-recipients address + variant by @citrin in #4413 + - Fix for x-rspamd-action in Milter headers module by @nishils in + #4416 + - [WebUI] Update JS libraries by @moisseev in #4414 + - [WebUI] Update bootstrap by @moisseev in #4420 + - [Minor] remove check for sys/cdefs.h in CMakelists.txt by + @a16bitsysop in #4430 + - [Minor] Fix some compiler warnings by @a16bitsysop in #4436 +- Drop 068714f9f5a96fbd94560211cec75775ee023d02.patch: +- this drops the rspamd-director binary + +------------------------------------------------------------------- Old: ---- 068714f9f5a96fbd94560211cec75775ee023d02.patch rspamd-3.4.tar.gz New: ---- rspamd-3.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rspamd.spec ++++++ --- /var/tmp/diff_new_pack.6j2xo3/_old 2023-03-25 18:56:09.162913692 +0100 +++ /var/tmp/diff_new_pack.6j2xo3/_new 2023-03-25 18:56:09.166913713 +0100 @@ -56,7 +56,7 @@ %endif Name: rspamd -Version: 3.4 +Version: 3.5 Release: 0 Summary: Spam filtering system License: Apache-2.0 @@ -67,7 +67,6 @@ Patch0: rspamd-conf.patch Patch1: rspamd-after-redis-target.patch Patch2: fix_missing_return.patch -Patch3: https://github.com/rspamd/rspamd/commit/068714f9f5a96fbd94560211cec75775ee023d02.patch %if !0%{?is_opensuse} # because 80-check-malware-scan-clamav triggered in SLE-15-SP2 BuildRequires: -post-build-checks-malwarescan @@ -113,8 +112,11 @@ BuildRequires: pkgconfig(systemd) %{?systemd_ordering} %endif +BuildRequires: lapack-devel +BuildRequires: pkgconfig(libunwind) +BuildRequires: pkgconfig(libxxhash) BuildRequires: pkgconfig(libzstd) - +BuildRequires: pkgconfig(openblas) %if 0%{?suse_version} >= 1550 Requires: lua54-lpeg %else @@ -173,6 +175,11 @@ export CXX="g++-%{?force_gcc_version}" %endif %cmake \ +%if 0%{?force_gcc_version} + -DCMAKE_ASM_COMPILER="gcc-%{?force_gcc_version}" \ +%else + -DCMAKE_ASM_COMPILER="gcc" \ +%endif %if 0%{suse_version} == 1315 -DCMAKE_USER_MAKE_RULES_OVERRIDE="" \ %endif @@ -194,6 +201,9 @@ -DENABLE_OPTIMIZATION=ON \ %endif -DENABLE_REDIRECTOR=ON \ + -DENABLE_LIBUNWIND:BOOL=ON \ + -DENABLE_BLAS:BOOL=ON \ + -DSYSTEM_XXHASH:BOOL=ON \ -DCMAKE_SKIP_INSTALL_RPATH=ON \ -DCMAKE_SKIP_RPATH=OFF \ %if %{with luajit} @@ -311,7 +321,6 @@ %defattr(-,root,root) %{_sbindir}/rc%{name} %{_bindir}/rspamd -%{_bindir}/rspamd-redirector %{_bindir}/rspamd_stats %{_libdir}/librspamd-actrie.so %{_libdir}/librspamd-server.so ++++++ rspamd-3.4.tar.gz -> rspamd-3.5.tar.gz ++++++ ++++ 46036 lines of diff (skipped)
