From owner-svn-ports-all@FreeBSD.ORG Wed Dec 11 16:55:28 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A08CFF2; Wed, 11 Dec 2013 16:55:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 552231EC6; Wed, 11 Dec 2013 16:55:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBGtSAh057229; Wed, 11 Dec 2013 16:55:28 GMT (envelope-from osa@svn.freebsd.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBBGtRfe057225; Wed, 11 Dec 2013 16:55:27 GMT (envelope-from osa@svn.freebsd.org) Message-Id: <201312111655.rBBGtRfe057225@svn.freebsd.org> From: "Sergey A. Osokin" Date: Wed, 11 Dec 2013 16:55:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336182 - 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-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 16:55:28 -0000 Author: osa Date: Wed Dec 11 16:55:27 2013 New Revision: 336182 URL: http://svnweb.freebsd.org/changeset/ports/336182 Log: Upgrade from 2.8.2 to 2.8.3. Use modern name for dependent libraries. # UPGRADE URGENCY: MODERATE for Redis, HIGH for Sentinel. * [FIX] Sentinel instance role sampling fixed, the system is now more reliable during failover and when reconfiguring instances with non matching configuration. * [FIX] Inline requests are now handled even when terminated with just LF. * [FIX] Replication timeout handling greatly improved, now the slave is able to ping the master while removing the old data from memory, and while loading the new RDB file. This avoid false timeouts sensed by masters. * [FIX] Fixed a replication bug involving 32 bit instances and big datasets hard to compress that resulted into more than 2GB of RDB file sent. * [FIX] Return error for inline requests with unbalanced quotes. * [FIX] Publish the slave replication offset even when disconnected from the master if there is still a cached master instance. 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 Wed Dec 11 16:46:13 2013 (r336181) +++ head/databases/redis-devel/Makefile Wed Dec 11 16:55:27 2013 (r336182) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.8.2 +DISTVERSION= 2.8.3 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ PKGNAMESUFFIX= -devel @@ -12,7 +12,7 @@ COMMENT= A persistent key-value database LICENSE= BSD -LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo +LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo OPTIONS_DEFINE= TESTS OPTIONS_RADIO= EXTLUA @@ -32,7 +32,7 @@ LDFLAGS+= -Wl,-E .endif .if ${PORT_OPTIONS:MLUAJIT} -LIB_DEPENDS+= luajit-5.1:${PORTSDIR}/lang/luajit +LIB_DEPENDS+= libluajit-5.1.so:${PORTSDIR}/lang/luajit EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-src-Makefile.luajit CFLAGS+= -fPIC LDFLAGS+= -Wl,-E Modified: head/databases/redis-devel/distinfo ============================================================================== --- head/databases/redis-devel/distinfo Wed Dec 11 16:46:13 2013 (r336181) +++ head/databases/redis-devel/distinfo Wed Dec 11 16:55:27 2013 (r336182) @@ -1,2 +1,2 @@ -SHA256 (redis-2.8.2.tar.gz) = 8e46ab9916e308210255e33465f8021c6ebb1ff3f545cff141e36a9a10edaec7 -SIZE (redis-2.8.2.tar.gz) = 1045137 +SHA256 (redis-2.8.3.tar.gz) = c0aa8065c230f9df1b77d1dd1e8840655e7846e23fe23f8e339d6246aec3e63f +SIZE (redis-2.8.3.tar.gz) = 1046106 Modified: head/databases/redis/Makefile ============================================================================== --- head/databases/redis/Makefile Wed Dec 11 16:46:13 2013 (r336181) +++ head/databases/redis/Makefile Wed Dec 11 16:55:27 2013 (r336182) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.8.2 +DISTVERSION= 2.8.3 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ @@ -11,7 +11,7 @@ COMMENT= A persistent key-value database LICENSE= BSD -LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo +LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo OPTIONS_DEFINE= TESTS OPTIONS_RADIO= EXTLUA @@ -32,7 +32,7 @@ LDFLAGS+= -Wl,-E .endif .if ${PORT_OPTIONS:MLUAJIT} -LIB_DEPENDS+= luajit-5.1:${PORTSDIR}/lang/luajit +LIB_DEPENDS+= libluajit-5.1.so:${PORTSDIR}/lang/luajit EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-src-Makefile.luajit CFLAGS+= -fPIC LDFLAGS+= -Wl,-E Modified: head/databases/redis/distinfo ============================================================================== --- head/databases/redis/distinfo Wed Dec 11 16:46:13 2013 (r336181) +++ head/databases/redis/distinfo Wed Dec 11 16:55:27 2013 (r336182) @@ -1,2 +1,2 @@ -SHA256 (redis-2.8.2.tar.gz) = 8e46ab9916e308210255e33465f8021c6ebb1ff3f545cff141e36a9a10edaec7 -SIZE (redis-2.8.2.tar.gz) = 1045137 +SHA256 (redis-2.8.3.tar.gz) = c0aa8065c230f9df1b77d1dd1e8840655e7846e23fe23f8e339d6246aec3e63f +SIZE (redis-2.8.3.tar.gz) = 1046106