Blame SPECS/redis.spec

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