diff options
author | Gordon Malm <gengor@gentoo.org> | 2009-07-30 07:42:48 +0000 |
---|---|---|
committer | Gordon Malm <gengor@gentoo.org> | 2009-07-30 07:42:48 +0000 |
commit | d5a39a2ad13e02e9bbb6f404a5d5cf2c25acb6f7 (patch) | |
tree | f94bfb7e870785226396346c433843c76a2a7266 /dev-ruby/rubygems/files | |
parent | Fixed dependency on Groovy. (diff) | |
download | gentoo-2-d5a39a2ad13e02e9bbb6f404a5d5cf2c25acb6f7.tar.gz gentoo-2-d5a39a2ad13e02e9bbb6f404a5d5cf2c25acb6f7.tar.bz2 gentoo-2-d5a39a2ad13e02e9bbb6f404a5d5cf2c25acb6f7.zip |
Version bump.
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'dev-ruby/rubygems/files')
-rw-r--r-- | dev-ruby/rubygems/files/rubygems-1.3.5-setup.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-ruby/rubygems/files/rubygems-1.3.5-setup.patch b/dev-ruby/rubygems/files/rubygems-1.3.5-setup.patch new file mode 100644 index 000000000000..ad6c1d0ec742 --- /dev/null +++ b/dev-ruby/rubygems/files/rubygems-1.3.5-setup.patch @@ -0,0 +1,31 @@ +--- a/lib/rubygems/commands/setup_command.rb ++++ b/lib/rubygems/commands/setup_command.rb +@@ -113,8 +113,6 @@ By default, this RubyGems will install g + + remove_old_bin_files bin_dir + +- remove_source_caches install_destdir +- + say "RubyGems #{Gem::VERSION} installed" + + install_rdoc +@@ -236,10 +234,6 @@ TEXT + if File.writable? gem_doc_dir and + (not File.exist? rubygems_doc_dir or + File.writable? rubygems_doc_dir) then +- say "Removing old RubyGems RDoc and ri" if @verbose +- Dir[File.join(Gem.dir, 'doc', 'rubygems-[0-9]*')].each do |dir| +- rm_rf dir +- end + + if options[:ri] then + ri_dir = File.join rubygems_doc_dir, 'ri' +@@ -353,7 +347,7 @@ abort "#{deprecation_message}" + + args << '--quiet' + args << '--main' << 'README' +- args << '.' << 'README' << 'LICENSE.txt' << 'GPL.txt' ++ args << '.' << 'README' + + r = RDoc::RDoc.new + r.document args |