Date: Thu, 2 Jan 2014 02:35:40 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r338414 - in head: Mk lang/ruby20/files Message-ID: <201401020235.s022ZesS060520@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Thu Jan 2 02:35:40 2014 New Revision: 338414 URL: http://svnweb.freebsd.org/changeset/ports/338414 Log: - Add patch to bundled rdoc to fix issue which causes some ports to fail to build Obtained from: https://github.com/rdoc/rdoc/commit/f4f5b94285aa9b20cacf78bda61450e17be63a22 Added: head/lang/ruby20/files/patch-lib__rdoc__ruby_lex.rb (contents, props changed) Modified: head/Mk/bsd.ruby.mk Modified: head/Mk/bsd.ruby.mk ============================================================================== --- head/Mk/bsd.ruby.mk Thu Jan 2 02:34:47 2014 (r338413) +++ head/Mk/bsd.ruby.mk Thu Jan 2 02:35:40 2014 (r338414) @@ -204,7 +204,7 @@ RUBY20= "@comment " # Ruby 2.0 # RUBY_RELVERSION= 2.0.0 -RUBY_PORTREVISION= 1 +RUBY_PORTREVISION= 2 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 353 Added: head/lang/ruby20/files/patch-lib__rdoc__ruby_lex.rb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ruby20/files/patch-lib__rdoc__ruby_lex.rb Thu Jan 2 02:35:40 2014 (r338414) @@ -0,0 +1,11 @@ +--- ./lib/rdoc/ruby_lex.rb.orig 2012-12-18 07:31:36.000000000 +0000 ++++ ./lib/rdoc/ruby_lex.rb 2014-01-02 01:09:06.630327388 +0000 +@@ -1028,6 +1028,8 @@ + end + + if output_heredoc then ++ raise Error, "Missing terminating #{quoted} for string" unless l ++ + doc << l.chomp + else + doc << '"'
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401020235.s022ZesS060520>