2020-10-10 14:16:11 +02:00
|
|
|
# typed: false
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
require "formula"
|
2018-06-05 23:19:18 -04:00
|
|
|
require "fetch"
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2011-03-12 09:40:10 -08:00
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2020-07-23 02:43:22 +02:00
|
|
|
extend Fetch
|
|
|
|
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2018-10-27 23:44:32 +05:30
|
|
|
def fetch_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
2019-01-30 21:32:35 +00:00
|
|
|
`fetch` [<options>] <formula>
|
2018-10-27 23:44:32 +05:30
|
|
|
|
2019-08-19 22:44:50 -04:00
|
|
|
Download a bottle (if available) or source packages for <formula>.
|
2018-10-27 23:44:32 +05:30
|
|
|
For tarballs, also print SHA-256 checksums.
|
|
|
|
EOS
|
|
|
|
switch "--HEAD",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Fetch HEAD version instead of stable version."
|
2018-10-27 23:44:32 +05:30
|
|
|
switch "--devel",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Fetch development version instead of stable version."
|
2020-07-27 03:59:52 +02:00
|
|
|
switch "-f", "--force",
|
2019-08-09 14:23:04 -04:00
|
|
|
description: "Remove a previously cached version and re-fetch."
|
2020-07-30 18:40:10 +02:00
|
|
|
switch "-v", "--verbose",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Do a verbose VCS checkout, if the URL represents a VCS. This is useful for "\
|
|
|
|
"seeing if an existing VCS cache has been updated."
|
2018-10-27 23:44:32 +05:30
|
|
|
switch "--retry",
|
2019-08-20 00:04:14 -04:00
|
|
|
description: "Retry if downloading fails or re-download if the checksum of a previously cached "\
|
2019-08-06 13:23:19 -04:00
|
|
|
"version no longer matches."
|
2018-10-27 23:44:32 +05:30
|
|
|
switch "--deps",
|
2019-08-20 00:04:14 -04:00
|
|
|
description: "Also download dependencies for any listed <formula>."
|
2018-10-27 23:44:32 +05:30
|
|
|
switch "-s", "--build-from-source",
|
2019-08-19 22:44:50 -04:00
|
|
|
description: "Download source packages rather than a bottle."
|
2019-01-29 11:35:04 +00:00
|
|
|
switch "--build-bottle",
|
2019-08-19 22:44:50 -04:00
|
|
|
description: "Download source packages (for eventual bottling) rather than a bottle."
|
2018-10-27 23:44:32 +05:30
|
|
|
switch "--force-bottle",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Download a bottle if it exists for the current or newest version of macOS, "\
|
|
|
|
"even if it would not be used during installation."
|
2020-07-30 18:40:10 +02:00
|
|
|
|
2019-01-29 19:39:41 +00:00
|
|
|
conflicts "--devel", "--HEAD"
|
|
|
|
conflicts "--build-from-source", "--build-bottle", "--force-bottle"
|
2020-03-04 17:28:15 +00:00
|
|
|
min_named :formula
|
2018-10-27 23:44:32 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-03-12 09:40:10 -08:00
|
|
|
def fetch
|
2020-07-26 22:00:38 +02:00
|
|
|
args = fetch_args.parse
|
2018-10-27 23:44:32 +05:30
|
|
|
|
|
|
|
if args.deps?
|
2011-04-14 14:57:21 -07:00
|
|
|
bucket = []
|
2020-08-19 10:34:48 -04:00
|
|
|
args.named.to_formulae.each do |f|
|
2011-04-14 14:57:21 -07:00
|
|
|
bucket << f
|
2013-05-16 14:06:25 -05:00
|
|
|
bucket.concat f.recursive_dependencies.map(&:to_formula)
|
2011-04-14 14:57:21 -07:00
|
|
|
end
|
2013-05-16 14:06:25 -05:00
|
|
|
bucket.uniq!
|
2011-04-14 14:57:21 -07:00
|
|
|
else
|
2020-08-19 10:34:48 -04:00
|
|
|
bucket = args.named.to_formulae
|
2011-04-14 14:57:21 -07:00
|
|
|
end
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
puts "Fetching: #{bucket * ", "}" if bucket.size > 1
|
2013-08-06 19:53:43 -07:00
|
|
|
bucket.each do |f|
|
2016-09-17 15:32:44 +01:00
|
|
|
f.print_tap_action verb: "Fetching"
|
2014-10-19 13:54:00 +01:00
|
|
|
|
2015-12-03 11:00:39 +02:00
|
|
|
fetched_bottle = false
|
2020-07-26 22:00:38 +02:00
|
|
|
if fetch_bottle?(f, args: args)
|
2015-12-03 11:00:39 +02:00
|
|
|
begin
|
2020-07-31 19:14:25 +02:00
|
|
|
fetch_formula(f.bottle, args: args)
|
2017-10-07 00:31:28 +02:00
|
|
|
rescue Interrupt
|
|
|
|
raise
|
|
|
|
rescue => e
|
2020-04-05 15:44:50 +01:00
|
|
|
raise if Homebrew::EnvConfig.developer?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2015-12-03 11:00:39 +02:00
|
|
|
fetched_bottle = false
|
|
|
|
onoe e.message
|
|
|
|
opoo "Bottle fetch failed: fetching the source."
|
|
|
|
else
|
|
|
|
fetched_bottle = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-10 10:24:56 +01:00
|
|
|
next if fetched_bottle
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2020-07-31 19:14:25 +02:00
|
|
|
fetch_formula(f, args: args)
|
2018-01-21 23:41:54 -08:00
|
|
|
|
|
|
|
f.resources.each do |r|
|
2020-07-31 19:14:25 +02:00
|
|
|
fetch_resource(r, args: args)
|
|
|
|
r.patches.each { |p| fetch_patch(p, args: args) if p.external? }
|
2018-01-21 23:41:54 -08:00
|
|
|
end
|
|
|
|
|
2020-07-31 19:14:25 +02:00
|
|
|
f.patchlist.each { |p| fetch_patch(p, args: args) if p.external? }
|
2013-08-06 19:53:43 -07:00
|
|
|
end
|
2013-01-11 18:03:51 -06:00
|
|
|
end
|
2011-04-14 14:57:21 -07:00
|
|
|
|
2020-07-31 19:14:25 +02:00
|
|
|
def fetch_resource(r, args:)
|
2013-08-06 19:53:43 -07:00
|
|
|
puts "Resource: #{r.name}"
|
2020-07-31 19:14:25 +02:00
|
|
|
fetch_fetchable r, args: args
|
2013-08-06 19:53:43 -07:00
|
|
|
rescue ChecksumMismatchError => e
|
2020-07-31 19:14:25 +02:00
|
|
|
retry if retry_fetch?(r, args: args)
|
2013-08-06 19:53:43 -07:00
|
|
|
opoo "Resource #{r.name} reports different #{e.hash_type}: #{e.expected}"
|
|
|
|
end
|
|
|
|
|
2020-07-31 19:14:25 +02:00
|
|
|
def fetch_formula(f, args:)
|
|
|
|
fetch_fetchable f, args: args
|
2013-08-06 19:53:43 -07:00
|
|
|
rescue ChecksumMismatchError => e
|
2020-07-31 19:14:25 +02:00
|
|
|
retry if retry_fetch?(f, args: args)
|
2013-08-06 19:53:43 -07:00
|
|
|
opoo "Formula reports different #{e.hash_type}: #{e.expected}"
|
|
|
|
end
|
|
|
|
|
2020-07-31 19:14:25 +02:00
|
|
|
def fetch_patch(p, args:)
|
|
|
|
fetch_fetchable p, args: args
|
2014-03-13 19:51:23 -05:00
|
|
|
rescue ChecksumMismatchError => e
|
|
|
|
Homebrew.failed = true
|
|
|
|
opoo "Patch reports different #{e.hash_type}: #{e.expected}"
|
|
|
|
end
|
|
|
|
|
2020-07-31 19:14:25 +02:00
|
|
|
def retry_fetch?(f, args:)
|
2014-08-22 22:55:10 -05:00
|
|
|
@fetch_failed ||= Set.new
|
2018-10-27 23:44:32 +05:30
|
|
|
if args.retry? && @fetch_failed.add?(f)
|
2014-08-22 22:55:10 -05:00
|
|
|
ohai "Retrying download"
|
|
|
|
f.clear_cache
|
|
|
|
true
|
|
|
|
else
|
2014-03-01 12:28:45 +00:00
|
|
|
Homebrew.failed = true
|
2014-08-22 22:55:10 -05:00
|
|
|
false
|
2014-03-01 12:28:45 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-07-31 19:14:25 +02:00
|
|
|
def fetch_fetchable(f, args:)
|
2018-10-27 23:44:32 +05:30
|
|
|
f.clear_cache if args.force?
|
2013-10-31 14:28:49 -05:00
|
|
|
|
|
|
|
already_fetched = f.cached_download.exist?
|
2014-08-16 08:48:28 +01:00
|
|
|
|
|
|
|
begin
|
2019-06-15 17:22:45 +01:00
|
|
|
download = f.fetch(verify_download_integrity: false)
|
2014-08-22 22:55:10 -05:00
|
|
|
rescue DownloadError
|
2020-07-31 19:14:25 +02:00
|
|
|
retry if retry_fetch?(f, args: args)
|
2014-08-22 22:55:10 -05:00
|
|
|
raise
|
2014-08-16 08:48:28 +01:00
|
|
|
end
|
2011-03-12 09:40:10 -08:00
|
|
|
|
2013-05-16 14:06:26 -05:00
|
|
|
return unless download.file?
|
2011-03-12 09:40:10 -08:00
|
|
|
|
2013-10-31 14:28:49 -05:00
|
|
|
puts "Downloaded to: #{download}" unless already_fetched
|
2016-03-20 13:53:48 +08:00
|
|
|
puts Checksum::TYPES.map { |t| "#{t.to_s.upcase}: #{download.send(t)}" }
|
2013-01-11 18:03:51 -06:00
|
|
|
|
2013-05-16 14:06:26 -05:00
|
|
|
f.verify_download_integrity(download)
|
2011-03-12 09:40:10 -08:00
|
|
|
end
|
|
|
|
end
|