svn commit: r344826 - head/databases/redis-devel

Sergey A. Osokin osa at FreeBSD.org
Mon Feb 17 22:19:03 UTC 2014


Author: osa
Date: Mon Feb 17 22:19:02 2014
New Revision: 344826
URL: http://svnweb.freebsd.org/changeset/ports/344826
QAT: https://qat.redports.org/buildarchive/r344826/

Log:
  Upgrade from 2.8.6 to 3.0.0-beta1.
  
  <ChangeLog>
  
  --[ Redis 3.0.0 Beta 1 (version 2.9.50) ] Release date: 11 Feb 2014
  
  This is the first beta of Redis 3.0.0 (official version is 2.8.50).
  
  The following is a list of improvements in Redis 3.0, compared to Redis 2.8.
  
  * [NEW] Redis Cluster: a distributed implementation of a subset of Redis.
  * [NEW] New "embedded string" object encoding resulting in less cache
          misses. Big speed gain under certain work loads.
  * [NEW] WAIT command to block waiting for a write to be transmitted to
          the specified number of slaves.
  * [NEW] MIGRATE connection caching. Much faster keys migraitons.
  * [NEW] MIGARTE new options COPY and REPLACE.
  * [NEW] CLIENT PAUSE command: stop processing client requests for a
          specified amount of time.
  
  </ChangeLog>

Modified:
  head/databases/redis-devel/Makefile
  head/databases/redis-devel/distinfo

Modified: head/databases/redis-devel/Makefile
==============================================================================
--- head/databases/redis-devel/Makefile	Mon Feb 17 22:00:50 2014	(r344825)
+++ head/databases/redis-devel/Makefile	Mon Feb 17 22:19:02 2014	(r344826)
@@ -2,10 +2,12 @@
 # $FreeBSD$
 
 PORTNAME=	redis
-DISTVERSION=	2.8.6
+DISTVERSION=	3.0.0-beta1
 CATEGORIES=	databases
-MASTER_SITES=	http://download.redis.io/releases/
+MASTER_SITES=	https://github.com/antirez/redis/archive/
 PKGNAMESUFFIX=	-devel
+DISTNAME=	${DISTVERSION}
+DIST_SUBDIR=	${PORTNAME}
 
 MAINTAINER=	osa at FreeBSD.org
 COMMENT=	A persistent key-value database with built-in net interface
@@ -21,6 +23,9 @@ LUA_DESC=	Use lang/lua instead of builti
 LUAJIT_DESC=	Use lang/luajit instead of builtin lua
 TESTS_DESC=	Install lang/tcl for redis unit tests
 
+FETCH_ARGS=	-Fpr
+WRKSRC=		${WRKDIR}/${PORTNAME}-${DISTVERSION}
+
 NO_STAGE=	yes
 .include <bsd.port.options.mk>
 

Modified: head/databases/redis-devel/distinfo
==============================================================================
--- head/databases/redis-devel/distinfo	Mon Feb 17 22:00:50 2014	(r344825)
+++ head/databases/redis-devel/distinfo	Mon Feb 17 22:19:02 2014	(r344826)
@@ -1,2 +1,2 @@
-SHA256 (redis-2.8.6.tar.gz) = efd0c9cb8d2696db44d8cb8309fed96607f68b93bb126615e64bff364e716658
-SIZE (redis-2.8.6.tar.gz) = 1052017
+SHA256 (redis/3.0.0-beta1.tar.gz) = 72a3d96f44321772d74efffa255eab0aae8d1a5ebf6330b2abf02346347519a2
+SIZE (redis/3.0.0-beta1.tar.gz) = 1115988


More information about the svn-ports-all mailing list