downloader.rb: shorthands for usual URI

* tool/downloader.rb (Downloader.uri_to_download): add shorthands
  for commonly used URI.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47694 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-09-23 11:56:30 +00:00
Родитель c7cdc549ff
Коммит 0b5227b8bd
3 изменённых файлов: 28 добавлений и 7 удалений

Просмотреть файл

@ -1,6 +1,29 @@
require 'open-uri'
class Downloader
def self.gnu(name)
"http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=#{name};hb=HEAD"
end
def self.rubygems(name)
"https://rubygems.org/downloads/#{name}"
end
def self.uri_to_download(url, name)
from, url = url
case from
when :gnu
url = gnu(url || name)
when :rubygems, :gems
url = rubygems(url || name)
when Symbol
raise ArgumentError, "unkonwn site - #{from}"
else
url = from
end
URI(url)
end
def self.mode_for(data)
data.start_with?("#!") ? 0755 : 0644
end
@ -34,7 +57,7 @@ class Downloader
# 'enc/unicode/data/UnicodeData.txt'
def self.download(url, name, dir = nil, ims = true)
file = dir ? File.join(dir, name) : name
url = URI(url)
url = uri_to_download(url, name)
begin
data = url.read(http_options(file, ims))
rescue OpenURI::HTTPError => http_error
@ -53,7 +76,7 @@ class Downloader
end
true
rescue => e
raise "failed to download #{name}\n#{e.message}: #{url}"
raise e.class, "failed to download #{name}\n#{e.message}: #{url}", e.backtrace
end
def self.download_if_modified_since(url, name, dir = nil)

Просмотреть файл

@ -3,8 +3,7 @@ require File.expand_path('../downloader', __FILE__)
ARGV.each {|n|
STDOUT.print "Downloading #{n}..."; STDOUT.flush
begin
url = "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=%s;hb=HEAD" % n
Downloader.download(url, n)
Downloader.download(:gnu, n)
STDOUT.puts
rescue => e
STDOUT.puts

Просмотреть файл

@ -224,8 +224,7 @@ def package(rev, destdir)
rescue LoadError
abort "Error!!! Copy 'downloader.rb' from 'tool' directory of the recent ruby repository!"
end
url = "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=%s;hb=HEAD" % conf
Downloader.download(url, conf, "tool")
Downloader.download(:gnu, conf, "tool")
end
File.open(clean.add("cross.rb"), "w") do |f|
f.puts "Object.__send__(:remove_const, :CROSS_COMPILING) if defined?(CROSS_COMPILING)"
@ -283,7 +282,7 @@ def package(rev, destdir)
bundled_gems.split("\n").map(&:split).each do |gem, ver|
gem_name = "#{gem}-#{ver}.gem"
unless File.file?("gems/#{gem_name}")
Downloader.download("https://rubygems.org/downloads/#{gem_name}", gem_name, "gems")
Downloader.download(:rubygems, gem_name, "gems")
end
end
end