Date: Sun, 21 Sep 2014 15:13:07 +0000 (UTC) From: Dirk Meyer <dinoex@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368767 - in head/textproc: . rubygem-amatch Message-ID: <201409211513.s8LFD7Rj039992@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409211513.s8LFD7Rj039992>