Charlie Sharpsteen 9d19506ee9 mirror support: Add mirror method to Formula.rb
Mirrors can now be declared using the `mirror` method which works similar to
`depends_on` and takes the same arguments as `url`.

The formula class now has a public `fetch` method that cycles through the
mirror list if the downloader for the primary URL throws a `DownloadError`.
Other brew commands, like brew-fetch, also benefit from mirror support by using
this method.

Closes Homebrew/homebrew#7574.
2011-09-19 09:24:43 -07:00

50 lines
1.4 KiB
Ruby

require 'formula'
# Downloads the tarballs for the given formulae to the Cache
module Homebrew extend self
def fetch
if ARGV.include? '--deps'
bucket = []
ARGV.formulae.each do |f|
bucket << f
bucket << f.recursive_deps
end
bucket = bucket.flatten.uniq
else
bucket = ARGV.formulae
end
puts "Fetching: #{bucket * ', '}" if bucket.size > 1
bucket.each do |f|
if ARGV.include? "--force" or ARGV.include? "-f"
where_to = f.cached_download
FileUtils.rm_rf where_to if File.exist? where_to
end
the_tarball, _ = f.fetch
next unless the_tarball.kind_of? Pathname
previous_md5 = f.instance_variable_get(:@md5)
previous_sha1 = f.instance_variable_get(:@sha1)
previous_sha2 = f.instance_variable_get(:@sha2)
puts "MD5: #{the_tarball.md5}"
puts "SHA1: #{the_tarball.sha1}"
puts "SHA256: #{the_tarball.sha2}"
unless previous_md5.nil? or previous_md5.empty? or the_tarball.md5 == previous_md5
opoo "Formula reports different MD5: #{previous_md5}"
end
unless previous_sha1.nil? or previous_sha1.empty? or the_tarball.sha1 == previous_sha1
opoo "Formula reports different SHA1: #{previous_sha1}"
end
unless previous_sha2.nil? or previous_sha2.empty? or the_tarball.sha2 == previous_sha2
opoo "Formula reports different SHA256: #{previous_sha2}"
end
end
end
end