From owner-svn-ports-head@FreeBSD.ORG Wed Sep 19 18:20:20 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4C53106564A; Wed, 19 Sep 2012 18:20:20 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 869FA8FC17; Wed, 19 Sep 2012 18:20:20 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8JIKKq0042631; Wed, 19 Sep 2012 18:20:20 GMT (envelope-from osa@svn.freebsd.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8JIKKJ2042627; Wed, 19 Sep 2012 18:20:20 GMT (envelope-from osa@svn.freebsd.org) Message-Id: <201209191820.q8JIKKJ2042627@svn.freebsd.org> From: "Sergey A. Osokin" Date: Wed, 19 Sep 2012 18:20:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304537 - in head/databases/redis-devel: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Sep 2012 18:20:20 -0000 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. 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. 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 ++#include + #include + #include + #include