From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 21:12:12 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 B4F8F829; Sun, 5 Oct 2014 21:12:12 +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 870BDC50; Sun, 5 Oct 2014 21:12:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95LCCBG018514; Sun, 5 Oct 2014 21:12:12 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95LCBbm018507; Sun, 5 Oct 2014 21:12:11 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410052112.s95LCBbm018507@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 5 Oct 2014 21:12:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370125 - in head/devel: . rubygem-fast_xor 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: Sun, 05 Oct 2014 21:12:12 -0000 Author: swills Date: Sun Oct 5 21:12:10 2014 New Revision: 370125 URL: https://svnweb.freebsd.org/changeset/ports/370125 QAT: https://qat.redports.org/buildarchive/r370125/ Log: devel/rubygem-fast_xor: create port Provides a C-optimized method for in-place XORing of two (or three) strings WWW: http://github.com/CodeMonkeySteve/fast_xor Added: head/devel/rubygem-fast_xor/ head/devel/rubygem-fast_xor/Makefile (contents, props changed) head/devel/rubygem-fast_xor/distinfo (contents, props changed) head/devel/rubygem-fast_xor/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Oct 5 21:10:47 2014 (r370124) +++ head/devel/Makefile Sun Oct 5 21:12:10 2014 (r370125) @@ -4321,6 +4321,7 @@ SUBDIR += rubygem-fast-stemmer SUBDIR += rubygem-fast_gettext SUBDIR += rubygem-fast_stack + SUBDIR += rubygem-fast_xor SUBDIR += rubygem-fastercsv SUBDIR += rubygem-fastri SUBDIR += rubygem-fastthread Added: head/devel/rubygem-fast_xor/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-fast_xor/Makefile Sun Oct 5 21:12:10 2014 (r370125) @@ -0,0 +1,19 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= fast_xor +PORTVERSION= 1.1.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Fast String XOR operator + +RUN_DEPENDS= rubygem-rake>=0:${PORTSDIR}/devel/rubygem-rake \ + rubygem-rake-compiler>=0:${PORTSDIR}/devel/rubygem-rake-compiler + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/devel/rubygem-fast_xor/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-fast_xor/distinfo Sun Oct 5 21:12:10 2014 (r370125) @@ -0,0 +1,2 @@ +SHA256 (rubygem/fast_xor-1.1.3.gem) = 915ecac71f4f22b57f7323133f4da732dcbea0ef36b7f6321a5724b9f71a37d8 +SIZE (rubygem/fast_xor-1.1.3.gem) = 7168 Added: head/devel/rubygem-fast_xor/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-fast_xor/pkg-descr Sun Oct 5 21:12:10 2014 (r370125) @@ -0,0 +1,3 @@ +Provides a C-optimized method for in-place XORing of two (or three) strings + +WWW: http://github.com/CodeMonkeySteve/fast_xor