- build require procps to get "ps" which is needed for the cleanup
of the redis processes launched by the testsuite. - update to 2.6.14 UPGRADE URGENCY: HIGH because of the following two issues: * Lua scripting + Replication + AOF in slaves problem (see Issue #1164). * AOF + expires possible race condition (see Issue #1079). * [FIX] AOF bug: expire could be removed from key on AOF rewrite. * [FIX] Allow writes from scripts called by AOF loading in read-only slaves. * [FIX] Sentinel: parse new verison of INFO replication output correctly. * [NEW] Reset masterauth if an empty string is configured. For the changes from 2.6.10-2.6.13 see /usr/share/doc/packages/redis/00-RELEASENOTES - refreshed patches: - redis-conf.patch: - redis-enable-bactrace-on-x86-and-ia64-only.patch: just to get rid of fuzz - skip-aof-test.patch: can not comment in the array like that. rather remove the line. OBS-URL: https://build.opensuse.org/package/show/server:database/redis?expand=0&rev=44
This commit is contained in:
parent
db3bc35d3c
commit
f124db3740
3
redis-2.6.14.tar.gz
Normal file
3
redis-2.6.14.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fdf61c693e5c4908b4bb44c428d4a2b7568f05566c144c58fdf19c5cb12a9caf
|
||||||
|
size 995036
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4d967eff2038aebea33875d17e85ed67179df6505df68529a622f7836d1c7489
|
|
||||||
size 989119
|
|
@ -25,7 +25,7 @@ Index: redis.conf
|
|||||||
|
|
||||||
# Specify the path for the unix socket that will be used to listen for
|
# Specify the path for the unix socket that will be used to listen for
|
||||||
# incoming connections. There is no default, so Redis will not listen
|
# incoming connections. There is no default, so Redis will not listen
|
||||||
@@ -50,7 +50,7 @@ loglevel notice
|
@@ -66,7 +66,7 @@ loglevel notice
|
||||||
# Specify the log file name. Also 'stdout' can be used to force
|
# Specify the log file name. Also 'stdout' can be used to force
|
||||||
# Redis to log on the standard output. Note that if you use standard
|
# 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
|
# output for logging but daemonize, logs will be sent to /dev/null
|
||||||
@ -34,8 +34,8 @@ Index: redis.conf
|
|||||||
|
|
||||||
# To enable logging to the system logger, just set 'syslog-enabled' to yes,
|
# To enable logging to the system logger, just set 'syslog-enabled' to yes,
|
||||||
# and optionally update the other syslog parameters to suit your needs.
|
# and optionally update the other syslog parameters to suit your needs.
|
||||||
@@ -134,7 +134,7 @@ dbfilename dump.rdb
|
@@ -150,7 +150,7 @@ dbfilename dump.rdb
|
||||||
# Also the Append Only File will be created inside this directory.
|
# The Append Only File will also be created inside this directory.
|
||||||
#
|
#
|
||||||
# Note that you must specify a directory here, not a file name.
|
# Note that you must specify a directory here, not a file name.
|
||||||
-dir ./
|
-dir ./
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
Index: redis-2.6.9/src/config.h
|
Index: src/config.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- redis-2.6.9.orig/src/config.h
|
--- src/config.h.orig
|
||||||
+++ redis-2.6.9/src/config.h
|
+++ src/config.h
|
||||||
@@ -54,9 +54,11 @@
|
@@ -54,9 +54,11 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Test for backtrace() */
|
/* Test for backtrace() */
|
||||||
+#if defined(__i386__) || defined(__x86_64__) || defined(__ia64__)
|
+#if defined(__i386__) || defined(__x86_64__) || defined(__ia64__)
|
||||||
#if defined(__APPLE__) || defined(__linux__) || defined(__sun)
|
#if defined(__APPLE__) || defined(__linux__)
|
||||||
#define HAVE_BACKTRACE 1
|
#define HAVE_BACKTRACE 1
|
||||||
#endif
|
#endif
|
||||||
+#endif
|
+#endif
|
||||||
|
@ -1,3 +1,32 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 7 14:37:30 UTC 2013 - mrueckert@suse.de
|
||||||
|
|
||||||
|
- build require procps to get "ps" which is needed for the cleanup
|
||||||
|
of the redis processes launched by the testsuite.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 7 14:31:17 UTC 2013 - mrueckert@suse.de
|
||||||
|
|
||||||
|
- update to 2.6.14
|
||||||
|
UPGRADE URGENCY: HIGH because of the following two issues:
|
||||||
|
* Lua scripting + Replication + AOF in slaves problem (see Issue #1164).
|
||||||
|
* AOF + expires possible race condition (see Issue #1079).
|
||||||
|
|
||||||
|
* [FIX] AOF bug: expire could be removed from key on AOF rewrite.
|
||||||
|
* [FIX] Allow writes from scripts called by AOF loading in read-only slaves.
|
||||||
|
* [FIX] Sentinel: parse new verison of INFO replication output correctly.
|
||||||
|
* [NEW] Reset masterauth if an empty string is configured.
|
||||||
|
|
||||||
|
For the changes from 2.6.10-2.6.13 see
|
||||||
|
/usr/share/doc/packages/redis/00-RELEASENOTES
|
||||||
|
- refreshed patches:
|
||||||
|
- redis-conf.patch:
|
||||||
|
- redis-enable-bactrace-on-x86-and-ia64-only.patch:
|
||||||
|
just to get rid of fuzz
|
||||||
|
- skip-aof-test.patch:
|
||||||
|
can not comment in the array like that. rather remove the
|
||||||
|
line.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jul 4 16:10:47 UTC 2013 - dvaleev@suse.com
|
Thu Jul 4 16:10:47 UTC 2013 - dvaleev@suse.com
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
%define _conf_dir %{_sysconfdir}/%{name}
|
%define _conf_dir %{_sysconfdir}/%{name}
|
||||||
|
|
||||||
Name: redis
|
Name: redis
|
||||||
Version: 2.6.9
|
Version: 2.6.14
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Persistent key-value database
|
Summary: Persistent key-value database
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -39,6 +39,7 @@ Patch2: skip-aof-test.patch
|
|||||||
# for make test
|
# for make test
|
||||||
Patch3: redis-enable-bactrace-on-x86-and-ia64-only.patch
|
Patch3: redis-enable-bactrace-on-x86-and-ia64-only.patch
|
||||||
BuildRequires: tcl
|
BuildRequires: tcl
|
||||||
|
BuildRequires: procps
|
||||||
Requires: logrotate
|
Requires: logrotate
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
@ -55,7 +56,7 @@ different kind of sorting abilities.
|
|||||||
%patch0
|
%patch0
|
||||||
%patch1
|
%patch1
|
||||||
%patch2
|
%patch2
|
||||||
%patch3 -p1
|
%patch3
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?_smp_mflags} CFLAGS="%{optflags}" V=1
|
make %{?_smp_mflags} CFLAGS="%{optflags}" V=1
|
||||||
@ -91,6 +92,7 @@ The test suite often fails to start a server, with
|
|||||||
'child process exited abnormally' -- sometimes it works.
|
'child process exited abnormally' -- sometimes it works.
|
||||||
---------------------------------------------------
|
---------------------------------------------------
|
||||||
EOF
|
EOF
|
||||||
|
# skip for now. it does not clean up the redis processes properly.
|
||||||
make test && true
|
make test && true
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
@ -2,12 +2,11 @@ Index: tests/test_helper.tcl
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- tests/test_helper.tcl.orig
|
--- tests/test_helper.tcl.orig
|
||||||
+++ tests/test_helper.tcl
|
+++ tests/test_helper.tcl
|
||||||
@@ -30,7 +30,7 @@ set ::all_tests {
|
@@ -32,7 +32,6 @@ set ::all_tests {
|
||||||
integration/replication-2
|
integration/replication-2
|
||||||
integration/replication-3
|
integration/replication-3
|
||||||
integration/replication-4
|
integration/replication-4
|
||||||
- integration/aof
|
- integration/aof
|
||||||
+# integration/aof
|
|
||||||
integration/rdb
|
integration/rdb
|
||||||
integration/convert-zipmap-hash-on-load
|
integration/convert-zipmap-hash-on-load
|
||||||
unit/pubsub
|
unit/pubsub
|
||||||
|
Loading…
Reference in New Issue
Block a user