svn commit: r301503 - in head/devel: . rubygem-ripper
Steve Wills
swills at FreeBSD.org
Wed Jul 25 01:48:01 UTC 2012
Author: swills
Date: Wed Jul 25 01:48:00 2012
New Revision: 301503
URL: http://svn.freebsd.org/changeset/ports/301503
Log:
Ripper parses Ruby source and tokenizes or builds an AST.
This gem is meant for Ruby 1.8.x builds. Ruby 1.9.x comes with a functioning
ripper implementation out of the box. This gem is a port of the Ripper 1.9
for Ruby 1.8.x. Ripper was written by Minero Aoki and ported by Loren Segal.
WWW: http://github.com/lsegal/ripper18
PR: ports/169390
Submitted by: Douglas Thrift
Added:
head/devel/rubygem-ripper/
head/devel/rubygem-ripper/Makefile (contents, props changed)
head/devel/rubygem-ripper/distinfo (contents, props changed)
head/devel/rubygem-ripper/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Wed Jul 25 01:23:45 2012 (r301502)
+++ head/devel/Makefile Wed Jul 25 01:48:00 2012 (r301503)
@@ -3853,6 +3853,7 @@
SUBDIR += rubygem-rdoc
SUBDIR += rubygem-require_all
SUBDIR += rubygem-rgl
+ SUBDIR += rubygem-ripper
SUBDIR += rubygem-rparsec
SUBDIR += rubygem-rr
SUBDIR += rubygem-rscm
Added: head/devel/rubygem-ripper/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-ripper/Makefile Wed Jul 25 01:48:00 2012 (r301503)
@@ -0,0 +1,30 @@
+# New ports collection makefile for: rubygem-ripper
+# Date created: 24 June 2012
+# Whom: Douglas Thrift
+#
+# $FreeBSD$
+#
+
+PORTNAME= ripper
+PORTVERSION= 1.0.5
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= douglas at douglasthrift.net
+COMMENT= Parses Ruby source and tokenizes or builds an AST
+
+LICENSE= BSD
+
+BUILD_DEPENDS= bison:${PORTSDIR}/devel/bison
+
+USE_RUBY= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST= yes
+
+.include <bsd.port.pre.mk>
+
+.if ${RUBY_VER} != 1.8
+IGNORE= is already included in Ruby 1.9 and later
+.endif
+
+.include <bsd.port.post.mk>
Added: head/devel/rubygem-ripper/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-ripper/distinfo Wed Jul 25 01:48:00 2012 (r301503)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/ripper-1.0.5.gem) = 7fcb60a6a27103be22d56ccb56df7b8a5c35172360cca5a510deb902cf9dc5ed
+SIZE (rubygem/ripper-1.0.5.gem) = 70656
Added: head/devel/rubygem-ripper/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-ripper/pkg-descr Wed Jul 25 01:48:00 2012 (r301503)
@@ -0,0 +1,7 @@
+Ripper parses Ruby source and tokenizes or builds an AST.
+
+This gem is meant for Ruby 1.8.x builds. Ruby 1.9.x comes with a functioning
+ripper implementation out of the box. This gem is a port of the Ripper 1.9
+for Ruby 1.8.x. Ripper was written by Minero Aoki and ported by Loren Segal.
+
+WWW: http://github.com/lsegal/ripper18
More information about the svn-ports-all
mailing list