svn commit: r312071 - in head/databases: redis redis-devel redis-devel/files redis/files
Sergey A. Osokin
osa at FreeBSD.org
Mon Feb 11 18:38:20 UTC 2013
Author: osa
Date: Mon Feb 11 18:38:18 2013
New Revision: 312071
URL: http://svnweb.freebsd.org/changeset/ports/312071
Log:
Update from 2.6.9 to 2.6.10.
<ChangeLog>
UPGRADE URGENCY: MODERATE, this release contains many non-critical fixes
and many small improvements.
* [BUGFIX] redis-cli --rdb, fixed when the server sends newlines to ping.
* [BUGFIX] redis-cli, minor fixes on connection handling, prompt.
* [BUGFIX] Slow log: don't log EXEC, just executed commands.
* [BUGFIX] On failed shutdown don't try again and again compulsively.
* [BUGFIX] Fix build on sunos without backtrace().
* [BUGFIX] UNSUBSCRIBE and PUNSUBSCRIBE: always provide a reply (see 742e580)
* [BUGFIX] Lua struct library was broken, upgraded.
* [BUGFIX] Fix a bug in srandmemberWithCountCommand() with count argument.
* [BUGFIX] Test: disable clients timeout to prevent issues on slow systems.
* [BUGFIX] Sentinel: don't advertise the promoted slave as master too early.
* [IMPROVED] Whitelist SIGUSR1, see http://redis.io/topics/signals.
* [IMPROVED] Simpler to understand redis-cli --bigkeys output.
* [IMPROVED] Test now works with tclsh > 8.5.
* [IMPROVED] Added option to turn of the Nagle algorithm in slave socket.
* [IMPROVED] Optionally use SO_KEEPALIVE to detect dead peers.
</ChangeLog>
Modified:
head/databases/redis-devel/Makefile
head/databases/redis-devel/distinfo
head/databases/redis-devel/files/patch-src-config.h
head/databases/redis/Makefile
head/databases/redis/distinfo
head/databases/redis/files/patch-src-config.h
Modified: head/databases/redis-devel/Makefile
==============================================================================
--- head/databases/redis-devel/Makefile Mon Feb 11 18:31:49 2013 (r312070)
+++ head/databases/redis-devel/Makefile Mon Feb 11 18:38:18 2013 (r312071)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= redis
-DISTVERSION= 2.6.9
+DISTVERSION= 2.6.10
CATEGORIES= databases
MASTER_SITES= GOOGLE_CODE
PKGNAMESUFFIX= -devel
Modified: head/databases/redis-devel/distinfo
==============================================================================
--- head/databases/redis-devel/distinfo Mon Feb 11 18:31:49 2013 (r312070)
+++ head/databases/redis-devel/distinfo Mon Feb 11 18:38:18 2013 (r312071)
@@ -1,2 +1,2 @@
-SHA256 (redis-2.6.9.tar.gz) = 4d967eff2038aebea33875d17e85ed67179df6505df68529a622f7836d1c7489
-SIZE (redis-2.6.9.tar.gz) = 989119
+SHA256 (redis-2.6.10.tar.gz) = 0b930976830afaad40274107a36f9aae0d8a8fbbdea4e566d20765ee502c2a22
+SIZE (redis-2.6.10.tar.gz) = 991437
Modified: head/databases/redis-devel/files/patch-src-config.h
==============================================================================
--- head/databases/redis-devel/files/patch-src-config.h Mon Feb 11 18:31:49 2013 (r312070)
+++ head/databases/redis-devel/files/patch-src-config.h Mon Feb 11 18:38:18 2013 (r312071)
@@ -1,11 +1,11 @@
---- src/config.h.orig 2012-02-24 16:56:36.000000000 +0400
-+++ src/config.h 2012-02-24 16:57:01.000000000 +0400
-@@ -25,7 +25,7 @@
+--- src/config.h.orig 2013-02-11 21:47:44.000000000 +0400
++++ src/config.h 2013-02-11 21:50:10.000000000 +0400
+@@ -54,7 +54,7 @@
#endif
/* Test for backtrace() */
--#if defined(__APPLE__) || defined(__linux__) || defined(__sun)
-+#if defined(__APPLE__) || defined(__linux__) || defined(__sun) || defined(__FreeBSD__)
+-#if defined(__APPLE__) || defined(__linux__)
++#if defined(__APPLE__) || defined(__linux__) || defined(__FreeBSD__)
#define HAVE_BACKTRACE 1
#endif
Modified: head/databases/redis/Makefile
==============================================================================
--- head/databases/redis/Makefile Mon Feb 11 18:31:49 2013 (r312070)
+++ head/databases/redis/Makefile Mon Feb 11 18:38:18 2013 (r312071)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= redis
-DISTVERSION= 2.6.9
+DISTVERSION= 2.6.10
CATEGORIES= databases
MASTER_SITES= GOOGLE_CODE
Modified: head/databases/redis/distinfo
==============================================================================
--- head/databases/redis/distinfo Mon Feb 11 18:31:49 2013 (r312070)
+++ head/databases/redis/distinfo Mon Feb 11 18:38:18 2013 (r312071)
@@ -1,2 +1,2 @@
-SHA256 (redis-2.6.9.tar.gz) = 4d967eff2038aebea33875d17e85ed67179df6505df68529a622f7836d1c7489
-SIZE (redis-2.6.9.tar.gz) = 989119
+SHA256 (redis-2.6.10.tar.gz) = 0b930976830afaad40274107a36f9aae0d8a8fbbdea4e566d20765ee502c2a22
+SIZE (redis-2.6.10.tar.gz) = 991437
Modified: head/databases/redis/files/patch-src-config.h
==============================================================================
--- head/databases/redis/files/patch-src-config.h Mon Feb 11 18:31:49 2013 (r312070)
+++ head/databases/redis/files/patch-src-config.h Mon Feb 11 18:38:18 2013 (r312071)
@@ -1,11 +1,11 @@
---- src/config.h.orig 2012-02-24 16:56:36.000000000 +0400
-+++ src/config.h 2012-02-24 16:57:01.000000000 +0400
-@@ -25,7 +25,7 @@
+--- src/config.h.orig 2013-02-11 21:47:44.000000000 +0400
++++ src/config.h 2013-02-11 21:50:10.000000000 +0400
+@@ -54,7 +54,7 @@
#endif
/* Test for backtrace() */
--#if defined(__APPLE__) || defined(__linux__) || defined(__sun)
-+#if defined(__APPLE__) || defined(__linux__) || defined(__sun) || defined(__FreeBSD__)
+-#if defined(__APPLE__) || defined(__linux__)
++#if defined(__APPLE__) || defined(__linux__) || defined(__FreeBSD__)
#define HAVE_BACKTRACE 1
#endif
More information about the svn-ports-head
mailing list