Accepting request 1204600 from server:mail

- disable luajit until we actually package all the lua extensions
  for all interpreters. mixing luajit with lua built extensions
  is not working properly apparently
  https://github.com/rspamd/rspamd/discussions/4898
  https://github.com/rspamd/rspamd/discussions/4819
- loosen the Buildrequires for fmt to allow all versions. For older
  distros we will use the intree copy. We added the bundled
  provides in that case.

OBS-URL: https://build.opensuse.org/request/show/1204600
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rspamd?expand=0&rev=28
This commit is contained in:
Ana Guerrero 2024-09-30 13:40:53 +00:00 committed by Git OBS Bridge
commit 38f581456f
2 changed files with 17 additions and 2 deletions

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Sun Sep 29 23:24:57 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>
- disable luajit until we actually package all the lua extensions
for all interpreters. mixing luajit with lua built extensions
is not working properly apparently
https://github.com/rspamd/rspamd/discussions/4898
https://github.com/rspamd/rspamd/discussions/4819
- loosen the Buildrequires for fmt to allow all versions. For older
distros we will use the intree copy. We added the bundled
provides in that case.
-------------------------------------------------------------------
Wed Jul 31 10:21:39 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

View File

@ -31,7 +31,7 @@
%bcond_without hyperscan
%endif
%if (0%{?suse_version} >= 1315)
%bcond_without luajit
%bcond_with luajit
%endif
%endif
@ -95,7 +95,10 @@ BuildRequires: openblas-devel
%endif
BuildRequires: pcre2-devel
BuildRequires: pkgconfig
BuildRequires: pkgconfig(fmt) >= 11
BuildRequires: pkgconfig(fmt)
%if !%{pkg_vcmp fmt-devel > 11}
Provides: bundled(fmt) = 11.0.0
%endif
BuildRequires: pkgconfig(glib-2.0) >= 2.28
%if %{with ext_hiredis}
BuildRequires: pkgconfig(hiredis)