From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 02:41:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECAA5494; Mon, 6 Oct 2014 02:41:58 +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 D7991D84; Mon, 6 Oct 2014 02:41:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s962fwcg075036; Mon, 6 Oct 2014 02:41:58 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s962fvHw075031; Mon, 6 Oct 2014 02:41:57 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410060241.s962fvHw075031@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 6 Oct 2014 02:41:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370137 - in head/databases: . rubygem-hiredis rubygem-hiredis/files 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-1 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, 06 Oct 2014 02:41:59 -0000 Author: swills Date: Mon Oct 6 02:41:57 2014 New Revision: 370137 URL: https://svnweb.freebsd.org/changeset/ports/370137 QAT: https://qat.redports.org/buildarchive/r370137/ Log: databases/rubygem-hiredis: create port Ruby wrapper for hiredis (protocol serialization/deserialization and blocking I/O) WWW: http://github.com/redis/hiredis-rb Added: head/databases/rubygem-hiredis/ head/databases/rubygem-hiredis/Makefile (contents, props changed) head/databases/rubygem-hiredis/distinfo (contents, props changed) head/databases/rubygem-hiredis/files/ head/databases/rubygem-hiredis/files/patch-vendor__hiredis__Makefile (contents, props changed) head/databases/rubygem-hiredis/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Mon Oct 6 01:47:29 2014 (r370136) +++ head/databases/Makefile Mon Oct 6 02:41:57 2014 (r370137) @@ -862,6 +862,7 @@ SUBDIR += rubygem-do_postgres SUBDIR += rubygem-do_sqlite3 SUBDIR += rubygem-familia + SUBDIR += rubygem-hiredis SUBDIR += rubygem-jdbc-mysql SUBDIR += rubygem-leo_manager_client SUBDIR += rubygem-memcache Added: head/databases/rubygem-hiredis/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-hiredis/Makefile Mon Oct 6 02:41:57 2014 (r370137) @@ -0,0 +1,20 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= hiredis +PORTVERSION= 0.5.2 +CATEGORIES= databases rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Ruby wrapper for hiredis + +RUN_DEPENDS= redis>=0:${PORTSDIR}/databases/redis + +USES= gmake +USE_RUBY= yes +USE_RAKE= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/databases/rubygem-hiredis/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-hiredis/distinfo Mon Oct 6 02:41:57 2014 (r370137) @@ -0,0 +1,2 @@ +SHA256 (rubygem/hiredis-0.5.2.gem) = 41e5fedb4f68a6402c128d10753b374daa40273253622c6bf9baf4cc6784ca94 +SIZE (rubygem/hiredis-0.5.2.gem) = 47104 Added: head/databases/rubygem-hiredis/files/patch-vendor__hiredis__Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-hiredis/files/patch-vendor__hiredis__Makefile Mon Oct 6 02:41:57 2014 (r370137) @@ -0,0 +1,13 @@ +--- vendor/hiredis/Makefile.orig 2014-10-06 02:34:35 UTC ++++ vendor/hiredis/Makefile +@@ -15,8 +15,8 @@ + OPTIMIZATION?=-O3 + WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings + DEBUG?= -g -ggdb +-REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CFLAGS) $(WARNINGS) $(DEBUG) $(ARCH) +-REAL_LDFLAGS=$(LDFLAGS) $(ARCH) ++REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CFLAGS) $(WARNINGS) $(DEBUG) ++REAL_LDFLAGS=$(LDFLAGS) + + DYLIBSUFFIX=so + STLIBSUFFIX=a Added: head/databases/rubygem-hiredis/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-hiredis/pkg-descr Mon Oct 6 02:41:57 2014 (r370137) @@ -0,0 +1,4 @@ +Ruby wrapper for hiredis (protocol serialization/deserialization and blocking +I/O) + +WWW: http://github.com/redis/hiredis-rb