svn commit: r353270 - in head/textproc: . rubygem-parslet

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Thu May 8 05:15:17 UTC 2014


Author: sunpoet
Date: Thu May  8 05:15:16 2014
New Revision: 353270
URL: http://svnweb.freebsd.org/changeset/ports/353270
QAT: https://qat.redports.org/buildarchive/r353270/

Log:
  - Add rubygem-parslet 1.6.0
  
  Parslet is a small Ruby library for constructing parsers in the PEG (Parsing
  Expression Grammar) fashion.
  
  Parslet makes developing complex parsers easy. It does so by
  - providing the best error reporting possible
  - not generating reams of code for you to debug
  
  Parslet takes the long way around to make your job easier. It allows for
  incremental language construction. Often, you start out small, implementing the
  atoms of your language first; parslet takes pride in making this possible.
  
  WWW: http://kschiess.github.io/parslet/
  RG:  https://rubygems.org/gems/parslet

Added:
  head/textproc/rubygem-parslet/
  head/textproc/rubygem-parslet/Makefile   (contents, props changed)
  head/textproc/rubygem-parslet/distinfo   (contents, props changed)
  head/textproc/rubygem-parslet/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Thu May  8 05:14:15 2014	(r353269)
+++ head/textproc/Makefile	Thu May  8 05:15:16 2014	(r353270)
@@ -1312,6 +1312,7 @@
     SUBDIR += rubygem-multi_xml
     SUBDIR += rubygem-nokogiri
     SUBDIR += rubygem-opml
+    SUBDIR += rubygem-parslet
     SUBDIR += rubygem-phone
     SUBDIR += rubygem-rak
     SUBDIR += rubygem-rchardet

Added: head/textproc/rubygem-parslet/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/rubygem-parslet/Makefile	Thu May  8 05:15:16 2014	(r353270)
@@ -0,0 +1,20 @@
+# Created by: Sunpoet Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	parslet
+PORTVERSION=	1.6.0
+CATEGORIES=	textproc rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Parser construction library with great error reporting in Ruby
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	rubygem-blankslate>=2:${PORTSDIR}/devel/rubygem-blankslate
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/textproc/rubygem-parslet/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/rubygem-parslet/distinfo	Thu May  8 05:15:16 2014	(r353270)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/parslet-1.6.0.gem) = c9c0af382d7fb4c8a440d7438ea5645e37d01850c4c791d45e5cabdf1f5d50c6
+SIZE (rubygem/parslet-1.6.0.gem) = 56832

Added: head/textproc/rubygem-parslet/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/rubygem-parslet/pkg-descr	Thu May  8 05:15:16 2014	(r353270)
@@ -0,0 +1,13 @@
+Parslet is a small Ruby library for constructing parsers in the PEG (Parsing
+Expression Grammar) fashion.
+
+Parslet makes developing complex parsers easy. It does so by
+- providing the best error reporting possible
+- not generating reams of code for you to debug
+
+Parslet takes the long way around to make your job easier. It allows for
+incremental language construction. Often, you start out small, implementing the
+atoms of your language first; parslet takes pride in making this possible.
+
+WWW: http://kschiess.github.io/parslet/
+RG:  https://rubygems.org/gems/parslet


More information about the svn-ports-all mailing list