Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Jun 2013 21:04:22 GMT
From:      Steve Wills <swills@freebsd.org>
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        voldern@hoeggen.net
Subject:   ports/180105: [PATCH] devel/rubygem-ruby_parser: update to 3.1.3
Message-ID:  <201306292104.r5TL4MbB084393@meatwad.mouf.net>
Resent-Message-ID: <201306292110.r5TLA0cT036379@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         180105
>Category:       ports
>Synopsis:       [PATCH] devel/rubygem-ruby_parser: update to 3.1.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jun 29 21:10:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Steve Wills
>Release:        FreeBSD 10.0-CURRENT amd64
>Organization:
>Environment:
System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #5 r251046: Tue May 28 22:52:00 UTC
>Description:
- Update to 3.1.3

Port maintainer (voldern@hoeggen.net) is cc'd.

Generated with FreeBSD Port Tools 0.99_7 (mode: update, diff: SVN)
>How-To-Repeat:
>Fix:

--- rubygem-ruby_parser-3.1.3.patch begins here ---
Index: Makefile
===================================================================
--- Makefile	(revision 322052)
+++ Makefile	(working copy)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	ruby_parser
-PORTVERSION=	3.1.1
+PORTVERSION=	3.1.3
 CATEGORIES=	devel rubygems
 MASTER_SITES=	RG
 
Index: distinfo
===================================================================
--- distinfo	(revision 322052)
+++ distinfo	(working copy)
@@ -1,2 +1,2 @@
-SHA256 (rubygem/ruby_parser-3.1.1.gem) = dd036aa67f973404a3264364831119c8a67867676ccabb47ff4356908993ac4a
-SIZE (rubygem/ruby_parser-3.1.1.gem) = 141824
+SHA256 (rubygem/ruby_parser-3.1.3.gem) = 602b23bfde88e1cdcef113fd013ebf3735b06454372b3c9b5a5c14a5b161fa34
+SIZE (rubygem/ruby_parser-3.1.3.gem) = 141824
Index: files/patch-tmpusage
===================================================================
--- files/patch-tmpusage	(revision 322052)
+++ files/patch-tmpusage	(working copy)
@@ -1,31 +0,0 @@
---- lib/gauntlet_rubyparser.rb.orig	2013-02-24 17:26:38.158253105 +0000
-+++ lib/gauntlet_rubyparser.rb	2013-02-24 17:27:26.653251094 +0000
-@@ -35,18 +35,19 @@
-   def diff_pp o1, o2
-     require 'pp'
- 
--    File.open("/tmp/a.#{$$}", "w") do |f|
--      PP.pp o1, f
--    end
-+    file_a = Tempfile.new('ruby_parser_a')
-+    PP.pp o1, file_a
-+    file_a.close
-+
-+    file_b = Tempfile.new('ruby_parser_b')
-+    PP.pp o2, file_b
-+    file_b.close
- 
--    File.open("/tmp/b.#{$$}", "w") do |f|
--      PP.pp o2, f
--    end
- 
--    `diff -u /tmp/a.#{$$} /tmp/b.#{$$}`
-+    `diff -u #{file_a.path} #{file_b.path}`
-   ensure
--    File.unlink "/tmp/a.#{$$}" rescue nil
--    File.unlink "/tmp/b.#{$$}" rescue nil
-+    file_a.unlink
-+    file_b.unlink
-   end
- 
-   def broke name, file, msg
--- rubygem-ruby_parser-3.1.3.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306292104.r5TL4MbB084393>