Blame SPECS/redis.spec

6bfd36
#
6bfd36
# RHEL / Fedora spec file for redis
6bfd36
#
6bfd36
# License: MIT
6bfd36
# http://opensource.org/licenses/MIT
6bfd36
#
6bfd36
# Please preserve changelog entries
6bfd36
#
6bfd36
6bfd36
# Tests fail in mock, not in local build.
6bfd36
%global with_tests 0%{?_with_tests:1}
6bfd36
6bfd36
# Commit IDs for the (unversioned) redis-doc repository
6bfd36
# https://fedoraproject.org/wiki/Packaging:SourceURL "Commit Revision"
6bfd36
%global doc_commit a1e79fc9b2f42f04a8ab59c05c3228931adcd0a6
6bfd36
%global short_doc_commit %(c=%{doc_commit}; echo ${c:0:7})
6bfd36
6bfd36
# %%{rpmmacrodir} not usable on EL-6
6bfd36
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
6bfd36
6bfd36
Name:              redis
6bfd36
Version:           5.0.3
499bc1
Release:           5%{?dist}
6bfd36
Summary:           A persistent key-value database
6bfd36
# redis, jemalloc, linenoise, lzf, hiredis are BSD
6bfd36
# lua is MIT
6bfd36
License:           BSD and MIT
6bfd36
URL:               http://redis.io
6bfd36
Source0:           http://download.redis.io/releases/%{name}-%{version}.tar.gz
6bfd36
Source1:           %{name}.logrotate
6bfd36
Source2:           %{name}-sentinel.service
6bfd36
Source3:           %{name}.service
6bfd36
Source4:           %{name}-sentinel.init
6bfd36
Source5:           %{name}.init
6bfd36
Source6:           %{name}-shutdown
6bfd36
Source7:           %{name}-limit-systemd
6bfd36
Source8:           %{name}-limit-init
6bfd36
Source9:           macros.%{name}
6bfd36
Source10:          https://github.com/antirez/%{name}-doc/archive/%{doc_commit}/%{name}-doc-%{short_doc_commit}.tar.gz
6bfd36
6bfd36
# To refresh patches:
6bfd36
# tar xf redis-xxx.tar.gz && cd redis-xxx && git init && git add . && git commit -m "%%{version} baseline"
6bfd36
# git am %%{patches}
6bfd36
# Then refresh your patches
6bfd36
# git format-patch HEAD~<number of expected patches>
6bfd36
# Update configuration for Fedora
6bfd36
# https://github.com/antirez/redis/pull/3491 - man pages
6bfd36
Patch0001:         0001-1st-man-pageis-for-redis-cli-redis-benchmark-redis-c.patch
6bfd36
# https://github.com/antirez/redis/pull/3494 - symlink
6bfd36
Patch0002:         0002-install-redis-check-rdb-as-a-symlink-instead-of-dupl.patch
35eea6
35eea6
# Security patches
499bc1
Patch100:          redis-CVE-2019-10192.patch
499bc1
Patch101:          redis-CVE-2019-10193.patch
499bc1
Patch102:          redis-CVE-2021-41099.patch
499bc1
Patch103:          redis-CVE-2021-32687.patch
499bc1
Patch104:          redis-CVE-2021-32626.patch
499bc1
Patch105:          redis-CVE-2021-32627.patch
499bc1
Patch106:          redis-CVE-2021-32675.patch
35eea6
6bfd36
%if 0%{?with_tests}
6bfd36
BuildRequires:     procps-ng
6bfd36
BuildRequires:     tcl
6bfd36
%endif
6bfd36
BuildRequires:     systemd
6bfd36
# Required for redis-shutdown
6bfd36
Requires:          /bin/awk
6bfd36
Requires:          logrotate
6bfd36
Requires(pre):     shadow-utils
6bfd36
Requires(post):    systemd
6bfd36
Requires(preun):   systemd
6bfd36
Requires(postun):  systemd
6bfd36
Provides:          bundled(hiredis)
6bfd36
Provides:          bundled(lua-libs)
6bfd36
Provides:          bundled(linenoise)
6bfd36
Provides:          bundled(jemalloc) = 4.0.3
6bfd36
Provides:          bundled(lzf)
6bfd36
6bfd36
%global redis_modules_abi 1
6bfd36
%global redis_modules_dir %{_libdir}/%{name}/modules
6bfd36
Provides:          redis(modules_abi)%{?_isa} = %{redis_modules_abi}
6bfd36
6bfd36
%description
6bfd36
Redis is an advanced key-value store. It is often referred to as a data 
6bfd36
structure server since keys can contain strings, hashes, lists, sets and 
6bfd36
sorted sets.
6bfd36
6bfd36
You can run atomic operations on these types, like appending to a string;
6bfd36
incrementing the value in a hash; pushing to a list; computing set 
6bfd36
intersection, union and difference; or getting the member with highest 
6bfd36
ranking in a sorted set.
6bfd36
6bfd36
In order to achieve its outstanding performance, Redis works with an 
6bfd36
in-memory dataset. Depending on your use case, you can persist it either 
6bfd36
by dumping the dataset to disk every once in a while, or by appending 
6bfd36
each command to a log.
6bfd36
6bfd36
Redis also supports trivial-to-setup master-slave replication, with very 
6bfd36
fast non-blocking first synchronization, auto-reconnection on net split 
6bfd36
and so forth.
6bfd36
6bfd36
Other features include Transactions, Pub/Sub, Lua scripting, Keys with a 
6bfd36
limited time-to-live, and configuration settings to make Redis behave like 
6bfd36
a cache.
6bfd36
6bfd36
You can use Redis from most programming languages also.
6bfd36
6bfd36
%package           devel
6bfd36
Summary:           Development header for Redis module development
6bfd36
# Header-Only Library (https://fedoraproject.org/wiki/Packaging:Guidelines)
6bfd36
Provides:          %{name}-static = %{version}-%{release}
6bfd36
6bfd36
%description       devel
6bfd36
Header file required for building loadable Redis modules. Detailed
6bfd36
API documentation is available in the redis-doc package.
6bfd36
6bfd36
%package           doc
6bfd36
Summary:           Documentation for Redis including man pages
6bfd36
License:           CC-BY-SA
6bfd36
BuildArch:         noarch
6bfd36
6bfd36
# http://fedoraproject.org/wiki/Packaging:Conflicts "Splitting Packages"
6bfd36
Conflicts:         redis < 4.0
6bfd36
6bfd36
%description       doc
6bfd36
Manual pages and detailed documentation for many aspects of Redis use,
6bfd36
administration and development.
6bfd36
6bfd36
6bfd36
%prep
6bfd36
%setup -q -b 10
6bfd36
%setup -q
6bfd36
mv ../%{name}-doc-%{doc_commit} doc
6bfd36
%patch0001 -p1
6bfd36
%patch0002 -p1
6bfd36
35eea6
%patch100 -p1 -b .cve-2019-10192
35eea6
%patch101 -p1 -b .cve-2019-10193
499bc1
%patch102 -p1 -b .cve-2021-41099
499bc1
%patch103 -p1 -b .cve-2021-32687
499bc1
%patch104 -p1 -b .cve-2021-32626
499bc1
%patch105 -p1 -b .cve-2021-32627
499bc1
%patch106 -p1 -b .cve-2021-32675
35eea6
6bfd36
mv deps/lua/COPYRIGHT    COPYRIGHT-lua
6bfd36
mv deps/jemalloc/COPYING COPYING-jemalloc
6bfd36
mv deps/hiredis/COPYING  COPYING-hiredis
6bfd36
6bfd36
# Configuration file changes and additions
6bfd36
sed -i -e 's|^logfile .*$|logfile /var/log/redis/redis.log|g' redis.conf
6bfd36
sed -i -e '$ alogfile /var/log/redis/sentinel.log' sentinel.conf
6bfd36
sed -i -e 's|^dir .*$|dir /var/lib/redis|g' redis.conf
6bfd36
6bfd36
# Module API version safety check
6bfd36
api=`sed -n -e 's/#define REDISMODULE_APIVER_[0-9][0-9]* //p' src/redismodule.h`
6bfd36
if test "$api" != "%{redis_modules_abi}"; then
6bfd36
   : Error: Upstream API version is now ${api}, expecting %%{redis_modules_abi}.
6bfd36
   : Update the redis_modules_abi macro, the rpmmacros file, and rebuild.
6bfd36
   exit 1
6bfd36
fi
6bfd36
6bfd36
%global make_flags	DEBUG="" V="echo" LDFLAGS="%{?__global_ldflags}" CFLAGS+="%{optflags} -fPIC"  INSTALL="install -p" PREFIX=%{buildroot}%{_prefix}
6bfd36
6bfd36
%build
6bfd36
make %{?_smp_mflags} %{make_flags} all
6bfd36
6bfd36
%install
6bfd36
make %{make_flags} install
6bfd36
6bfd36
# Filesystem.
6bfd36
install -d %{buildroot}%{_sharedstatedir}/%{name}
6bfd36
install -d %{buildroot}%{_localstatedir}/log/%{name}
6bfd36
install -d %{buildroot}%{_localstatedir}/run/%{name}
6bfd36
install -d %{buildroot}%{redis_modules_dir}
6bfd36
6bfd36
# Install logrotate file.
6bfd36
install -pDm644 %{S:1} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
6bfd36
6bfd36
# Install configuration files.
6bfd36
install -pDm640 %{name}.conf %{buildroot}%{_sysconfdir}/%{name}.conf
6bfd36
install -pDm640 sentinel.conf %{buildroot}%{_sysconfdir}/%{name}-sentinel.conf
6bfd36
6bfd36
# Install systemd unit files.
6bfd36
mkdir -p %{buildroot}%{_unitdir}
6bfd36
install -pm644 %{S:3} %{buildroot}%{_unitdir}
6bfd36
install -pm644 %{S:2} %{buildroot}%{_unitdir}
6bfd36
6bfd36
# Install systemd limit files (requires systemd >= 204)
6bfd36
install -p -D -m 644 %{S:7} %{buildroot}%{_sysconfdir}/systemd/system/%{name}.service.d/limit.conf
6bfd36
install -p -D -m 644 %{S:7} %{buildroot}%{_sysconfdir}/systemd/system/%{name}-sentinel.service.d/limit.conf
6bfd36
6bfd36
# Fix non-standard-executable-perm error.
6bfd36
chmod 755 %{buildroot}%{_bindir}/%{name}-*
6bfd36
6bfd36
# Install redis-shutdown
6bfd36
install -pDm755 %{S:6} %{buildroot}%{_libexecdir}/%{name}-shutdown
6bfd36
6bfd36
# Install redis module header
6bfd36
install -pDm644 src/%{name}module.h %{buildroot}%{_includedir}/%{name}module.h
6bfd36
6bfd36
# Install man pages
6bfd36
man=$(dirname %{buildroot}%{_mandir})
6bfd36
for page in man/man?/*; do
6bfd36
    install -Dpm644 $page $man/$page
6bfd36
done
6bfd36
ln -s redis-server.1 %{buildroot}%{_mandir}/man1/redis-sentinel.1
6bfd36
ln -s redis.conf.5   %{buildroot}%{_mandir}/man5/redis-sentinel.conf.5
6bfd36
6bfd36
# Install documentation and html pages
6bfd36
doc=$(echo %{buildroot}/%{_docdir}/%{name})
6bfd36
for page in 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO; do
6bfd36
    install -Dpm644 $page $doc/$page
6bfd36
done
6bfd36
for page in $(find doc -name \*.md | sed -e 's|.md$||g'); do
6bfd36
    base=$(echo $page | sed -e 's|doc/||g')
6bfd36
    install -Dpm644 $page.md $doc/$base.md
6bfd36
done
6bfd36
6bfd36
# Install rpm macros for redis modules
6bfd36
mkdir -p %{buildroot}%{macrosdir}
6bfd36
install -pDm644 %{S:9} %{buildroot}%{macrosdir}/macros.%{name}
6bfd36
6bfd36
%check
6bfd36
%if 0%{?with_tests}
6bfd36
# https://github.com/antirez/redis/issues/1417 (for "taskset -c 1")
6bfd36
taskset -c 1 make %{make_flags} test
6bfd36
make %{make_flags} test-sentinel
6bfd36
%endif
6bfd36
6bfd36
%pre
6bfd36
getent group %{name} &> /dev/null || \
6bfd36
groupadd -r %{name} &> /dev/null
6bfd36
getent passwd %{name} &> /dev/null || \
6bfd36
useradd -r -g %{name} -d %{_sharedstatedir}/%{name} -s /sbin/nologin \
6bfd36
-c 'Redis Database Server' %{name} &> /dev/null
6bfd36
exit 0
6bfd36
6bfd36
%post
6bfd36
%systemd_post %{name}.service
6bfd36
%systemd_post %{name}-sentinel.service
6bfd36
6bfd36
%preun
6bfd36
%systemd_preun %{name}.service
6bfd36
%systemd_preun %{name}-sentinel.service
6bfd36
6bfd36
%postun
6bfd36
%systemd_postun_with_restart %{name}.service
6bfd36
%systemd_postun_with_restart %{name}-sentinel.service
6bfd36
6bfd36
%files
6bfd36
%{!?_licensedir:%global license %%doc}
6bfd36
%license COPYING
6bfd36
%license COPYRIGHT-lua
6bfd36
%license COPYING-jemalloc
6bfd36
%license COPYING-hiredis
6bfd36
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
6bfd36
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{name}.conf
6bfd36
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{name}-sentinel.conf
6bfd36
%dir %attr(0750, redis, redis) %{_libdir}/%{name}
6bfd36
%dir %attr(0750, redis, redis) %{redis_modules_dir}
6bfd36
%dir %attr(0750, redis, redis) %{_sharedstatedir}/%{name}
6bfd36
%dir %attr(0750, redis, redis) %{_localstatedir}/log/%{name}
6bfd36
%exclude %{macrosdir}
6bfd36
%exclude %{_includedir}
6bfd36
%exclude %{_docdir}/%{name}/*
6bfd36
%{_bindir}/%{name}-*
6bfd36
%{_libexecdir}/%{name}-*
6bfd36
%{_mandir}/man1/%{name}*
6bfd36
%{_mandir}/man5/%{name}*
6bfd36
%{_unitdir}/%{name}.service
6bfd36
%{_unitdir}/%{name}-sentinel.service
6bfd36
%dir %{_sysconfdir}/systemd/system/%{name}.service.d
6bfd36
%config(noreplace) %{_sysconfdir}/systemd/system/%{name}.service.d/limit.conf
6bfd36
%dir %{_sysconfdir}/systemd/system/%{name}-sentinel.service.d
6bfd36
%config(noreplace) %{_sysconfdir}/systemd/system/%{name}-sentinel.service.d/limit.conf
6bfd36
%dir %attr(0755, redis, redis) %ghost %{_localstatedir}/run/%{name}
6bfd36
6bfd36
%files devel
6bfd36
%license COPYING
6bfd36
%{_includedir}/%{name}module.h
6bfd36
%{macrosdir}/*
6bfd36
6bfd36
%files doc
6bfd36
%docdir %{_docdir}/%{name}
6bfd36
%{_docdir}/%{name}
6bfd36
6bfd36
6bfd36
%changelog
499bc1
* Mon Oct 11 2021 Remi Collet <rcollet@redhat.com> - 5.0.3-5
499bc1
- fix denial of service via Redis Standard Protocol (RESP) request
499bc1
  CVE-2021-32675
499bc1
499bc1
* Thu Oct  7 2021 Remi Collet <rcollet@redhat.com> - 5.0.3-4
499bc1
- fix lua scripts can overflow the heap-based Lua stack
499bc1
  CVE-2021-32626
499bc1
- fix integer overflow issue with Streams
499bc1
  CVE-2021-32627
499bc1
- fix integer overflow bug in the ziplist data structure
499bc1
  CVE-2021-32628
499bc1
- fix integer overflow issue with intsets
499bc1
  CVE-2021-32687
499bc1
- fix integer overflow issue with strings
499bc1
  CVE-2021-41099
499bc1
35eea6
* Thu Jul 11 2019 Remi Collet <rcollet@redhat.com> - 5.0.3-2
35eea6
- fix Heap buffer overflow in HyperLogLog triggered by malicious client
35eea6
  CVE-2019-10192
35eea6
- fix Stack buffer overflow in HyperLogLog triggered by malicious client
35eea6
  CVE-2019-10193
35eea6
6bfd36
* Thu Dec 13 2018 Remi Collet <rcollet@redhat.com> - 5.0.3-1
6bfd36
- update to 5.0.3
6bfd36
6bfd36
* Mon Jun 25 2018 Remi Collet <rcollet@redhat.com> - 4.0.10-2
6bfd36
- drop build dependency on pandoc
6bfd36
- drop dependency on jemalloc #1591762
6bfd36
- fix License (BSD and MIT)
6bfd36
- add bundled libraries licences
6bfd36
- cleanup conditions from spec file
6bfd36
6bfd36
* Thu Jun 14 2018 Nathan Scott <nathans@redhat.com> - 4.0.10-1
6bfd36
- Upstream 4.0.10 release.
6bfd36
6bfd36
* Mon May 21 2018 Joe Orton <jorton@redhat.com> - 4.0.9-1.2
6bfd36
- rebuild (#1571197)
6bfd36
6bfd36
* Tue Mar 27 2018 Nathan Scott <nathans@redhat.com> - 4.0.9-1
6bfd36
- Upstream 4.0.9 release.
6bfd36
6bfd36
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0.8-2
6bfd36
- Escape macros in %%changelog
6bfd36
6bfd36
* Wed Feb  7 2018 Nathan Scott <nathans@redhat.com> - 4.0.8-1
6bfd36
- Upstream 4.0.8 release.
6bfd36
6bfd36
* Wed Jan 31 2018 Nathan Scott <nathans@redhat.com> - 4.0.7-1
6bfd36
- Upstream 4.0.7 release.
6bfd36
6bfd36
* Thu Dec  7 2017 Nathan Scott <nathans@redhat.com> - 4.0.6-1
6bfd36
- Upstream 4.0.6 release.
6bfd36
6bfd36
* Fri Dec  1 2017 Remi Collet <remi@remirepo.net> - 4.0.5-1
6bfd36
- Redis 4.0.5 - Released Thu Dec 1 16:03:32 CET 2017
6bfd36
- Upgrade urgency CRITICAL: Redis 4.0.4 fix for PSYNC2 was broken,
6bfd36
  causing the slave to crash when receiving an RDB file from the
6bfd36
  master that contained a duplicated Lua script.
6bfd36
6bfd36
* Fri Dec 01 2017 Nathan Scott <nathans@redhat.com> - 4.0.4-1
6bfd36
- Upstream 4.0.4 release.
6bfd36
- Update to current upstream redis-doc also.
6bfd36
- Fix man page issues (RHBZ #1513594 and RHBZ #1515417).
6bfd36
6bfd36
* Thu Nov 30 2017 Remi Collet <remi@remirepo.net> - 4.0.3-1
6bfd36
- Redis 4.0.3
6bfd36
- fix ownership of /usr/share/doc/redis
6bfd36
- use make_flags for test to avoid rebuild and failure
6bfd36
- fix rpm macro location on EL-6
6bfd36
- add /var/run/redis on EL-6
6bfd36
- add spec file license header
6bfd36
- drop duplicated documentation from main package
6bfd36
- keep man in main page
6bfd36
6bfd36
* Fri Nov 17 2017 Nathan Scott <nathans@redhat.com> - 4.0.2-2
6bfd36
- Install the base modules directories, owned by the main package.
6bfd36
6bfd36
* Tue Oct 31 2017 Nathan Scott <nathans@redhat.com> - 4.0.2-1
6bfd36
- Upstream 4.0.2 release.  (RHBZ #1389592)
6bfd36
- Add redis-devel for loadable module development.
6bfd36
- Add redis-doc for man pages and detailed documentation.
6bfd36
- Provide redis-check-aof as a symlink to redis-server also now.
6bfd36
6bfd36
* Tue Sep 26 2017 Nathan Scott <nathans@redhat.com> - 3.2.11-1
6bfd36
- Upstream 3.2.11 bug-fix-only release
6bfd36
- Switch to using Type=notify for Redis systemd services (RHBZ #1172841)
6bfd36
- Add Provides:bundled hiredis, linenoise, lua-libs clauses (RHBZ #788500)
6bfd36
6bfd36
* Mon Aug 14 2017 Nathan Scott <nathans@redhat.com> - 3.2.10-2
6bfd36
- Add redis-trib based on patch from Sebastian Saletnik.  (RHBZ #1215654)
6bfd36
6bfd36
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.9-3
6bfd36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
6bfd36
6bfd36
* Mon Jul 31 2017 Nathan Scott <nathans@redhat.com> - 3.2.10-1
6bfd36
- Upstream 3.2.10 release
6bfd36
- Ensure both the redis and redis-sentinel service files set correct perms
6bfd36
- Dropped systemd tmpfiles source, handled directly in systemd service files
6bfd36
6bfd36
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.9-2
6bfd36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6bfd36
6bfd36
* Mon May 29 2017 Nathan Scott <nathans@redhat.com> - 3.2.9-1
6bfd36
- Upstream 3.2.9
6bfd36
- Add RuntimeDirectory=redis to systemd unit file (RHBZ #1454700)
6bfd36
- Mark rundir as %%ghost since it may disappear (tmpfs - #1454700)
6bfd36
- Fix a shutdown failure with Unix domain sockets (RHBZ #1444988)
6bfd36
6bfd36
* Mon Feb 20 2017 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.2.8-1
6bfd36
- Upstream 3.2.8
6bfd36
- bugfix for #3796 (MIGRATE could cause server crash  after socket error)
6bfd36
6bfd36
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.7-2
6bfd36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
6bfd36
6bfd36
* Sat Feb  4 2017 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.2.7-1
6bfd36
- Upstream 3.2.7 (important security fix)
6bfd36
6bfd36
* Sat Nov 05 2016 Alan Pevec <apevec AT redhat.com> - 3.2.4-2
6bfd36
- Install tmpfiles and /run/redis for legacy configurations
6bfd36
6bfd36
* Mon Sep 26 2016 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.2.4-1
6bfd36
- Upstream 3.2.4
6bfd36
- Fix buffer overlow (TALOS-2016-0206)
6bfd36
6bfd36
* Wed Sep 14 2016 Remi Collet <remi@fedoraproject.org> - 3.2.3-2
6bfd36
- add missing man pages #1374577
6bfd36
  using patch from https://github.com/antirez/redis/pull/3491
6bfd36
- data and configuration should not be publicly readable #1374700
6bfd36
- remove /var/run/redis with systemd #1374728
6bfd36
- provide redis-check-rdb as a symlink to redis-server #1374736
6bfd36
  using patch from https://github.com/antirez/redis/pull/3494
6bfd36
- move redis-shutdown to libexec
6bfd36
6bfd36
* Thu Aug  4 2016 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.2.3-1
6bfd36
- Upstream 3.2.3
6bfd36
- Security fix for CVE-2013-7458 (redis-cli history world readable)
6bfd36
- RHBZ#1363670 RHBZ#1363671
6bfd36
6bfd36
* Mon Feb  8 2016 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.6-3
6bfd36
- Fix redis-shutdown to handle password-protected instances shutdown
6bfd36
6bfd36
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-2
6bfd36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6bfd36
6bfd36
* Sat Dec 19 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.6-1
6bfd36
- Upstream 3.0.6 (RHBZ#1272281)
6bfd36
6bfd36
* Fri Oct 16 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.5-1
6bfd36
- Upstream 3.0.5
6bfd36
- Fix slave/master replication hanging forever in certain case
6bfd36
6bfd36
* Mon Sep 07 2015 Christopher Meng <rpm@cicku.me> - 3.0.4-1
6bfd36
- Update to 3.0.4
6bfd36
6bfd36
* Sun Aug 30 2015 Christopher Meng <rpm@cicku.me> - 3.0.3-2
6bfd36
- Rebuilt for jemalloc 4.0.0
6bfd36
6bfd36
* Tue Jul 21 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.3-1
6bfd36
- Upstream 3.0.3
6bfd36
6bfd36
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.2-2
6bfd36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
6bfd36
6bfd36
* Thu Jun 04 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.2-1
6bfd36
- Upstream 3.0.2 (RHBZ #1228245)
6bfd36
- Fix Lua sandbox escape and arbitrary code execution (RHBZ #1228331)
6bfd36
6bfd36
* Sat May 09 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.1-1
6bfd36
- Upstream 3.0.1 (RHBZ #1208322)
6bfd36
6bfd36
* Tue Apr 14 2015 Remi Collet <remi@fedoraproject.org> - 3.0.0-2
6bfd36
- rotate /var/log/redis/sentinel.log
6bfd36
6bfd36
* Thu Apr  2 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.0-1
6bfd36
- Upstream 3.0.0 (RHBZ #1208322)
6bfd36
6bfd36
* Thu Mar 26 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.19-2
6bfd36
- Fix redis-shutdown on multiple NIC setup (RHBZ #1201237)
6bfd36
6bfd36
* Fri Feb 27 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.19-1
6bfd36
- Upstream 2.8.19 (RHBZ #1175232)
6bfd36
- Fix permissions for tmpfiles (RHBZ #1182913)
6bfd36
- Add limits config files
6bfd36
- Spec cleanups
6bfd36
6bfd36
* Fri Dec 05 2014 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.18-1
6bfd36
- Upstream 2.8.18
6bfd36
- Rebased patches
6bfd36
6bfd36
* Sat Sep 20 2014 Remi Collet <remi@fedoraproject.org> - 2.8.17-1
6bfd36
- Upstream 2.8.17
6bfd36
- fix redis-sentinel service unit file for systemd
6bfd36
- fix redis-shutdown for sentinel
6bfd36
- also use redis-shutdown in init scripts
6bfd36
6bfd36
* Wed Sep 17 2014 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.15-2
6bfd36
- Minor fix to redis-shutdown (from Remi Collet)
6bfd36
6bfd36
* Sat Sep 13 2014 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.15-1
6bfd36
- Upstream 2.8.15 (critical bugfix for sentinel)
6bfd36
- Fix to sentinel systemd service and configuration (thanks Remi)
6bfd36
- Refresh patch management
6bfd36
6bfd36
* Thu Sep 11 2014 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.14-2
6bfd36
- Cleanup spec
6bfd36
- Fix shutdown for redis-{server,sentinel}
6bfd36
- Backport fixes from Remi Collet repository (ie: sentinel working)
6bfd36
6bfd36
* Thu Sep 11 2014 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.14-1
6bfd36
- Upstream 2.8.14 (RHBZ #1136287)
6bfd36
- Bugfix for lua scripting users (server crash)
6bfd36
- Refresh patches
6bfd36
- backport spec from EPEL7 (thanks Warren)
6bfd36
6bfd36
* Wed Jul 16 2014 Christopher Meng <rpm@cicku.me> - 2.8.13-1
6bfd36
- Update to 2.8.13
6bfd36
6bfd36
* Tue Jun 24 2014 Christopher Meng <rpm@cicku.me> - 2.8.12-1
6bfd36
- Update to 2.8.12
6bfd36
6bfd36
* Wed Jun 18 2014 Christopher Meng <rpm@cicku.me> - 2.8.11-1
6bfd36
- Update to 2.8.11
6bfd36
6bfd36
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.16-2
6bfd36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
6bfd36
6bfd36
* Fri Sep 06 2013 Fabian Deutsch <fabian.deutsch@gmx.de> - 2.6.16-1
6bfd36
- Update to 2.6.16
6bfd36
- Fix rhbz#973151
6bfd36
- Fix rhbz#656683
6bfd36
- Fix rhbz#977357 (Jan Vcelak <jvcelak@fedoraproject.org>)
6bfd36
6bfd36
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.13-5
6bfd36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
6bfd36
6bfd36
* Tue Jul 23 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2.6.13-4
6bfd36
- ARM has gperftools
6bfd36
6bfd36
* Wed Jun 19 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 2.6.13-3
6bfd36
- Modify jemalloc patch for s390 compatibility (Thanks sharkcz)
6bfd36
6bfd36
* Fri Jun 07 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 2.6.13-2
6bfd36
- Unbundle jemalloc
6bfd36
6bfd36
* Fri Jun 07 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 2.6.13-1
6bfd36
- Add compile PIE flag (rhbz#955459)
6bfd36
- Update to redis 2.6.13 (rhbz#820919)
6bfd36
6bfd36
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.7-2
6bfd36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
6bfd36
6bfd36
* Thu Dec 27 2012 Silas Sewell <silas@sewell.org> - 2.6.7-1
6bfd36
- Update to redis 2.6.7
6bfd36
6bfd36
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.15-3
6bfd36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
6bfd36
6bfd36
* Sun Jul 08 2012 Silas Sewell <silas@sewell.org> - 2.4.15-2
6bfd36
- Remove TODO from docs
6bfd36
6bfd36
* Sun Jul 08 2012 Silas Sewell <silas@sewell.org> - 2.4.15-1
6bfd36
- Update to redis 2.4.15
6bfd36
6bfd36
* Sat May 19 2012 Silas Sewell <silas@sewell.org> - 2.4.13-1
6bfd36
- Update to redis 2.4.13
6bfd36
6bfd36
* Sat Mar 31 2012 Silas Sewell <silas@sewell.org> - 2.4.10-1
6bfd36
- Update to redis 2.4.10
6bfd36
6bfd36
* Fri Feb 24 2012 Silas Sewell <silas@sewell.org> - 2.4.8-1
6bfd36
- Update to redis 2.4.8
6bfd36
6bfd36
* Sat Feb 04 2012 Silas Sewell <silas@sewell.org> - 2.4.7-1
6bfd36
- Update to redis 2.4.7
6bfd36
6bfd36
* Wed Feb 01 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-4
6bfd36
- Fixed a typo in the spec
6bfd36
6bfd36
* Tue Jan 31 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-3
6bfd36
- Fix .service file, to match config (Type=simple).
6bfd36
6bfd36
* Tue Jan 31 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-2
6bfd36
- Fix .service file, credits go to Timon.
6bfd36
6bfd36
* Thu Jan 12 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-1
6bfd36
- Update to 2.4.6
6bfd36
- systemd unit file added
6bfd36
- Compiler flags changed to compile 2.4.6
6bfd36
- Remove doc/ and Changelog
6bfd36
6bfd36
* Sun Jul 24 2011 Silas Sewell <silas@sewell.org> - 2.2.12-1
6bfd36
- Update to redis 2.2.12
6bfd36
6bfd36
* Fri May 06 2011 Dan HorĂ¡k <dan[at]danny.cz> - 2.2.5-2
6bfd36
- google-perftools exists only on selected architectures
6bfd36
6bfd36
* Sat Apr 23 2011 Silas Sewell <silas@sewell.ch> - 2.2.5-1
6bfd36
- Update to redis 2.2.5
6bfd36
6bfd36
* Sat Mar 26 2011 Silas Sewell <silas@sewell.ch> - 2.2.2-1
6bfd36
- Update to redis 2.2.2
6bfd36
6bfd36
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.4-2
6bfd36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
6bfd36
6bfd36
* Sun Dec 19 2010 Silas Sewell <silas@sewell.ch> - 2.0.4-1
6bfd36
- Update to redis 2.0.4
6bfd36
6bfd36
* Tue Oct 19 2010 Silas Sewell <silas@sewell.ch> - 2.0.3-1
6bfd36
- Update to redis 2.0.3
6bfd36
6bfd36
* Fri Oct 08 2010 Silas Sewell <silas@sewell.ch> - 2.0.2-1
6bfd36
- Update to redis 2.0.2
6bfd36
- Disable checks section for el5
6bfd36
6bfd36
* Sat Sep 11 2010 Silas Sewell <silas@sewell.ch> - 2.0.1-1
6bfd36
- Update to redis 2.0.1
6bfd36
6bfd36
* Sat Sep 04 2010 Silas Sewell <silas@sewell.ch> - 2.0.0-1
6bfd36
- Update to redis 2.0.0
6bfd36
6bfd36
* Thu Sep 02 2010 Silas Sewell <silas@sewell.ch> - 1.2.6-3
6bfd36
- Add Fedora build flags
6bfd36
- Send all scriplet output to /dev/null
6bfd36
- Remove debugging flags
6bfd36
- Add redis.conf check to init script
6bfd36
6bfd36
* Mon Aug 16 2010 Silas Sewell <silas@sewell.ch> - 1.2.6-2
6bfd36
- Don't compress man pages
6bfd36
- Use patch to fix redis.conf
6bfd36
6bfd36
* Tue Jul 06 2010 Silas Sewell <silas@sewell.ch> - 1.2.6-1
6bfd36
- Initial package