From owner-svn-ports-head@FreeBSD.ORG Fri May 3 17:38:26 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 222F0FEC; Fri, 3 May 2013 17:38:26 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 12BC5151F; Fri, 3 May 2013 17:38:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r43HcPxk062305; Fri, 3 May 2013 17:38:25 GMT (envelope-from osa@svn.freebsd.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r43HcP5X062301; Fri, 3 May 2013 17:38:25 GMT (envelope-from osa@svn.freebsd.org) Message-Id: <201305031738.r43HcP5X062301@svn.freebsd.org> From: "Sergey A. Osokin" Date: Fri, 3 May 2013 17:38:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r317224 - in head/databases: redis redis-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 03 May 2013 17:38:26 -0000 Author: osa Date: Fri May 3 17:38:24 2013 New Revision: 317224 URL: http://svnweb.freebsd.org/changeset/ports/317224 Log: Update from 2.6.11 to 2.6.13. PR: 178124 [ Redis 2.6.13 ] UPGRADE URGENCY: MODERATE, nothing very critical but upgrading is suggested if you experienced: 1) Strange issues with Lua scripting. 2) Not reconfigured reappearing master using Sentinel. 3) Server continusly trying to save on save error. This version of Redis may also help with AOF and slow / busy disks and latency issues. * [FIX] Throttle BGSAVE attempt on saving error. * [FIX] redis-cli: raise error on bad command line switch. * [FIX] Redis/Jemalloc Gitignore were too aggressive. * [FIX] Test: fix RDB test checking file permissions. * [FIX] Sentinel: always redirect on master->slave transition. * [FIX] Lua updated to version 5.1.5. Fixes rare scripting issues. * [NEW] AOF: improved latency figures with slow/busy disks. * [NEW] Sentinel: turn old master into a slave when it comes back. * [NEW] More explicit panic message on out of memory. * [NEW] redis-cli: --latency-history mode implemented. [ Redis 2.6.12 ] UPGRADE URGENCY: MODERATE, nothing very critical but a few non trivial bugs. * [BUGFIX] redis-cli --bigkeys: don't crash with empty DB. * [BUGFIX] stop-writes-on-bgsave-error now works in redis.conf * [BUGFIX] Don't crash at startup if RDB is there but can't be opened. * [BUGFIX] Initial value for master_link_down_since_seconds is now huge. * [BUGFIX] Allow SELECT while loading the DB. * [BUGFIX] Don't replicate/AOF an empty MULTI/EXEC if the transaction is empty or containing just read-only commands. * [BUGFIX] EXPIRE should not be able to resurrect keys (see issue #1026). * [IMPROVED] Extended SET back ported from Redis 2.8 / unstable See http://redis.io/commands/set for more information. * [IMPROVED] Test suite improved. Modified: head/databases/redis-devel/Makefile head/databases/redis-devel/distinfo head/databases/redis/Makefile head/databases/redis/distinfo Modified: head/databases/redis-devel/Makefile ============================================================================== --- head/databases/redis-devel/Makefile Fri May 3 17:37:13 2013 (r317223) +++ head/databases/redis-devel/Makefile Fri May 3 17:38:24 2013 (r317224) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.6.11 +DISTVERSION= 2.6.13 CATEGORIES= databases MASTER_SITES= GOOGLE_CODE PKGNAMESUFFIX= -devel @@ -83,9 +83,7 @@ post-install: [ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d} .endfor -test: build +regression-test: build @cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl -regression-test: test - .include Modified: head/databases/redis-devel/distinfo ============================================================================== --- head/databases/redis-devel/distinfo Fri May 3 17:37:13 2013 (r317223) +++ head/databases/redis-devel/distinfo Fri May 3 17:38:24 2013 (r317224) @@ -1,2 +1,2 @@ -SHA256 (redis-2.6.11.tar.gz) = b0644669849a130659cf8dd48965cf116e4fe64a5bb86a239ea078d7464b6968 -SIZE (redis-2.6.11.tar.gz) = 993744 +SHA256 (redis-2.6.13.tar.gz) = 3b9439636c58ca06bee538a0f7298e02a33fcf98b8fa845c0b0cf8567751e948 +SIZE (redis-2.6.13.tar.gz) = 994331 Modified: head/databases/redis/Makefile ============================================================================== --- head/databases/redis/Makefile Fri May 3 17:37:13 2013 (r317223) +++ head/databases/redis/Makefile Fri May 3 17:38:24 2013 (r317224) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.6.11 +DISTVERSION= 2.6.13 CATEGORIES= databases MASTER_SITES= GOOGLE_CODE @@ -82,9 +82,7 @@ post-install: [ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d} .endfor -test: build +regression-test: build @cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl -regression-test: test - .include Modified: head/databases/redis/distinfo ============================================================================== --- head/databases/redis/distinfo Fri May 3 17:37:13 2013 (r317223) +++ head/databases/redis/distinfo Fri May 3 17:38:24 2013 (r317224) @@ -1,2 +1,2 @@ -SHA256 (redis-2.6.11.tar.gz) = b0644669849a130659cf8dd48965cf116e4fe64a5bb86a239ea078d7464b6968 -SIZE (redis-2.6.11.tar.gz) = 993744 +SHA256 (redis-2.6.13.tar.gz) = 3b9439636c58ca06bee538a0f7298e02a33fcf98b8fa845c0b0cf8567751e948 +SIZE (redis-2.6.13.tar.gz) = 994331