diff options
| author | Remi Collet <remi@remirepo.net> | 2020-09-01 09:12:24 +0200 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2020-09-01 09:12:24 +0200 | 
| commit | d1db0e6ce97618d42d53385502ed21eca423fc07 (patch) | |
| tree | d9d36c00809eb06d4b25d9c7daa1af4186074890 | |
| parent | 07293165a4f2d7cb15c86ed9a6055d2e12a29fbd (diff) | |
Redis 6.0.7 - Released Fri Aug 28 11:05:09 IDT 2020
Upgrade urgency MODERATE: several bugs with moderate impact are fixed.
drop patch merged upstream
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | 0003-fix-deprecated-tail-syntax.patch | 22 | ||||
| -rw-r--r-- | redis.spec | 12 | 
3 files changed, 9 insertions, 27 deletions
@@ -1,5 +1,7 @@ +clog  package-*.xml  *.tgz +*.tar.bz2  *.tar.gz  *.tar.xz  *.tar.xz.asc diff --git a/0003-fix-deprecated-tail-syntax.patch b/0003-fix-deprecated-tail-syntax.patch deleted file mode 100644 index 8f50930..0000000 --- a/0003-fix-deprecated-tail-syntax.patch +++ /dev/null @@ -1,22 +0,0 @@ -From b5fc5d0a1bc4d959995688c8b363daa859c44036 Mon Sep 17 00:00:00 2001 -From: Remi Collet <remi@remirepo.net> -Date: Tue, 21 Jul 2020 07:33:12 +0200 -Subject: [PATCH] Fix deprecated syntax - ---- - tests/support/util.tcl | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/support/util.tcl b/tests/support/util.tcl -index fce3ffd1858..69ea675dca5 100644 ---- a/tests/support/util.tcl -+++ b/tests/support/util.tcl -@@ -119,7 +119,7 @@ proc wait_for_log_message {srv_idx pattern from_line maxtries delay} { -     set retry $maxtries -     set stdout [srv $srv_idx stdout] -     while {$retry} { --        set result [exec tail +$from_line < $stdout] -+        set result [exec tail -n +$from_line < $stdout] -         set result [split $result "\n"] -         foreach line $result { -             if {[string match $pattern $line]} { @@ -34,7 +34,7 @@  %bcond_with    tests  # Pre-version are only available in github -%global upstream_ver 6.0.6 +%global upstream_ver 6.0.7  #global upstream_pre RC4  %global gh_commit    f092dd3227cc74978853e379c0a7731bdaa324af  %global gh_short     %(c=%{gh_commit}; echo ${c:0:7}) @@ -44,7 +44,7 @@  # Commit IDs for the (unversioned) redis-doc repository  # https://fedoraproject.org/wiki/Packaging:SourceURL "Commit Revision"  # https://github.com/antirez/redis-doc/commits/master -%global doc_commit 02423fd2f5603ae300654613a51eaee13bc5cb80 +%global doc_commit 2c335a8226789afae2b5a2ebbd689933b0a5e01a  %global short_doc_commit %(c=%{doc_commit}; echo ${c:0:7})  # %%{_rpmmacrodir} not usable on EL-6 - EL-7 (without epel-rpms-macros) @@ -83,8 +83,6 @@ Source10:          https://github.com/antirez/%{name}-doc/archive/%{doc_commit}/  Patch0001:         0001-1st-man-pageis-for-redis-cli-redis-benchmark-redis-c.patch  # https://github.com/antirez/redis/pull/3494 - symlink  Patch0002:         0002-install-redis-check-rdb-as-a-symlink-instead-of-dupl.patch -# https://github.com/redis/redis/pull/7543 - tail syntax -Patch0003:         0003-fix-deprecated-tail-syntax.patch  BuildRequires:     gcc  %if 0%{?rhel} == 6 @@ -205,7 +203,6 @@ and removal, status checks, resharding, rebalancing, and other operations.  mv ../%{name}-doc-%{doc_commit} doc  %patch0001 -p1  %patch0002 -p1 -%patch0003 -p1  %if %{with jemalloc}  rm -frv deps/jemalloc @@ -452,6 +449,11 @@ fi  %changelog +* Tue Sep  1 2020 Remi Collet <remi@remirepo.net> - 6.0.7-1 +- Redis 6.0.7 - Released Fri Aug 28 11:05:09 IDT 2020 +- Upgrade urgency MODERATE: several bugs with moderate impact are fixed. +- drop patch merged upstream +  * Tue Jul 21 2020 Remi Collet <remi@remirepo.net> - 6.0.6-1  - Redis 6.0.6 - Released Mon Jul 20 09:31:30 IDT 2020  - Upgrade urgency MODERATE: several bugs with moderate impact are fixed here.  | 
