From owner-svn-ports-head@FreeBSD.ORG Sun Oct 19 10:17:51 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6D60B845; Sun, 19 Oct 2014 10:17:51 +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 3F56833A; Sun, 19 Oct 2014 10:17:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9JAHphd030799; Sun, 19 Oct 2014 10:17:51 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9JAHoJH030792; Sun, 19 Oct 2014 10:17:50 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201410191017.s9JAHoJH030792@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 19 Oct 2014 10:17:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371175 - in head/textproc: . rubygem-text 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, 19 Oct 2014 10:17:51 -0000 Author: tota Date: Sun Oct 19 10:17:49 2014 New Revision: 371175 URL: https://svnweb.freebsd.org/changeset/ports/371175 QAT: https://qat.redports.org/buildarchive/r371175/ Log: - Add new port: textproc/rubygem-text A collection of text algorithms: Levenshtein, Soundex, Metaphone, Double Metaphone, Porter Stemming WWW: https://github.com/threedaymonk/text Added: head/textproc/rubygem-text/ head/textproc/rubygem-text/Makefile (contents, props changed) head/textproc/rubygem-text/distinfo (contents, props changed) head/textproc/rubygem-text/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Oct 19 09:33:04 2014 (r371174) +++ head/textproc/Makefile Sun Oct 19 10:17:49 2014 (r371175) @@ -1375,6 +1375,7 @@ SUBDIR += rubygem-syntax SUBDIR += rubygem-termcolor SUBDIR += rubygem-terminal-table + SUBDIR += rubygem-text SUBDIR += rubygem-tidy SUBDIR += rubygem-unf SUBDIR += rubygem-unf_ext Added: head/textproc/rubygem-text/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-text/Makefile Sun Oct 19 10:17:49 2014 (r371175) @@ -0,0 +1,19 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= text +PORTVERSION= 1.3.0 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Collection of text algorithms + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING.txt + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/textproc/rubygem-text/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-text/distinfo Sun Oct 19 10:17:49 2014 (r371175) @@ -0,0 +1,2 @@ +SHA256 (rubygem/text-1.3.0.gem) = 47b6f8b04e722c91a023e562dde289d0047cd488b18d4e6fd7f71d256a06d6ad +SIZE (rubygem/text-1.3.0.gem) = 138752 Added: head/textproc/rubygem-text/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-text/pkg-descr Sun Oct 19 10:17:49 2014 (r371175) @@ -0,0 +1,4 @@ +A collection of text algorithms: Levenshtein, Soundex, Metaphone, +Double Metaphone, Porter Stemming + +WWW: https://github.com/threedaymonk/text