From owner-svn-ports-head@freebsd.org Wed Feb 10 09:40:50 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 48A51AA48D1; Wed, 10 Feb 2016 09:40:50 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 0B0CD1CE2; Wed, 10 Feb 2016 09:40:49 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1A9enZs086325; Wed, 10 Feb 2016 09:40:49 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1A9emHd086321; Wed, 10 Feb 2016 09:40:48 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201602100940.u1A9emHd086321@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Wed, 10 Feb 2016 09:40:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408620 - in head/databases: . rubygem-em-redis-unified 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.20 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: Wed, 10 Feb 2016 09:40:50 -0000 Author: robak Date: Wed Feb 10 09:40:48 2016 New Revision: 408620 URL: https://svnweb.freebsd.org/changeset/ports/408620 Log: New port: databases/rubygem-em-redis-unified Eventmachine-based implementation of the Redis protocol An EventMachine based library for interacting with the Redis data store by Salvatore 'antirez' Sanfilippo. Modeled after eventmachine's implementation of the memcached protocol, and influenced by Ezra Zygmuntowicz's redis-rb library (distributed as part of Redis). WWW: https://rubygems.org/gems/em-redis-unified Submitted by: Bartek Rutkowski Added: head/databases/rubygem-em-redis-unified/ head/databases/rubygem-em-redis-unified/Makefile (contents, props changed) head/databases/rubygem-em-redis-unified/distinfo (contents, props changed) head/databases/rubygem-em-redis-unified/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Feb 10 09:00:17 2016 (r408619) +++ head/databases/Makefile Wed Feb 10 09:40:48 2016 (r408620) @@ -891,6 +891,7 @@ SUBDIR += rubygem-do_mysql SUBDIR += rubygem-do_postgres SUBDIR += rubygem-do_sqlite3 + SUBDIR += rubygem-em-redis-unified SUBDIR += rubygem-familia SUBDIR += rubygem-globalid SUBDIR += rubygem-her Added: head/databases/rubygem-em-redis-unified/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-em-redis-unified/Makefile Wed Feb 10 09:40:48 2016 (r408620) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= em-redis-unified +PORTVERSION= 1.0.1 +CATEGORIES= databases rubygems +MASTER_SITES= RG + +MAINTAINER= ports@FreeBSD.org +COMMENT= Eventmachine-based implementation of the Redis protocol + +LICENSE= MIT + +RUN_DEPENDS= rubygem-eventmachine>=0.12.10:${PORTSDIR}/devel/rubygem-eventmachine + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/databases/rubygem-em-redis-unified/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-em-redis-unified/distinfo Wed Feb 10 09:40:48 2016 (r408620) @@ -0,0 +1,2 @@ +SHA256 (rubygem/em-redis-unified-1.0.1.gem) = 3bd501a48741164bc84ea428b3c871e5274ad868af4215659981b9c50413ee67 +SIZE (rubygem/em-redis-unified-1.0.1.gem) = 18432 Added: head/databases/rubygem-em-redis-unified/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-em-redis-unified/pkg-descr Wed Feb 10 09:40:48 2016 (r408620) @@ -0,0 +1,6 @@ +An EventMachine based library for interacting with the Redis data store +by Salvatore 'antirez' Sanfilippo. Modeled after eventmachine's +implementation of the memcached protocol, and influenced by Ezra Zygmuntowicz's +redis-rb library (distributed as part of Redis). + +WWW: https://rubygems.org/gems/em-redis-unified