diff options
author | swills <swills@FreeBSD.org> | 2013-10-21 03:14:52 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2013-10-21 03:14:52 +0800 |
commit | f6708d247696d714b56cc84a87c32288691d0dc1 (patch) | |
tree | 9a7f71737ef281f336c27eb6c79443ee70e8f6c7 | |
parent | c73180597f1a69ffac2a2ed8276b12ea1e0919da (diff) | |
download | freebsd-ports-gnome-f6708d247696d714b56cc84a87c32288691d0dc1.tar.gz freebsd-ports-gnome-f6708d247696d714b56cc84a87c32288691d0dc1.tar.zst freebsd-ports-gnome-f6708d247696d714b56cc84a87c32288691d0dc1.zip |
A fast Gherkin lexer/parser based on the Ragel State Machine Compiler.
WWW: http://github.com/cucumber/gherkin
PR: ports/182687
Submitted by: Loic Blot <loic.blot@unix-experience.fr>
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/rubygem-gherkin/Makefile | 19 | ||||
-rw-r--r-- | textproc/rubygem-gherkin/distinfo | 2 | ||||
-rw-r--r-- | textproc/rubygem-gherkin/pkg-descr | 3 |
4 files changed, 25 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 8f337e6f1636..809f8e920efe 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1299,6 +1299,7 @@ SUBDIR += rubygem-fast_xs073 SUBDIR += rubygem-ferret SUBDIR += rubygem-gemoji + SUBDIR += rubygem-gherkin SUBDIR += rubygem-heredoc_unindent SUBDIR += rubygem-hikidoc SUBDIR += rubygem-htmlentities diff --git a/textproc/rubygem-gherkin/Makefile b/textproc/rubygem-gherkin/Makefile new file mode 100644 index 000000000000..2823054b0f28 --- /dev/null +++ b/textproc/rubygem-gherkin/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= gherkin +PORTVERSION= 2.12.1 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Fast Gherkin lexer/parser based on the Ragel State Machine Compiler + +RUN_DEPENDS= rubygem-multi_json>=1.3:${PORTSDIR}/devel/rubygem-multi_json + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +NO_STAGE= yes + +.include <bsd.port.mk> diff --git a/textproc/rubygem-gherkin/distinfo b/textproc/rubygem-gherkin/distinfo new file mode 100644 index 000000000000..340288aa3042 --- /dev/null +++ b/textproc/rubygem-gherkin/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/gherkin-2.12.1.gem) = 8534d17bd87416d52b19c73266caae7154298e4433b533532da3cdb91b64df1e +SIZE (rubygem/gherkin-2.12.1.gem) = 1053184 diff --git a/textproc/rubygem-gherkin/pkg-descr b/textproc/rubygem-gherkin/pkg-descr new file mode 100644 index 000000000000..5a7ef790df3f --- /dev/null +++ b/textproc/rubygem-gherkin/pkg-descr @@ -0,0 +1,3 @@ +A fast Gherkin lexer/parser based on the Ragel State Machine Compiler. + +WWW: http://github.com/cucumber/gherkin |