1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

ruby_parser (RP) is a ruby parser written in pure ruby (utilizing

racc--which does by default use a C extension). RP's output is
the same as ParseTree's output: s-expressions using ruby's arrays and
base types.

Author: Ryan Davis (zenspider) <ryand-ruby@zenspider.com>
WWW: http://rubyforge.org/projects/parsetree/

PR:		ports/135706
Submitted by:	Espen Volden <voldern@hoeggen.net>
This commit is contained in:
Pav Lucistnik 2009-06-19 09:24:49 +00:00
parent 957fee70b0
commit 488ef7f167
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=236286
4 changed files with 37 additions and 0 deletions

View File

@ -2642,6 +2642,7 @@
SUBDIR += rubygem-rspec
SUBDIR += rubygem-rtags
SUBDIR += rubygem-rubigen
SUBDIR += rubygem-ruby_parser
SUBDIR += rubygem-ruby-debug
SUBDIR += rubygem-ruby-debug-base
SUBDIR += rubygem-ruby-ole

View File

@ -0,0 +1,26 @@
# New ports collection makefile for: rubygem-ruby_parser
# Date created: 18 June 2009
# Whom: Espen Volden aka voldern <voldern@hoeggen.net>
#
# $FreeBSD$
#
PORTNAME= ruby_parser
PORTVERSION= 2.0.2
CATEGORIES= devel rubygems
MASTER_SITES= RUBYFORGE/parsetree
DISTNAME= ${PORTNAME}-${PORTVERSION}
MAINTAINER= voldern@hoeggen.net
COMMENT= A ruby parser written in pure ruby
BUILD_DEPENDS= rubygem-sexp_processor>=3.0.1:${PORTSDIR}/devel/rubygem-sexp_processor \
rubygem-parsetree>=0:${PORTSDIR}/devel/rubygem-parsetree \
rubygem-hoe>=1.8.2:${PORTSDIR}/devel/rubygem-hoe
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
PLIST_FILES= bin/ruby_parse
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (rubygem/ruby_parser-2.0.2.gem) = b56f8f9867da9a2e9e9da73e43b4da94
SHA256 (rubygem/ruby_parser-2.0.2.gem) = 86fe4369d48f6347893b9062171be9b6a79c7ccab5bd2c1c36c779e17e132a15
SIZE (rubygem/ruby_parser-2.0.2.gem) = 75264

View File

@ -0,0 +1,7 @@
ruby_parser (RP) is a ruby parser written in pure ruby (utilizing
racc--which does by default use a C extension). RP's output is
the same as ParseTree's output: s-expressions using ruby's arrays and
base types.
Author: Ryan Davis (zenspider) <ryand-ruby@zenspider.com>
WWW: http://rubyforge.org/projects/parsetree/