head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.4 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.2 pkgsrc-2012Q4-base:1.2 pkgsrc-2012Q2:1.1.1.1.0.16 pkgsrc-2012Q2-base:1.1.1.1 pkgsrc-2012Q1:1.1.1.1.0.14 pkgsrc-2012Q1-base:1.1.1.1 pkgsrc-2011Q4:1.1.1.1.0.12 pkgsrc-2011Q4-base:1.1.1.1 pkgsrc-2011Q3:1.1.1.1.0.10 pkgsrc-2011Q3-base:1.1.1.1 pkgsrc-2011Q2:1.1.1.1.0.8 pkgsrc-2011Q2-base:1.1.1.1 pkgsrc-2011Q1:1.1.1.1.0.6 pkgsrc-2011Q1-base:1.1.1.1 pkgsrc-2010Q4:1.1.1.1.0.4 pkgsrc-2010Q4-base:1.1.1.1 pkgsrc-2010Q3:1.1.1.1.0.2 pkgsrc-2010Q3-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.2 date 2012.09.16.15.16.00; author taca; state dead; branches; next 1.1; 1.1 date 2010.09.12.03.50.06; author taca; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2010.09.12.03.50.06; author taca; state Exp; branches; next ; desc @@ 1.2 log @Remove ruby19 package (Ruby 1.9.2). Although Ruby 1.9.2 is still supported version, Ruby 1.9.3 has enough compatibility for pkgsrc's packages and migration terms on pkgsrc now ended. And it costs to supporing multiple versions of Ruby along with multiple versions of Ruby on Rails, too. @ text @$NetBSD: patch-am,v 1.1 2010/09/12 03:50:06 taca Exp $ Prevent access to HOME when --install-root is used. --- lib/rubygems/doc_manager.rb.orig 2010-04-22 08:24:42.000000000 +0000 +++ lib/rubygems/doc_manager.rb @@@@ -61,7 +61,7 @@@@ class Gem::DocManager ## # Updates the RI cache for RDoc 2 if it is installed - def self.update_ri_cache + def self.update_ri_cache(install_root = nil) load_rdoc rescue return return unless defined? RDoc::VERSION # RDoc 1 does not have VERSION @@@@ -72,7 +72,7 @@@@ class Gem::DocManager :use_cache => true, :use_system => true, :use_site => true, - :use_home => true, + :use_home => (install_root == nil)? true: false, :use_gems => true, :formatter => RDoc::RI::Formatter, } @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD$ @ 1.1.1.1 log @Importing ruby19-base 1.9.2pl0. This package is Ruby 1.9 based release. And this new release has several features and some incompatibility. Please refer changes from Ruby 1.8.7: http://svn.ruby-lang.org/repos/ruby/tags/v1_9_1_0/NEWS http://svn.ruby-lang.org/repos/ruby/tags/v1_9_2_0/NEWS *Note* NetBSD isn't "supported" but "perhaps" platform by Ruby. Please refer about it "Supported Platform" in http://www.ruby-lang.org/en/news/2010/08/18/ruby-1-9-2-is-released/. @ text @@