|
@@ -1,4 +1,5 @@
|
|
%bcond_with systemd
|
|
%bcond_with systemd
|
|
|
|
+%bcond_with jemalloc
|
|
|
|
|
|
%define rspamd_user _rspamd
|
|
%define rspamd_user _rspamd
|
|
%define rspamd_group %{rspamd_user}
|
|
%define rspamd_group %{rspamd_user}
|
|
@@ -12,7 +13,7 @@
|
|
Summary: Rapid spam filtering system
|
|
Summary: Rapid spam filtering system
|
|
Name: rspamd
|
|
Name: rspamd
|
|
Version: 3.0
|
|
Version: 3.0
|
|
-Release: 1%{?_dist_release}%{?with_systemd:.systemd}
|
|
|
|
|
|
+Release: 3%{?_dist_release}%{?with_systemd:.systemd}
|
|
Group: servers
|
|
Group: servers
|
|
Vendor: Project Vine
|
|
Vendor: Project Vine
|
|
Distribution: Vine Linux
|
|
Distribution: Vine Linux
|
|
@@ -24,6 +25,7 @@ Patch0: rspamd-3.0-lua54.patch
|
|
# to build with glibc-2.34+
|
|
# to build with glibc-2.34+
|
|
# https://github.com/onqtam/doctest/commit/099d5414e97244ec44cf46b14cd176b3a3dc52e3
|
|
# https://github.com/onqtam/doctest/commit/099d5414e97244ec44cf46b14cd176b3a3dc52e3
|
|
Patch1: doctest-SIGSTKSZ.patch
|
|
Patch1: doctest-SIGSTKSZ.patch
|
|
|
|
+Patch2: rspamd-openssl3.patch
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}
|
|
|
|
|
|
@@ -34,6 +36,9 @@ BuildRequires: gmime-devel
|
|
%ifarch x86_64
|
|
%ifarch x86_64
|
|
BuildRequires: hyperscan-devel
|
|
BuildRequires: hyperscan-devel
|
|
%endif
|
|
%endif
|
|
|
|
+%if %{with jemalloc}
|
|
|
|
+BuildRequires: jemalloc-devel
|
|
|
|
+%endif
|
|
BuildRequires: libevent-devel
|
|
BuildRequires: libevent-devel
|
|
BuildRequires: libicu-devel
|
|
BuildRequires: libicu-devel
|
|
BuildRequires: libsodium-devel
|
|
BuildRequires: libsodium-devel
|
|
@@ -76,11 +81,11 @@ lua.
|
|
pushd contrib/doctest
|
|
pushd contrib/doctest
|
|
%patch1 -p1
|
|
%patch1 -p1
|
|
popd
|
|
popd
|
|
|
|
+%patch2 -p1
|
|
|
|
|
|
|
|
|
|
%build
|
|
%build
|
|
-%{__cmake} \
|
|
|
|
- -DCMAKE_C_OPT_FLAGS="%{optflags}" \
|
|
|
|
|
|
+%cmake \
|
|
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
|
|
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
|
|
-DCONFDIR=%{_sysconfdir}/rspamd \
|
|
-DCONFDIR=%{_sysconfdir}/rspamd \
|
|
-DINCLUDEDIR=%{_includedir} \
|
|
-DINCLUDEDIR=%{_includedir} \
|
|
@@ -108,15 +113,18 @@ popd
|
|
-DENABLE_LIBUNWIND=ON \
|
|
-DENABLE_LIBUNWIND=ON \
|
|
-DENABLE_LUAJIT=OFF \
|
|
-DENABLE_LUAJIT=OFF \
|
|
-DENABLE_PCRE2=ON \
|
|
-DENABLE_PCRE2=ON \
|
|
|
|
+%if %{with jemalloc}
|
|
|
|
+ -DENABLE_JEMALLOC=ON \
|
|
|
|
+%endif
|
|
%nil
|
|
%nil
|
|
|
|
|
|
#-DCMAKE_SKIP_INSTALL_RPATH=ON \
|
|
#-DCMAKE_SKIP_INSTALL_RPATH=ON \
|
|
|
|
|
|
-%{__make} %{?_smp_mflags}
|
|
|
|
|
|
+%cmake_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
%install
|
|
-%{__make} install DESTDIR=%{buildroot} INSTALLDIRS=vendor
|
|
|
|
|
|
+%cmake_install INSTALLDIRS=vendor
|
|
|
|
|
|
pushd ./centos/sources/
|
|
pushd ./centos/sources/
|
|
|
|
|
|
@@ -250,6 +258,13 @@ fi
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
%changelog
|
|
|
|
+* Sat Oct 16 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0-3
|
|
|
|
+- disabled jemalloc as default: SIGSEGV was occured.
|
|
|
|
+
|
|
|
|
+* Sat Oct 16 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0-2
|
|
|
|
+- added Patch2 to build with openssl-3.0.0.
|
|
|
|
+- built with jemalloc.
|
|
|
|
+
|
|
* Thu Aug 19 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0-1
|
|
* Thu Aug 19 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0-1
|
|
- new upstream release.
|
|
- new upstream release.
|
|
- updated Patch0.
|
|
- updated Patch0.
|