1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Add rubygem-parslet1 1.8.2 (copied from rubygem-parslet)

- Add PORTSCOUT
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-02-21 18:55:30 +00:00
parent 185fa765bf
commit a054be3109
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=526642
4 changed files with 39 additions and 0 deletions

View File

@ -1573,6 +1573,7 @@
SUBDIR += rubygem-org-ruby
SUBDIR += rubygem-ox
SUBDIR += rubygem-parslet
SUBDIR += rubygem-parslet1
SUBDIR += rubygem-phone
SUBDIR += rubygem-pretty-xml
SUBDIR += rubygem-psych

View File

@ -0,0 +1,23 @@
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= parslet
PORTVERSION= 1.8.2
CATEGORIES= textproc rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 1
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Parser construction library with great error reporting in Ruby
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= gem
USE_RUBY= yes
NO_ARCH= yes
PORTSCOUT= limit:^1\.
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1518604645
SHA256 (rubygem/parslet-1.8.2.gem) = 08d1ab3721cd3f175bfbee8788b2ddff71f92038f2d69bd65454c22bb9fbd98a
SIZE (rubygem/parslet-1.8.2.gem) = 79872

View File

@ -0,0 +1,12 @@
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: https://kschiess.github.io/parslet/