Bug 169390 - New port: devel/rubygem-ripper Parses Ruby source and tokenizes or builds an AST
Summary: New port: devel/rubygem-ripper Parses Ruby source and tokenizes or builds an AST
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Steve Wills
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-06-25 07:20 UTC by Douglas Thrift
Modified: 2012-07-25 02:50 UTC (History)
1 user (show)

See Also:


Attachments
rubygem-ripper.shar (1.42 KB, text/plain)
2012-06-25 07:20 UTC, Douglas Thrift
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Douglas Thrift 2012-06-25 07:20:07 UTC
https://redports.org/buildarchive/20120625000058-10816/

From ripper.gemspec:

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.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-06-25 07:20:20 UTC
Responsible Changed
From-To: freebsd-ports-bugs->ruby

ruby@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 Steve Wills freebsd_committer freebsd_triage 2012-07-25 02:17:52 UTC
Responsible Changed
From-To: ruby->swills

I'll take it.
Comment 3 dfilter service freebsd_committer freebsd_triage 2012-07-25 02:48:15 UTC
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@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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 4 Steve Wills freebsd_committer freebsd_triage 2012-07-25 02:48:16 UTC
State Changed
From-To: open->closed

New port added. Thanks!