summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--redis-conf.patch60
-rw-r--r--redis.spec33
3 files changed, 88 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 1e65467..91b0fd5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
SRCDIR := $(shell pwd)
NAME := $(shell basename $(SRCDIR))
-include ../common/Makefile
+include ../../common/Makefile
diff --git a/redis-conf.patch b/redis-conf.patch
new file mode 100644
index 0000000..eb33e32
--- /dev/null
+++ b/redis-conf.patch
@@ -0,0 +1,60 @@
+diff -up ./redis.conf.rpm ./redis.conf
+--- ./redis.conf.rpm 2025-07-10 11:31:26.588797534 +0200
++++ ./redis.conf 2025-07-10 11:31:26.590823030 +0200
+@@ -152,7 +152,7 @@ tcp-backlog 511
+ # incoming connections. There is no default, so Redis will not listen
+ # on a unix socket when not specified.
+ #
+-# unixsocket /run/redis.sock
++unixsocket /run/redis/redis.sock
+ # unixsocketperm 700
+
+ # Close the connection after a client is idle for N seconds (0 to disable)
+@@ -338,7 +338,7 @@ daemonize no
+ #
+ # Note that on modern Linux systems "/run/redis.pid" is more conforming
+ # and should be used instead.
+-pidfile /var/run/redis_6379.pid
++pidfile /run/redis/redis.pid
+
+ # Specify the server verbosity level.
+ # This can be one of:
+@@ -352,7 +352,7 @@ loglevel notice
+ # Specify the log file name. Also the empty string can be used to force
+ # Redis to log on the standard output. Note that if you use standard
+ # output for logging but daemonize, logs will be sent to /dev/null
+-logfile ""
++logfile /var/log/redis/redis.log
+
+ # To enable logging to the system logger, just set 'syslog-enabled' to yes,
+ # and optionally update the other syslog parameters to suit your needs.
+@@ -507,7 +507,7 @@ rdb-del-sync-files no
+ # The Append Only File will also be created inside this directory.
+ #
+ # Note that you must specify a directory here, not a file name.
+-dir ./
++dir /var/lib/redis
+
+ ################################# REPLICATION #################################
+
+diff -up ./sentinel.conf.rpm ./sentinel.conf
+--- ./sentinel.conf.rpm 2025-07-10 11:31:26.589683845 +0200
++++ ./sentinel.conf 2025-07-10 11:31:26.592442565 +0200
+@@ -17,7 +17,7 @@ daemonize no
+ # When running daemonized, Redis Sentinel writes a pid file in
+ # /var/run/redis-sentinel.pid by default. You can specify a custom pid file
+ # location here.
+-pidfile /var/run/redis-sentinel.pid
++pidfile /run/redis/sentinel.pid
+
+ # Specify the server verbosity level.
+ # This can be one of:
+@@ -31,7 +31,7 @@ loglevel notice
+ # Specify the log file name. Also the empty string can be used to force
+ # Sentinel to log on the standard output. Note that if you use standard
+ # output for logging but daemonize, logs will be sent to /dev/null
+-logfile ""
++logfile /var/log/redis/sentinel.log
+
+ # To enable logging to the system logger, just set 'syslog-enabled' to yes,
+ # and optionally update the other syslog parameters to suit your needs.
diff --git a/redis.spec b/redis.spec
index 8a3253a..3f0ef4d 100644
--- a/redis.spec
+++ b/redis.spec
@@ -24,7 +24,7 @@
# Tests fail in mock, not in local build.
%bcond_with tests
-%global upstream_ver 7.2.8
+%global upstream_ver 7.2.12
# Commit IDs for the (unversioned) redis-doc repository
# https://fedoraproject.org/wiki/Packaging:SourceURL "Commit Revision"
@@ -56,6 +56,8 @@ Source7: %{name}-limit-systemd
Source9: macros.%{name}
Source10: https://github.com/%{gh_owner}/%{gh_project}-doc/archive/%{doc_commit}/%{name}-doc-%{short_doc_commit}.tar.gz
+# Fix default paths in configuration files for RPM layout
+Patch0: %{name}-conf.patch
# To refresh patches:
# tar xf redis-xxx.tar.gz && cd redis-xxx && git init && git add . && git commit -m "%%{version} baseline"
# git am %%{patches}
@@ -170,6 +172,7 @@ and removal, status checks, resharding, rebalancing, and other operations.
%prep
%setup -q -n %{name}-%{upstream_ver} -b 10
+%patch -P0 -p1
mv ../%{name}-doc-%{doc_commit} doc
%patch -P0001 -p1
@@ -188,11 +191,6 @@ mv deps/hdr_histogram/LICENSE.txt LICENSE-hdrhistogram
mv deps/hdr_histogram/COPYING.txt COPYING-hdrhistogram
mv deps/fpconv/LICENSE.txt LICENSE-fpconv
-# Configuration file changes
-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
-
# See https://bugzilla.redhat.com/2240293
# See https://src.fedoraproject.org/rpms/jemalloc/blob/rawhide/f/jemalloc.spec#_34
%ifarch %ix86 %arm x86_64 s390x
@@ -409,6 +407,29 @@ fi
%changelog
+* Mon Nov 3 2025 Remi Collet <remi@remirepo.net> - 7.2.12-1
+- Redis 7.2.12 Released Sun 2 Nov 2025 10:00:00 IST
+- Update urgency: HIGH:
+ There is a critical bug that may affect a subset of users.
+
+* Fri Oct 3 2025 Remi Collet <remi@remirepo.net> - 7.2.11-1
+- Redis 7.2.11 Released Fri 3 Oct 2025 10:00:00 IST
+- Update urgency: SECURITY:
+ CVE-2025-49844 CVE-2025-46817 CVE-2025-46818 CVE-2025-46819
+
+* Thu Jul 10 2025 Remi Collet <remi@remirepo.net> - 7.2.10-2
+- use patch for config instead of sed
+- fix pidfile path in /run/redis
+- set unixsocket
+
+* Mon Jul 7 2025 Remi Collet <remi@remirepo.net> - 7.2.10-1
+- Redis 7.2.10 Released Sun 6 Jul 2025 12:00:00 IST
+- Update urgency: SECURITY: CVE-2025-32023 and CVE-2025-48367
+
+* Wed May 28 2025 Remi Collet <remi@remirepo.net> - 7.2.9-1
+- Redis 7.2.9 Released Tue 27 May 2025 12:00:00 IST
+- Update urgency: SECURITY: CVE-2025-27151
+
* Thu Apr 24 2025 Remi Collet <remi@remirepo.net> - 7.2.8-1
- Redis 7.2.8 Released Wed 23 Apr 2025 12:00:00 IST
- Update urgency: `SECURITY`: CVE-2025-21605