svn commit: r304537 - in head/databases/redis-devel: . files
Sergey A. Osokin
osa at FreeBSD.org
Wed Sep 19 18:20:20 UTC 2012
Author: osa
Date: Wed Sep 19 18:20:19 2012
New Revision: 304537
URL: http://svn.freebsd.org/changeset/ports/304537
Log:
Update from 2.6.0rc6 to 2.6.0rc7.
<ChangeLog>
UPGRADE URGENCY: HIGH
* [BUGFIX] Theoretical bug in ziplist fixed.
* [BUGFIX] Better out of memory handling (Log produced in log file).
* [BUGFIX] Incrementally flush RDB file on slave side while performing the
first synchronization with the master. This makes Redis less
blocking in environments where disk I/O is slow.
* [BUGFIX] Don't crash with Lua's redis.call() without arguments.
* [BUGFIX] Don't crash after a big number of Lua calls on 32 bit systems
because of a failed assertion.
* [BUGFIX] Fix SORT behaviour when called from scripting.
* [BUGFIX] Adjust slave PING period accordingly to REDIS_HZ define.
* [BUGFIX] BITCOUNT: fix crash on overflowing arguments.
* [BUGFIX] Return an error when SELECT argument is not an integer.
* [BUGFIX] Blocking operations on lists were completely reimplemented for
correctness. Now blocking list ops and pushes originated from
Lua scripts will play well together and will be replicated
and transmitted to the AOF correctly.
* [IMPROVED] Send async PING before starting replication to avoid blocking if
master allows us to connect but it is actually not able to reply.
* [IMPROVED] Support slave-priority for Redis Sentinel.
* [IMPROVED] Hiredis library updated.
</ChangeLog>
Added:
head/databases/redis-devel/files/patch-src::replication.c (contents, props changed)
Modified:
head/databases/redis-devel/Makefile
head/databases/redis-devel/distinfo
Modified: head/databases/redis-devel/Makefile
==============================================================================
--- head/databases/redis-devel/Makefile Wed Sep 19 16:23:55 2012 (r304536)
+++ head/databases/redis-devel/Makefile Wed Sep 19 18:20:19 2012 (r304537)
@@ -6,7 +6,7 @@
#
PORTNAME= redis
-DISTVERSION= 2.6.0-rc6
+DISTVERSION= 2.6.0-rc7
CATEGORIES= databases
MASTER_SITES= GOOGLE_CODE
PKGNAMESUFFIX= -devel
Modified: head/databases/redis-devel/distinfo
==============================================================================
--- head/databases/redis-devel/distinfo Wed Sep 19 16:23:55 2012 (r304536)
+++ head/databases/redis-devel/distinfo Wed Sep 19 18:20:19 2012 (r304537)
@@ -1,2 +1,2 @@
-SHA256 (redis-2.6.0-rc6.tar.gz) = 0bc49799cc644bd849ca2a85d073fda6fd5e29a469969213a912e1e227000961
-SIZE (redis-2.6.0-rc6.tar.gz) = 967845
+SHA256 (redis-2.6.0-rc7.tar.gz) = 538e68479465b074497c1e76df70e40a61e6cfcb5e8f9dce5eaabc5448eedd43
+SIZE (redis-2.6.0-rc7.tar.gz) = 973045
Added: head/databases/redis-devel/files/patch-src::replication.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/redis-devel/files/patch-src::replication.c Wed Sep 19 18:20:19 2012 (r304537)
@@ -0,0 +1,10 @@
+--- src/replication.c.orig 2012-09-19 10:46:28.000000000 +0400
++++ src/replication.c 2012-09-19 10:47:01.000000000 +0400
+@@ -1,5 +1,7 @@
+ #include "redis.h"
+
++#include <sys/types.h>
++#include <sys/socket.h>
+ #include <sys/time.h>
+ #include <unistd.h>
+ #include <fcntl.h>
More information about the svn-ports-all
mailing list