From owner-svn-ports-head@FreeBSD.ORG Sun Sep 21 15:13:08 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 8FEFD5C8; Sun, 21 Sep 2014 15:13: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 61E403D2; Sun, 21 Sep 2014 15:13:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8LFD8eV039996; Sun, 21 Sep 2014 15:13:08 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8LFD7Rj039992; Sun, 21 Sep 2014 15:13:07 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201409211513.s8LFD7Rj039992@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Sun, 21 Sep 2014 15:13:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368767 - in head/textproc: . rubygem-amatch 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, 21 Sep 2014 15:13:08 -0000 Author: dinoex Date: Sun Sep 21 15:13:07 2014 New Revision: 368767 URL: http://svnweb.freebsd.org/changeset/ports/368767 QAT: https://qat.redports.org/buildarchive/r368767/ Log: This is a Ruby library for approximate string matching and searching using a dynamic programming algorithm to compute the Levenstein distance between strings. Written in C for speed. WWW: http://flori.github.io/amatch/ Added: head/textproc/rubygem-amatch/ head/textproc/rubygem-amatch/Makefile (contents, props changed) head/textproc/rubygem-amatch/distinfo (contents, props changed) head/textproc/rubygem-amatch/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Sep 21 15:04:47 2014 (r368766) +++ head/textproc/Makefile Sun Sep 21 15:13:07 2014 (r368767) @@ -1292,6 +1292,7 @@ SUBDIR += ruby-xmlparser SUBDIR += ruby-xmlscan SUBDIR += rubygem-albino + SUBDIR += rubygem-amatch SUBDIR += rubygem-asciidoctor SUBDIR += rubygem-augeas SUBDIR += rubygem-charlock_holmes Added: head/textproc/rubygem-amatch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-amatch/Makefile Sun Sep 21 15:13:07 2014 (r368767) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= amatch +PORTVERSION= 0.3.0 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Ruby library for approximate string matching and searching + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/textproc/rubygem-amatch/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-amatch/distinfo Sun Sep 21 15:13:07 2014 (r368767) @@ -0,0 +1,2 @@ +SHA256 (rubygem/amatch-0.3.0.gem) = 669bac06769ab21d2fbd87839b5aa1b1d9e0eb39971b4404fe88de103685f45d +SIZE (rubygem/amatch-0.3.0.gem) = 28672 Added: head/textproc/rubygem-amatch/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-amatch/pkg-descr Sun Sep 21 15:13:07 2014 (r368767) @@ -0,0 +1,5 @@ +This is a Ruby library for approximate string matching and searching +using a dynamic programming algorithm to compute the Levenstein +distance between strings. Written in C for speed. + +WWW: http://flori.github.io/amatch/