Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Dec 2013 16:55:27 +0000 (UTC)
From:      "Sergey A. Osokin" <osa@FreeBSD.org>
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
Message-ID:  <201312111655.rBBGtRfe057225@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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.
  
  <ChangeLog>
  
  # 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.
  
  </ChangeLog>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312111655.rBBGtRfe057225>