svn commit: r368767 - in head/textproc: . rubygem-amatch

Dirk Meyer dinoex at FreeBSD.org
Sun Sep 21 15:13:08 UTC 2014


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 at 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/


More information about the svn-ports-head mailing list