Date: Mon, 17 Feb 2014 22:19:02 +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: r344826 - head/databases/redis-devel Message-ID: <201402172219.s1HMJ3XW078154@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402172219.s1HMJ3XW078154>