From owner-svn-ports-head@FreeBSD.ORG Mon May 12 17:55:09 2014 Return-Path: Delivered-To: svn-ports-head@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 EB2BFE1D; Mon, 12 May 2014 17:55:08 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC3EE2EED; Mon, 12 May 2014 17:55:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4CHt88V069847; Mon, 12 May 2014 17:55:08 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4CHt8SU069843; Mon, 12 May 2014 17:55:08 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201405121755.s4CHt8SU069843@svn.freebsd.org> From: Steven Kreuzer Date: Mon, 12 May 2014 17:55:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353882 - in head/databases: . twemproxy 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.18 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: Mon, 12 May 2014 17:55:09 -0000 Author: skreuzer Date: Mon May 12 17:55:07 2014 New Revision: 353882 URL: http://svnweb.freebsd.org/changeset/ports/353882 QAT: https://qat.redports.org/buildarchive/r353882/ Log: twemproxy, aka nutcracker is a fast and lightweight proxy for memcached and redis protocol. It was primarily built to reduce the connection count on the backend caching serve WWW: https://github.com/twitter/twemproxy Added: head/databases/twemproxy/ head/databases/twemproxy/Makefile (contents, props changed) head/databases/twemproxy/distinfo (contents, props changed) head/databases/twemproxy/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Mon May 12 17:49:39 2014 (r353881) +++ head/databases/Makefile Mon May 12 17:55:07 2014 (r353882) @@ -897,6 +897,7 @@ SUBDIR += tokyotyrant SUBDIR += tora SUBDIR += tuning-primer + SUBDIR += twemproxy SUBDIR += unixODBC SUBDIR += useracc SUBDIR += usogres Added: head/databases/twemproxy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/twemproxy/Makefile Mon May 12 17:55:07 2014 (r353882) @@ -0,0 +1,26 @@ +# Created by: Steven Kreuzer +# $FreeBSD$ + +PORTNAME= twemproxy +PORTVERSION= 0.3.0 +CATEGORIES= databases +MASTER_SITES= GOOGLE_CODE +DISTNAME= nutcracker-${PORTVERSION} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Fast, light-weight proxy for memcached and redis + +LICENSE= APACHE20 + +PLIST_FILES= sbin/nutcracker \ + man/man8/nutcracker.8.gz \ + etc/nutcracker.yml.sample + +HAS_CONFIGURE= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/nutcracker ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/man/nutcracker.8 ${STAGEDIR}${MANPREFIX}/man/man8/ + ${INSTALL_DATA} ${WRKSRC}/conf/nutcracker.yml ${STAGEDIR}${PREFIX}/etc/nutcracker.yml.sample + +.include Added: head/databases/twemproxy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/twemproxy/distinfo Mon May 12 17:55:07 2014 (r353882) @@ -0,0 +1,2 @@ +SHA256 (nutcracker-0.3.0.tar.gz) = e9993d6827b2e93ee2b865e827acbf9efadbbfc81ccd9103a85948ee2580942a +SIZE (nutcracker-0.3.0.tar.gz) = 1825106 Added: head/databases/twemproxy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/twemproxy/pkg-descr Mon May 12 17:55:07 2014 (r353882) @@ -0,0 +1,5 @@ +twemproxy, aka nutcracker is a fast and lightweight proxy for memcached and +redis protocol. It was primarily built to reduce the connection count on the +backend caching serve + +WWW: https://github.com/twitter/twemproxy