221 lines
8.3 KiB
RPMSpec
221 lines
8.3 KiB
RPMSpec
%bcond_with tests
|
|
%global doc_commit 4cd19bb1c3e3e00a8ff62a1dec5c2c6bcf9bc4bf
|
|
%global short_doc_commit %(c=%{doc_commit}; echo ${c:0:7})
|
|
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
|
|
%global make_flags DEBUG="" V="echo" LDFLAGS="%{?__global_ldflags}" CFLAGS+="%{optflags} -fPIC" INSTALL="install -p" PREFIX=%{buildroot}%{_prefix}
|
|
%global Pname redis
|
|
Name: redis5
|
|
Version: 5.0.14
|
|
Release: 3
|
|
Summary: A persistent key-value database
|
|
License: BSD and MIT
|
|
URL: https://redis.io
|
|
Source0: http://download.redis.io/releases/%{Pname}-%{version}.tar.gz
|
|
Source1: %{Pname}.logrotate
|
|
Source2: %{Pname}-sentinel.service
|
|
Source3: %{Pname}.service
|
|
Source4: %{Pname}-sentinel.init
|
|
Source5: %{Pname}.init
|
|
Source6: %{Pname}-shutdown
|
|
Source7: %{Pname}-limit-systemd
|
|
Source8: %{Pname}-limit-init
|
|
Source9: macros.%{Pname}
|
|
Source10: https://github.com/antirez/%{Pname}-doc/archive/%{doc_commit}/%{Pname}-doc-%{short_doc_commit}.tar.gz
|
|
|
|
Patch0001: Modify-aarch64-architecture-jemalloc-page-size-from-from-4k-to-64k.patch
|
|
Patch0002: Fix-display-error-message.patch
|
|
|
|
Patch0003: Add-loongarch64-support.patch
|
|
Patch0004: Update-config.guess-and-config.sub.patch
|
|
|
|
BuildRequires: gcc
|
|
%if %{with tests}
|
|
BuildRequires: procps-ng tcl
|
|
%endif
|
|
BuildRequires: systemd libatomic
|
|
Obsoletes: redis-trib < 5
|
|
Requires: /bin/awk logrotate
|
|
Provides: bundled(hiredis)
|
|
Provides: bundled(jemalloc)
|
|
Provides: bundled(lua-libs)
|
|
Provides: bundled(linenoise)
|
|
Provides: bundled(lzf)
|
|
Requires(pre): shadow-utils
|
|
Requires(post): systemd
|
|
Requires(preun): systemd
|
|
Requires(postun): systemd
|
|
Provides: redis(modules_abi) = 1
|
|
%description
|
|
Redis is an advanced key-value store. It is often referred to as a data
|
|
structure server since keys can contain strings, hashes, lists, sets and
|
|
sorted sets.
|
|
You can run atomic operations on these types, like appending to a string;
|
|
incrementing the value in a hash; pushing to a list; computing set
|
|
intersection, union and difference; or getting the member with highest
|
|
ranking in a sorted set.
|
|
In order to achieve its outstanding performance, Redis works with an
|
|
in-memory dataset. Depending on your use case, you can persist it either
|
|
by dumping the dataset to disk every once in a while, or by appending
|
|
each command to a log.
|
|
Redis also supports trivial-to-setup master-slave replication, with very
|
|
fast non-blocking first synchronization, auto-reconnection on net split
|
|
and so forth.
|
|
Other features include Transactions, Pub/Sub, Lua scripting, Keys with a
|
|
limited time-to-live, and configuration settings to make Redis behave like
|
|
a cache.
|
|
You can use Redis from most programming languages also.
|
|
|
|
%package devel
|
|
Summary: Development header for Redis module development
|
|
Provides: %{Pname}-static = %{version}-%{release}
|
|
%description devel
|
|
Header file required for building loadable Redis modules. Detailed
|
|
API documentation is available in the redis-doc package.
|
|
|
|
%package doc
|
|
Summary: Documentation for Redis
|
|
License: CC-BY-SA
|
|
BuildArch: noarch
|
|
Conflicts: redis < 4.0
|
|
%description doc
|
|
Detailed documentation for many aspects of Redis use,
|
|
administration and development.
|
|
|
|
%prep
|
|
tar -xvf %{SOURCE10}
|
|
%setup -n %{Pname}-%{version}
|
|
%ifarch aarch64
|
|
%patch0001 -p1
|
|
%endif
|
|
%patch0002 -p1
|
|
%ifarch loongarch64
|
|
%patch0003 -p1
|
|
%patch0004 -p1
|
|
%endif
|
|
mv ../%{Pname}-doc-%{doc_commit} doc
|
|
mv deps/lua/COPYRIGHT COPYRIGHT-lua
|
|
mv deps/hiredis/COPYING COPYING-hiredis
|
|
sed -i -e 's|^logfile .*$|logfile /var/log/redis/redis.log|g' redis.conf
|
|
sed -i -e 's|^logfile .*$|logfile /var/log/redis/sentinel.log|g' sentinel.conf
|
|
sed -i -e 's|^dir .*$|dir /var/lib/redis|g' redis.conf
|
|
api=`sed -n -e 's/#define REDISMODULE_APIVER_[0-9][0-9]* //p' src/redismodule.h`
|
|
if test "$api" != "1"; then
|
|
: Error: Upstream API version is now ${api}, expecting %1.
|
|
: Update the redis_modules_abi macro, the rpmmacros file, and rebuild.
|
|
exit 1
|
|
fi
|
|
|
|
%build
|
|
make %{?_smp_mflags} %{make_flags} all
|
|
|
|
%install
|
|
make %{make_flags} install
|
|
install -d %{buildroot}%{_sharedstatedir}/%{Pname}
|
|
install -d %{buildroot}%{_localstatedir}/log/%{Pname}
|
|
install -d %{buildroot}%{_localstatedir}/run/%{Pname}
|
|
install -d %{buildroot}%{_libdir}/%{Pname}/modules
|
|
install -pDm644 %{S:1} %{buildroot}%{_sysconfdir}/logrotate.d/%{Pname}
|
|
install -pDm640 %{Pname}.conf %{buildroot}%{_sysconfdir}/%{Pname}.conf
|
|
install -pDm640 sentinel.conf %{buildroot}%{_sysconfdir}/%{Pname}-sentinel.conf
|
|
mkdir -p %{buildroot}%{_unitdir}
|
|
install -pm644 %{S:3} %{buildroot}%{_unitdir}
|
|
install -pm644 %{S:2} %{buildroot}%{_unitdir}
|
|
install -p -D -m 644 %{S:7} %{buildroot}%{_sysconfdir}/systemd/system/%{Pname}.service.d/limit.conf
|
|
install -p -D -m 644 %{S:7} %{buildroot}%{_sysconfdir}/systemd/system/%{Pname}-sentinel.service.d/limit.conf
|
|
chmod 755 %{buildroot}%{_bindir}/%{Pname}-*
|
|
install -pDm755 %{S:6} %{buildroot}%{_libexecdir}/%{Pname}-shutdown
|
|
install -pDm644 src/%{Pname}module.h %{buildroot}%{_includedir}/%{Pname}module.h
|
|
doc=$(echo %{buildroot}/%{_docdir}/%{Pname})
|
|
for page in 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO; do
|
|
install -Dpm644 $page $doc/$page
|
|
done
|
|
for page in $(find doc -name \*.md | sed -e 's|.md$||g'); do
|
|
base=$(echo $page | sed -e 's|doc/||g')
|
|
install -Dpm644 $page.md $doc/$base.md
|
|
done
|
|
mkdir -p %{buildroot}%{macrosdir}
|
|
install -pDm644 %{S:9} %{buildroot}%{macrosdir}/macros.%{Pname}
|
|
|
|
%if %{with tests}
|
|
%check
|
|
sed -e '/memefficiency/d' -i tests/test_helper.tcl
|
|
taskset -c 1 make %{make_flags} test
|
|
make %{make_flags} test-sentinel
|
|
%endif
|
|
|
|
%pre
|
|
getent group %{Pname} &> /dev/null || \
|
|
groupadd -r %{Pname} &> /dev/null
|
|
getent passwd %{Pname} &> /dev/null || \
|
|
useradd -r -g %{Pname} -d %{_sharedstatedir}/%{Pname} -s /sbin/nologin \
|
|
-c 'Redis Database Server' %{Pname} &> /dev/null
|
|
exit 0
|
|
|
|
%post
|
|
%systemd_post %{Pname}.service
|
|
%systemd_post %{Pname}-sentinel.service
|
|
|
|
%preun
|
|
%systemd_preun %{Pname}.service
|
|
%systemd_preun %{Pname}-sentinel.service
|
|
|
|
%postun
|
|
%systemd_postun_with_restart %{Pname}.service
|
|
%systemd_postun_with_restart %{Pname}-sentinel.service
|
|
|
|
%files
|
|
%{!?_licensedir:%global license %%doc}
|
|
%license COPYING
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/%{Pname}
|
|
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{Pname}.conf
|
|
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{Pname}-sentinel.conf
|
|
%dir %attr(0750, redis, redis) %{_libdir}/%{Pname}
|
|
%dir %attr(0750, redis, redis) %{_libdir}/%{Pname}/modules
|
|
%dir %attr(0750, redis, redis) %{_sharedstatedir}/%{Pname}
|
|
%dir %attr(0750, redis, redis) %{_localstatedir}/log/%{Pname}
|
|
%exclude %{macrosdir}
|
|
%exclude %{_includedir}
|
|
%exclude %{_docdir}/%{Pname}/*
|
|
%{_bindir}/%{Pname}-*
|
|
%{_libexecdir}/%{Pname}-*
|
|
%{_unitdir}/%{Pname}.service
|
|
%{_unitdir}/%{Pname}-sentinel.service
|
|
%dir %{_sysconfdir}/systemd/system/%{Pname}.service.d
|
|
%config(noreplace) %{_sysconfdir}/systemd/system/%{Pname}.service.d/limit.conf
|
|
%dir %{_sysconfdir}/systemd/system/%{Pname}-sentinel.service.d
|
|
%config(noreplace) %{_sysconfdir}/systemd/system/%{Pname}-sentinel.service.d/limit.conf
|
|
%dir %attr(0755, redis, redis) %ghost %{_localstatedir}/run/%{Pname}
|
|
|
|
%files devel
|
|
%license COPYING COPYRIGHT-lua COPYING-hiredis
|
|
%{_includedir}/%{Pname}module.h
|
|
%{macrosdir}/*
|
|
|
|
%files doc
|
|
%docdir %{_docdir}/%{Pname}
|
|
%{_docdir}/%{Pname}
|
|
|
|
%changelog
|
|
* Tue Nov 15 2022 huajingyun <huajingyun@loongson.cn> - 5.0.14-3
|
|
- Update config.guess and config.sub for loongarch
|
|
|
|
* Sat Dec 04 2021 xu_ping <xuping33@huawei.com> - 5.0.14-2
|
|
- Fix display error message
|
|
|
|
* Tue Nov 30 2021 yaoxin <yaoxin30@huawei.com> - 5.0.14-1
|
|
- Upgrade redis5 to 5.0.14 for fix cves: CVE-2021-41099
|
|
CVE-2021-32762 CVE-2021-32675 CVE-2021-32687 CVE-2021-32626
|
|
CVE-2021-32627 CVE-2021-32628
|
|
|
|
* Thu Sep 02 2021 lingsheng <lingsheng@huawei.com> - 5.0.7-4
|
|
- Fix missing patch in source package
|
|
|
|
* Tue Aug 03 2021 wangyong <wangyong187@huawei.com> - 5.0.7-3
|
|
- Fix build error caused by GCC upgrade to GCC-10
|
|
|
|
* Mon Mar 29 2021 lingsheng <lingsheng@huawei.com> - 5.0.7-2
|
|
- Modify aarch64 architecture jemalloc page size from 4k to 64k
|
|
|
|
* Sat Mar 20 2021 huanghaitao <huanghaitao8@huawei.com> - 5.0.7-1
|
|
- package init
|