Hello community,

here is the log from the commit of package redis for openSUSE:Factory checked 
in at 2013-08-07 20:55:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/redis (Old)
 and      /work/SRC/openSUSE:Factory/.redis.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "redis"

Changes:
--------
--- /work/SRC/openSUSE:Factory/redis/redis.changes      2013-07-08 
21:46:01.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.redis.new/redis.changes 2013-08-07 
20:55:24.000000000 +0200
@@ -1,0 +2,29 @@
+Wed Aug  7 14:37:30 UTC 2013 - [email protected]
+
+- 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 - [email protected]
+
+- 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.
+
+-------------------------------------------------------------------

Old:
----
  redis-2.6.9.tar.gz

New:
----
  redis-2.6.14.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ redis.spec ++++++
--- /var/tmp/diff_new_pack.YIvil6/_old  2013-08-07 20:55:25.000000000 +0200
+++ /var/tmp/diff_new_pack.YIvil6/_new  2013-08-07 20:55:25.000000000 +0200
@@ -21,7 +21,7 @@
 %define _conf_dir       %{_sysconfdir}/%{name}
 
 Name:           redis
-Version:        2.6.9
+Version:        2.6.14
 Release:        0
 Summary:        Persistent key-value database
 License:        BSD-3-Clause
@@ -39,6 +39,7 @@
 # for make test
 Patch3:         redis-enable-bactrace-on-x86-and-ia64-only.patch 
 BuildRequires:  tcl
+BuildRequires:  procps
 Requires:       logrotate
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -55,7 +56,7 @@
 %patch0
 %patch1
 %patch2
-%patch3 -p1
+%patch3
 
 %build
 make %{?_smp_mflags} CFLAGS="%{optflags}" V=1

++++++ redis-2.6.9.tar.gz -> redis-2.6.14.tar.gz ++++++
++++ 6037 lines of diff (skipped)

++++++ redis-conf.patch ++++++
--- /var/tmp/diff_new_pack.YIvil6/_old  2013-08-07 20:55:26.000000000 +0200
+++ /var/tmp/diff_new_pack.YIvil6/_new  2013-08-07 20:55:26.000000000 +0200
@@ -25,7 +25,7 @@
  
  # 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
-@@ -50,7 +50,7 @@ loglevel notice
+@@ -66,7 +66,7 @@ loglevel notice
  # 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
  # output for logging but daemonize, logs will be sent to /dev/null
@@ -34,8 +34,8 @@
  
  # To enable logging to the system logger, just set 'syslog-enabled' to yes,
  # and optionally update the other syslog parameters to suit your needs.
-@@ -134,7 +134,7 @@ dbfilename dump.rdb
- # Also the Append Only File will be created inside this directory.
+@@ -150,7 +150,7 @@ dbfilename dump.rdb
+ # The Append Only File will also be created inside this directory.
  # 
  # Note that you must specify a directory here, not a file name.
 -dir ./

++++++ redis-enable-bactrace-on-x86-and-ia64-only.patch ++++++
--- /var/tmp/diff_new_pack.YIvil6/_old  2013-08-07 20:55:26.000000000 +0200
+++ /var/tmp/diff_new_pack.YIvil6/_new  2013-08-07 20:55:26.000000000 +0200
@@ -1,13 +1,13 @@
-Index: redis-2.6.9/src/config.h
+Index: src/config.h
 ===================================================================
---- redis-2.6.9.orig/src/config.h
-+++ redis-2.6.9/src/config.h
+--- src/config.h.orig
++++ src/config.h
 @@ -54,9 +54,11 @@
  #endif
  
  /* Test for backtrace() */
 +#if defined(__i386__) || defined(__x86_64__) || defined(__ia64__)
- #if defined(__APPLE__) || defined(__linux__) || defined(__sun)
+ #if defined(__APPLE__) || defined(__linux__)
  #define HAVE_BACKTRACE 1
  #endif
 +#endif

++++++ skip-aof-test.patch ++++++
--- /var/tmp/diff_new_pack.YIvil6/_old  2013-08-07 20:55:26.000000000 +0200
+++ /var/tmp/diff_new_pack.YIvil6/_new  2013-08-07 20:55:26.000000000 +0200
@@ -2,12 +2,11 @@
 ===================================================================
 --- tests/test_helper.tcl.orig
 +++ tests/test_helper.tcl
-@@ -30,7 +30,7 @@ set ::all_tests {
+@@ -32,7 +32,6 @@ set ::all_tests {
      integration/replication-2
      integration/replication-3
      integration/replication-4
 -    integration/aof
-+#   integration/aof
      integration/rdb
      integration/convert-zipmap-hash-on-load
      unit/pubsub

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to