Racc is an LALR(1) parser generator for Ruby. It is written in Ruby

and generates Ruby code.  Almost all functions of yacc(1) is
implemented.

Author:	Minero Aoki <aamine@loveruby.net>
WWW:	http://rubyforge.org/frs/?group_id=7299

PR:		ports/164842
Submitted by:	Shin-ya MURAKAMI <murashin@gfd-dennou.org>
This commit is contained in:
Martin Wilke 2012-03-04 11:51:54 +00:00
parent 5bcfde2b25
commit e92c162ff1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=292655
4 changed files with 32 additions and 0 deletions

View file

@ -3730,6 +3730,7 @@
SUBDIR += rubygem-posix-spawn
SUBDIR += rubygem-pry
SUBDIR += rubygem-ptreloaded
SUBDIR += rubygem-racc
SUBDIR += rubygem-railsless-deploy
SUBDIR += rubygem-rainbow
SUBDIR += rubygem-rake

View file

@ -0,0 +1,23 @@
# New ports collection makefile for: rubygem-racc
# Date created: 2012-02-07
# Whom: Shin-ya MURAKAMI <murashin@gfd-dennou.org>
#
# $FreeBSD$
#
PORTNAME= racc
PORTVERSION= 1.4.6
CATEGORIES= devel ruby
MASTER_SITES= RG
MAINTAINER= murashin@gfd-dennou.org
COMMENT= An LALR(1) parser generator for Ruby
LICENSE= LGPL21
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
PLIST_FILES= bin/racc bin/racc2y bin/y2racc
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (rubygem/racc-1.4.6.gem) = 5877e6d676b0512e9d8587b273acf71aa7e6bd7c77b5e3f4bc26d9b5ccd08378
SIZE (rubygem/racc-1.4.6.gem) = 110592

View file

@ -0,0 +1,6 @@
Racc is an LALR(1) parser generator for Ruby. It is written in Ruby
and generates Ruby code. Almost all functions of yacc(1) is
implemented.
Author: Minero Aoki <aamine@loveruby.net>
WWW: http://rubyforge.org/frs/?group_id=7299