|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
#
|
|
|
|
|
# Fedora spec file for redis
|
|
|
|
|
# RHEL / Fedora spec file for redis
|
|
|
|
|
#
|
|
|
|
|
# License: MIT
|
|
|
|
|
# http://opensource.org/licenses/MIT
|
|
|
|
@ -12,7 +12,7 @@
|
|
|
|
|
|
|
|
|
|
# Commit IDs for the (unversioned) redis-doc repository
|
|
|
|
|
# https://fedoraproject.org/wiki/Packaging:SourceURL "Commit Revision"
|
|
|
|
|
%global doc_commit 3fdb6df44ecd5c4d99ea52a0133177f5ebc24805
|
|
|
|
|
%global doc_commit 8d4bf9bc476829a84a055c049be72634d6e938df
|
|
|
|
|
%global short_doc_commit %(c=%{doc_commit}; echo ${c:0:7})
|
|
|
|
|
|
|
|
|
|
# %%{rpmmacrodir} not usable on EL-6
|
|
|
|
@ -30,10 +30,13 @@ Source0: https://download.redis.io/releases/%{name}-%{version}.tar.gz
|
|
|
|
|
Source1: %{name}.logrotate
|
|
|
|
|
Source2: %{name}-sentinel.service
|
|
|
|
|
Source3: %{name}.service
|
|
|
|
|
Source4: %{name}-sentinel.init
|
|
|
|
|
Source5: %{name}.init
|
|
|
|
|
Source6: %{name}-shutdown
|
|
|
|
|
Source7: %{name}-limit-systemd
|
|
|
|
|
Source8: %{name}-limit-init
|
|
|
|
|
Source9: macros.%{name}
|
|
|
|
|
Source10: https://github.com/%{name}/%{name}-doc/archive/%{doc_commit}/%{name}-doc-%{short_doc_commit}.tar.gz
|
|
|
|
|
Source10: https://github.com/antirez/%{name}-doc/archive/%{doc_commit}/%{name}-doc-%{short_doc_commit}.tar.gz
|
|
|
|
|
|
|
|
|
|
# To refresh patches:
|
|
|
|
|
# tar xf redis-xxx.tar.gz && cd redis-xxx && git init && git add . && git commit -m "%%{version} baseline"
|
|
|
|
@ -41,10 +44,13 @@ Source10: https://github.com/%{name}/%{name}-doc/archive/%{doc_commit}/
|
|
|
|
|
# Then refresh your patches
|
|
|
|
|
# git format-patch HEAD~<number of expected patches>
|
|
|
|
|
# Update configuration for Fedora
|
|
|
|
|
# https://github.com/redis/redis/pull/3491 - man pages
|
|
|
|
|
# https://github.com/antirez/redis/pull/3491 - man pages
|
|
|
|
|
Patch0001: 0001-1st-man-pageis-for-redis-cli-redis-benchmark-redis-c.patch
|
|
|
|
|
# revert BC break
|
|
|
|
|
Patch0003: redis-config.patch
|
|
|
|
|
|
|
|
|
|
# Security patches
|
|
|
|
|
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
BuildRequires: gcc
|
|
|
|
|
%if %{with tests}
|
|
|
|
|
BuildRequires: procps-ng
|
|
|
|
@ -53,8 +59,6 @@ BuildRequires: tcl
|
|
|
|
|
BuildRequires: pkgconfig(libsystemd)
|
|
|
|
|
BuildRequires: systemd-devel
|
|
|
|
|
BuildRequires: openssl-devel
|
|
|
|
|
# redis-trib functionality migrated to redis-cli
|
|
|
|
|
Obsoletes: redis-trib < 5
|
|
|
|
|
# Required for redis-shutdown
|
|
|
|
|
Requires: /bin/awk
|
|
|
|
|
Requires: logrotate
|
|
|
|
@ -63,7 +67,7 @@ Requires(post): systemd
|
|
|
|
|
Requires(preun): systemd
|
|
|
|
|
Requires(postun): systemd
|
|
|
|
|
# from deps/hiredis/hiredis.h
|
|
|
|
|
Provides: bundled(hiredis) = 0.14.0
|
|
|
|
|
Provides: bundled(hiredis) = 1.0.0
|
|
|
|
|
# from deps/jemalloc/VERSION
|
|
|
|
|
Provides: bundled(jemalloc) = 5.1.0
|
|
|
|
|
# from deps/lua/src/lua.h
|
|
|
|
@ -128,6 +132,7 @@ administration and development.
|
|
|
|
|
%setup -q
|
|
|
|
|
mv ../%{name}-doc-%{doc_commit} doc
|
|
|
|
|
%patch0001 -p1
|
|
|
|
|
%patch0003 -p1 -b .rev
|
|
|
|
|
|
|
|
|
|
mv deps/lua/COPYRIGHT COPYRIGHT-lua
|
|
|
|
|
mv deps/jemalloc/COPYING COPYING-jemalloc
|
|
|
|
@ -149,7 +154,7 @@ fi
|
|
|
|
|
%global make_flags DEBUG="" V="echo" LDFLAGS="%{?__global_ldflags}" CFLAGS+="%{optflags} -fPIC" INSTALL="install -p" PREFIX=%{buildroot}%{_prefix} BUILD_WITH_SYSTEMD=yes BUILD_TLS=yes
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%make_build %{make_flags} all
|
|
|
|
|
make %{?_smp_mflags} %{make_flags} all
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
make %{make_flags} install
|
|
|
|
@ -164,8 +169,8 @@ install -d %{buildroot}%{redis_modules_dir}
|
|
|
|
|
install -pDm644 %{S:1} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
|
|
|
|
|
|
|
|
|
|
# Install configuration files.
|
|
|
|
|
install -pDm640 %{name}.conf %{buildroot}%{_sysconfdir}/%{name}/%{name}.conf
|
|
|
|
|
install -pDm640 sentinel.conf %{buildroot}%{_sysconfdir}/%{name}/sentinel.conf
|
|
|
|
|
install -pDm640 %{name}.conf %{buildroot}%{_sysconfdir}/%{name}.conf
|
|
|
|
|
install -pDm640 sentinel.conf %{buildroot}%{_sysconfdir}/%{name}-sentinel.conf
|
|
|
|
|
|
|
|
|
|
# Install systemd unit files.
|
|
|
|
|
mkdir -p %{buildroot}%{_unitdir}
|
|
|
|
@ -209,7 +214,7 @@ install -pDm644 %{S:9} %{buildroot}%{macrosdir}/macros.%{name}
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
%if %{with tests}
|
|
|
|
|
# https://github.com/redis/redis/issues/1417 (for "taskset -c 1")
|
|
|
|
|
# https://github.com/antirez/redis/issues/1417 (for "taskset -c 1")
|
|
|
|
|
taskset -c 1 make %{make_flags} test
|
|
|
|
|
make %{make_flags} test-sentinel
|
|
|
|
|
%endif
|
|
|
|
@ -223,25 +228,6 @@ useradd -r -g %{name} -d %{_sharedstatedir}/%{name} -s /sbin/nologin \
|
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
if [ -f %{_sysconfdir}/%{name}.conf -a ! -L %{_sysconfdir}/%{name}.conf ]; then
|
|
|
|
|
if [ -f %{_sysconfdir}/%{name}/%{name}.conf.rpmnew ]; then
|
|
|
|
|
rm %{_sysconfdir}/%{name}/%{name}.conf.rpmnew
|
|
|
|
|
fi
|
|
|
|
|
if [ -f %{_sysconfdir}/%{name}/%{name}.conf ]; then
|
|
|
|
|
mv %{_sysconfdir}/%{name}/%{name}.conf %{_sysconfdir}/%{name}/%{name}.conf.rpmnew
|
|
|
|
|
fi
|
|
|
|
|
mv %{_sysconfdir}/%{name}.conf %{_sysconfdir}/%{name}/%{name}.conf
|
|
|
|
|
echo -e "\nWarning: %{name} configuration is now in %{_sysconfdir}/%{name} directory\n"
|
|
|
|
|
fi
|
|
|
|
|
if [ -f %{_sysconfdir}/%{name}-sentinel.conf -a ! -L %{_sysconfdir}/%{name}-sentinel.conf ]; then
|
|
|
|
|
if [ -f %{_sysconfdir}/%{name}/sentinel.conf.rpmnew ]; then
|
|
|
|
|
rm %{_sysconfdir}/%{name}/sentinel.conf.rpmnew
|
|
|
|
|
fi
|
|
|
|
|
if [ -f %{_sysconfdir}/%{name}/sentinel.conf ]; then
|
|
|
|
|
mv %{_sysconfdir}/%{name}/sentinel.conf %{_sysconfdir}/%{name}/sentinel.conf.rpmnew
|
|
|
|
|
fi
|
|
|
|
|
mv %{_sysconfdir}/%{name}-sentinel.conf %{_sysconfdir}/%{name}/sentinel.conf
|
|
|
|
|
fi
|
|
|
|
|
%systemd_post %{name}.service
|
|
|
|
|
%systemd_post %{name}-sentinel.service
|
|
|
|
|
|
|
|
|
@ -260,9 +246,8 @@ fi
|
|
|
|
|
%license COPYING-jemalloc
|
|
|
|
|
%license COPYING-hiredis
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
|
|
|
|
%attr(0750, redis, root) %dir %{_sysconfdir}/%{name}
|
|
|
|
|
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
|
|
|
|
|
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{name}/sentinel.conf
|
|
|
|
|
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{name}.conf
|
|
|
|
|
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{name}-sentinel.conf
|
|
|
|
|
%dir %attr(0750, redis, redis) %{_libdir}/%{name}
|
|
|
|
|
%dir %attr(0750, redis, redis) %{redis_modules_dir}
|
|
|
|
|
%dir %attr(0750, redis, redis) %{_sharedstatedir}/%{name}
|
|
|
|
@ -289,168 +274,68 @@ fi
|
|
|
|
|
%{macrosdir}/*
|
|
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
|
# specific for documentation (CC-BY-SA)
|
|
|
|
|
%license doc/LICENSE
|
|
|
|
|
# main package is not required
|
|
|
|
|
%license COPYING
|
|
|
|
|
%docdir %{_docdir}/%{name}
|
|
|
|
|
%{_docdir}/%{name}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue May 10 2022 Remi Collet <rcollet@redhat.com> - 6.2.7-1
|
|
|
|
|
- rebase to 6.2.7 #2083151
|
|
|
|
|
|
|
|
|
|
* Wed Nov 3 2021 Remi Collet <remi@remirepo.net> - 6.2.6-1
|
|
|
|
|
- rebase to 6.2.6 #2013992
|
|
|
|
|
- refresh documentation
|
|
|
|
|
- use proper license file for documentation
|
|
|
|
|
|
|
|
|
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 6.2.3-3
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 6.2.3-2
|
|
|
|
|
- Rebuilt for RHEL 9 BETA for openssl 3.0
|
|
|
|
|
Related: rhbz#1971065
|
|
|
|
|
|
|
|
|
|
* Tue May 4 2021 Remi Collet <remi@remirepo.net> - 6.2.3-1
|
|
|
|
|
- Upstream 6.2.3 release
|
|
|
|
|
|
|
|
|
|
* Tue Apr 20 2021 Remi Collet <remi@remirepo.net> - 6.2.2-1
|
|
|
|
|
- Upstream 6.2.2 release
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 6.2.1-2
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
|
|
|
|
|
* Thu Apr 01 2021 Nathan Scott <nathans@redhat.com> - 6.2.1-1
|
|
|
|
|
- Upstream 6.2.1 release
|
|
|
|
|
- Merged make-macros spec change from Tom Stellard
|
|
|
|
|
|
|
|
|
|
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 6.2.0-2
|
|
|
|
|
- Rebuilt for updated systemd-rpm-macros
|
|
|
|
|
See https://pagure.io/fesco/issue/2583.
|
|
|
|
|
|
|
|
|
|
* Mon Mar 01 2021 Nathan Scott <nathans@redhat.com> - 6.2.0-1
|
|
|
|
|
- Upstream 6.2.0 release (RHBZ #1915463).
|
|
|
|
|
- drop patch merged upstream.
|
|
|
|
|
|
|
|
|
|
* Wed Feb 24 2021 Nathan Scott <nathans@redhat.com> - 6.0.11-1
|
|
|
|
|
- Upstream 6.0.11 release.
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.10-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jan 13 2021 Remi Collet <remi@remirepo.net> - 6.0.10-1
|
|
|
|
|
- Upstream 6.0.10 release.
|
|
|
|
|
|
|
|
|
|
* Tue Nov 24 2020 Remi Collet <remi@remirepo.net> - 6.0.9-3
|
|
|
|
|
- fix check for regular file, not symlink
|
|
|
|
|
|
|
|
|
|
* Mon Nov 23 2020 Remi Collet <remi@remirepo.net> - 6.0.9-2
|
|
|
|
|
- move configuration in /etc/redis per upstream recommendation
|
|
|
|
|
see https://github.com/redis/redis/issues/8051
|
|
|
|
|
|
|
|
|
|
* Tue Oct 27 2020 Remi Collet <remi@remirepo.net> - 6.0.9-1
|
|
|
|
|
- Upstream 6.0.9 release.
|
|
|
|
|
|
|
|
|
|
* Tue Oct 20 2020 Remi Collet <remi@remirepo.net> - 6.0.8-2
|
|
|
|
|
- add missing LICENSE files in main package
|
|
|
|
|
|
|
|
|
|
* Thu Sep 10 2020 Remi Collet <remi@remirepo.net> - 6.0.8-1
|
|
|
|
|
- Upstream 6.0.8 release.
|
|
|
|
|
|
|
|
|
|
* Tue Sep 1 2020 Remi Collet <remi@remirepo.net> - 6.0.7-1
|
|
|
|
|
- Upstream 6.0.7 release.
|
|
|
|
|
- drop patch merged upstream
|
|
|
|
|
|
|
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.6-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jul 21 2020 Remi Collet <rcollet@redhat.com> - 6.0.6-1
|
|
|
|
|
- Upstream 6.0.6 release.
|
|
|
|
|
- drop patch merged upstream
|
|
|
|
|
- open https://github.com/redis/redis/pull/7543 fix deprecated tail syntax
|
|
|
|
|
|
|
|
|
|
* Wed Jun 10 2020 Nathan Scott <nathans@redhat.com> - 6.0.5-1
|
|
|
|
|
- Upstream 6.0.5 release.
|
|
|
|
|
|
|
|
|
|
* Thu May 28 2020 Remi Collet <remi@remirepo.net> - 6.0.4-3
|
|
|
|
|
- Add comment for TimeoutStartSec and TimeoutStopSec in limit.conf
|
|
|
|
|
- Fix missing notification to systemd for sentinel
|
|
|
|
|
patch from https://github.com/redis/redis/pull/7168
|
|
|
|
|
- Upstream 6.0.4 release.
|
|
|
|
|
|
|
|
|
|
* Mon May 18 2020 Nathan Scott <nathans@redhat.com> - 6.0.3-1
|
|
|
|
|
- Upstream 6.0.3 release.
|
|
|
|
|
|
|
|
|
|
* Wed May 6 2020 Remi Collet <rcollet@redhat.com> - 6.0.1-1
|
|
|
|
|
- Upstream 6.0.1 release.
|
|
|
|
|
|
|
|
|
|
* Fri May 01 2020 Nathan Scott <nathans@redhat.com> - 6.0.0-1
|
|
|
|
|
- Upstream 6.0.0 release.
|
|
|
|
|
|
|
|
|
|
* Fri Mar 13 2020 Nathan Scott <nathans@redhat.com> - 5.0.8-1
|
|
|
|
|
- Upstream 5.0.8 release.
|
|
|
|
|
|
|
|
|
|
* Wed Feb 12 2020 Nathan Scott <nathans@redhat.com> - 5.0.7-3
|
|
|
|
|
- Patch extern SDS_NOINIT definition for gcc 10 (RHBZ #1799969)
|
|
|
|
|
|
|
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.7-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Nov 19 2019 Carl George <carl@george.computer> - 5.0.7-1
|
|
|
|
|
- Latest upstream
|
|
|
|
|
|
|
|
|
|
* Thu Sep 26 2019 Nathan Scott <nathans@redhat.com> - 5.0.6-1
|
|
|
|
|
- Upstream 5.0.6 release and redis-doc updates.
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.5-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jul 15 2019 Nathan Scott <nathans@redhat.com> - 5.0.5-2
|
|
|
|
|
- Use the (modified) bundled jemalloc for defrag (RHBZ #1725852)
|
|
|
|
|
|
|
|
|
|
* Thu May 16 2019 Nathan Scott <nathans@redhat.com> - 5.0.5-1
|
|
|
|
|
- Upstream 5.0.5 release and redis-doc updates.
|
|
|
|
|
|
|
|
|
|
* Sat May 11 2019 Nathan Scott <nathans@redhat.com> - 5.0.4-2
|
|
|
|
|
- Obsolete redis-trib - functionality now in redis-cli(1)
|
|
|
|
|
- Remove old chkconfig support, all systemd platforms now
|
|
|
|
|
|
|
|
|
|
* Tue Mar 19 2019 Nathan Scott <nathans@redhat.com> - 5.0.4-1
|
|
|
|
|
- Upstream 5.0.4 release and redis-doc updates.
|
|
|
|
|
- Fix sentinel.conf logfile line addition.
|
|
|
|
|
|
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.3-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Dec 13 2018 Nathan Scott <nathans@redhat.com> - 5.0.3-1
|
|
|
|
|
- Upstream 5.0.3 release and redis-doc updates.
|
|
|
|
|
|
|
|
|
|
* Fri Nov 23 2018 Nathan Scott <nathans@redhat.com> - 5.0.2-1
|
|
|
|
|
- Upstream 5.0.2 release and redis-doc updates.
|
|
|
|
|
|
|
|
|
|
* Thu Nov 08 2018 Nathan Scott <nathans@redhat.com> - 5.0.1-1
|
|
|
|
|
- Upstream 5.0.1 release.
|
|
|
|
|
|
|
|
|
|
* Thu Oct 18 2018 Nathan Scott <nathans@redhat.com> - 5.0.0-1
|
|
|
|
|
- Update systemd service files for network-online requirement
|
|
|
|
|
- Upstream 5.0.0 release.
|
|
|
|
|
|
|
|
|
|
* Thu Aug 09 2018 Nathan Scott <nathans@redhat.com> - 4.0.11-1
|
|
|
|
|
- Drop the pandoc build dependency, install only markdown.
|
|
|
|
|
- Upstream 4.0.11 release.
|
|
|
|
|
|
|
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.10-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
* Mon May 9 2022 Remi Collet <rcollet@redhat.com> - 6.2.7-1
|
|
|
|
|
- rebase to 6.2.7 #1999873
|
|
|
|
|
|
|
|
|
|
* Mon Oct 11 2021 Remi Collet <rcollet@redhat.com> - 6.0.9-5
|
|
|
|
|
- fix denial of service via Redis Standard Protocol (RESP) request
|
|
|
|
|
CVE-2021-32675
|
|
|
|
|
|
|
|
|
|
* Fri Oct 8 2021 Remi Collet <rcollet@redhat.com> - 6.0.9-4
|
|
|
|
|
- fix lua scripts can overflow the heap-based Lua stack
|
|
|
|
|
CVE-2021-32626
|
|
|
|
|
- fix integer overflow issue with Streams
|
|
|
|
|
CVE-2021-32627
|
|
|
|
|
- fix integer overflow bug in the ziplist data structure
|
|
|
|
|
CVE-2021-32628
|
|
|
|
|
- fix integer overflow issue with intsets
|
|
|
|
|
CVE-2021-32687
|
|
|
|
|
- fix integer overflow issue with strings
|
|
|
|
|
CVE-2021-41099
|
|
|
|
|
|
|
|
|
|
* Wed May 12 2021 Remi Collet <rcollet@redhat.com> - 6.0.9-3
|
|
|
|
|
- fix integer overflow via STRALGO LCS command
|
|
|
|
|
CVE-2021-29477
|
|
|
|
|
|
|
|
|
|
* Tue Nov 24 2020 Remi Collet <rcollet@redhat.com> - 6.0.9-2
|
|
|
|
|
- revert "simplify config rewrite file" and keep
|
|
|
|
|
configuration in /etc
|
|
|
|
|
|
|
|
|
|
* Thu Oct 29 2020 Remi Collet <rcollet@redhat.com> - 6.0.9-1
|
|
|
|
|
- update to 6.0.9
|
|
|
|
|
|
|
|
|
|
* Tue Oct 20 2020 Remi Collet <rcollet@redhat.com> - 6.0.8-1
|
|
|
|
|
- update to 6.0.8 for new stream #1862063
|
|
|
|
|
|
|
|
|
|
* Thu Jul 11 2019 Remi Collet <rcollet@redhat.com> - 5.0.3-2
|
|
|
|
|
- fix Heap buffer overflow in HyperLogLog triggered by malicious client
|
|
|
|
|
CVE-2019-10192
|
|
|
|
|
- fix Stack buffer overflow in HyperLogLog triggered by malicious client
|
|
|
|
|
CVE-2019-10193
|
|
|
|
|
|
|
|
|
|
* Thu Dec 13 2018 Remi Collet <rcollet@redhat.com> - 5.0.3-1
|
|
|
|
|
- update to 5.0.3
|
|
|
|
|
|
|
|
|
|
* Mon Jun 25 2018 Remi Collet <rcollet@redhat.com> - 4.0.10-2
|
|
|
|
|
- drop build dependency on pandoc
|
|
|
|
|
- drop dependency on jemalloc #1591762
|
|
|
|
|
- fix License (BSD and MIT)
|
|
|
|
|
- add bundled libraries licences
|
|
|
|
|
- add information about bundled lzf
|
|
|
|
|
- cleanup conditions from spec file
|
|
|
|
|
|
|
|
|
|
* Thu Jun 14 2018 Nathan Scott <nathans@redhat.com> - 4.0.10-1
|
|
|
|
|
- Upstream 4.0.10 release.
|
|
|
|
|
|
|
|
|
|
* Mon May 21 2018 Joe Orton <jorton@redhat.com> - 4.0.9-1.2
|
|
|
|
|
- rebuild (#1571197)
|
|
|
|
|
|
|
|
|
|
* Tue Mar 27 2018 Nathan Scott <nathans@redhat.com> - 4.0.9-1
|
|
|
|
|
- Upstream 4.0.9 release.
|
|
|
|
|
|
|
|
|
@ -540,11 +425,11 @@ fi
|
|
|
|
|
|
|
|
|
|
* Wed Sep 14 2016 Remi Collet <remi@fedoraproject.org> - 3.2.3-2
|
|
|
|
|
- add missing man pages #1374577
|
|
|
|
|
using patch from https://github.com/redis/redis/pull/3491
|
|
|
|
|
using patch from https://github.com/antirez/redis/pull/3491
|
|
|
|
|
- data and configuration should not be publicly readable #1374700
|
|
|
|
|
- remove /var/run/redis with systemd #1374728
|
|
|
|
|
- provide redis-check-rdb as a symlink to redis-server #1374736
|
|
|
|
|
using patch from https://github.com/redis/redis/pull/3494
|
|
|
|
|
using patch from https://github.com/antirez/redis/pull/3494
|
|
|
|
|
- move redis-shutdown to libexec
|
|
|
|
|
|
|
|
|
|
* Thu Aug 4 2016 Haïkel Guémar <hguemar@fedoraproject.org> - 3.2.3-1
|
|
|
|
|