svn commit: r338414 - in head: Mk lang/ruby20/files

Steve Wills swills at FreeBSD.org
Thu Jan 2 02:35:41 UTC 2014


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 << '"'


More information about the svn-ports-all mailing list