599bebc13f
=== 2.3.0 / 2011-09-06 * 2 minor enhancements: * Add -g flag to parser compile if DEBUG * Lexer now embeds line number in yacc_value for keywords, helping fix up line numbers * 3 bug fixes: * Fix method line numbers when no args and no parens (quix) * Fixed line numbers on return/break/next w/ result expr. (pjnz) * Fixed some lexing state in order to parse: 'f (1), 2' as 'f(1, 2)'. (invernizzi)
17 lines
485 B
Makefile
17 lines
485 B
Makefile
# $NetBSD: Makefile,v 1.7 2011/09/12 11:54:44 taca Exp $
|
|
|
|
DISTNAME= ruby_parser-2.3.0
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/ruby_//}
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= filip@joyent.com
|
|
HOMEPAGE= http://rubyforge.org/projects/parsetree/
|
|
COMMENT= Ruby parser written in pure ruby
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-sexp-processor>=3.0<4:../../devel/ruby-sexp-processor
|
|
|
|
CONFLICTS+= ruby[1-9][0-9]-ruby-parser-[0-9]*
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|