2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2020-07-02 12:53:52 +01:00
|
|
|
require "formula_installer"
|
|
|
|
require "install"
|
|
|
|
require "upgrade"
|
2020-07-06 12:49:20 -04:00
|
|
|
require "cask/cmd"
|
|
|
|
require "cask/utils"
|
|
|
|
require "cask/macos"
|
2011-08-23 23:30:52 +01:00
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2020-07-25 21:33:48 +02:00
|
|
|
extend Install
|
|
|
|
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2019-01-29 19:52:06 +05:30
|
|
|
def upgrade_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
2019-08-06 14:17:17 -04:00
|
|
|
`upgrade` [<options>] [<formula>]
|
2019-01-29 19:52:06 +05:30
|
|
|
|
2019-08-20 00:04:14 -04:00
|
|
|
Upgrade outdated, unpinned formulae using the same options they were originally
|
|
|
|
installed with, plus any appended brew formula options. If <formula> are specified,
|
|
|
|
upgrade only the given <formula> kegs (unless they are pinned; see `pin`, `unpin`).
|
2019-01-29 19:52:06 +05:30
|
|
|
|
2019-08-20 00:04:14 -04:00
|
|
|
Unless `HOMEBREW_NO_INSTALL_CLEANUP` is set, `brew cleanup` will then be run for the
|
2019-08-06 13:23:19 -04:00
|
|
|
upgraded formulae or, every 30 days, for all formulae.
|
2019-01-29 19:52:06 +05:30
|
|
|
EOS
|
2019-01-29 19:25:13 +00:00
|
|
|
switch :debug,
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "If brewing fails, open an interactive debugging session with access to IRB "\
|
2019-08-06 14:22:24 -04:00
|
|
|
"or a shell inside the temporary build directory."
|
2019-01-29 19:25:13 +00:00
|
|
|
switch "-s", "--build-from-source",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Compile <formula> from source even if a bottle is available."
|
2020-02-06 09:57:49 +11:00
|
|
|
switch "-i", "--interactive",
|
|
|
|
description: "Download and patch <formula>, then open a shell. This allows the user to "\
|
|
|
|
"run `./configure --help` and otherwise determine how to turn the software "\
|
|
|
|
"package into a Homebrew package."
|
2019-01-29 19:25:13 +00:00
|
|
|
switch "--force-bottle",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Install from a bottle if it exists for the current or newest version of "\
|
|
|
|
"macOS, even if it would not normally be used for installation."
|
2019-01-29 19:52:06 +05:30
|
|
|
switch "--fetch-HEAD",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Fetch the upstream repository to detect if the HEAD installation of the "\
|
2019-08-20 00:04:14 -04:00
|
|
|
"formula is outdated. Otherwise, the repository's HEAD will only be checked for "\
|
2019-04-30 08:44:35 +01:00
|
|
|
"updates when a new stable or development version has been released."
|
2019-01-29 19:52:06 +05:30
|
|
|
switch "--ignore-pinned",
|
2019-08-20 00:04:14 -04:00
|
|
|
description: "Set a successful exit status even if pinned formulae are not upgraded."
|
2019-01-29 19:25:13 +00:00
|
|
|
switch "--keep-tmp",
|
2019-08-20 00:04:14 -04:00
|
|
|
description: "Retain the temporary files created during installation."
|
2020-07-27 03:59:52 +02:00
|
|
|
switch "-f", "--force",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Install without checking for previously installed keg-only or "\
|
|
|
|
"non-migrated versions."
|
2019-01-29 19:25:13 +00:00
|
|
|
switch :verbose,
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Print the verification and postinstall steps."
|
2019-01-29 19:52:06 +05:30
|
|
|
switch "--display-times",
|
2019-07-28 11:12:32 +01:00
|
|
|
env: :display_install_times,
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Print install times for each formula at the end of the run."
|
2019-08-21 12:42:09 -04:00
|
|
|
switch "-n", "--dry-run",
|
2019-07-26 22:55:16 -07:00
|
|
|
description: "Show what would be upgraded, but do not actually upgrade anything."
|
2020-07-06 12:49:20 -04:00
|
|
|
switch "--greedy",
|
|
|
|
description: "Upgrade casks with `auto_updates` or `version :latest`"
|
2019-01-29 19:39:41 +00:00
|
|
|
conflicts "--build-from-source", "--force-bottle"
|
2019-01-29 19:25:13 +00:00
|
|
|
formula_options
|
2019-01-29 19:52:06 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-08-23 23:30:52 +01:00
|
|
|
def upgrade
|
2020-07-25 03:48:33 +02:00
|
|
|
args = upgrade_args.parse
|
2019-02-04 08:38:24 +01:00
|
|
|
|
2020-07-06 17:23:31 -04:00
|
|
|
formulae, casks = args.resolved_formulae_casks
|
2020-07-27 12:48:42 -07:00
|
|
|
# If one or more formulae are specified, but no casks were
|
|
|
|
# specified, we want to make note of that so we don't
|
|
|
|
# try to upgrade all outdated casks.
|
|
|
|
named_formulae_specified = !formulae.empty? && casks.empty?
|
|
|
|
named_casks_specified = !casks.empty? && formulae.empty?
|
2020-07-06 17:23:31 -04:00
|
|
|
|
2020-07-27 12:48:42 -07:00
|
|
|
upgrade_outdated_formulae(formulae) unless named_casks_specified
|
|
|
|
upgrade_outdated_casks(casks) unless named_formulae_specified
|
2020-07-06 17:23:31 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def upgrade_outdated_formulae(formulae)
|
2016-07-06 11:07:24 +01:00
|
|
|
FormulaInstaller.prevent_build_flags unless DevelopmentTools.installed?
|
2015-06-29 14:09:57 -04:00
|
|
|
|
2020-07-25 21:33:48 +02:00
|
|
|
perform_preinstall_checks
|
2011-08-23 23:30:52 +01:00
|
|
|
|
2020-07-06 17:23:31 -04:00
|
|
|
if formulae.blank?
|
2016-07-22 12:47:47 +03:00
|
|
|
outdated = Formula.installed.select do |f|
|
2019-01-29 19:52:06 +05:30
|
|
|
f.outdated?(fetch_head: args.fetch_HEAD?)
|
2016-07-22 12:47:47 +03:00
|
|
|
end
|
2016-08-05 22:01:32 +08:00
|
|
|
else
|
2020-07-06 12:49:20 -04:00
|
|
|
outdated, not_outdated = formulae.partition do |f|
|
2019-01-29 19:52:06 +05:30
|
|
|
f.outdated?(fetch_head: args.fetch_HEAD?)
|
2016-07-22 12:47:47 +03:00
|
|
|
end
|
2015-01-03 17:59:40 -05:00
|
|
|
|
2020-07-06 12:49:20 -04:00
|
|
|
not_outdated.each do |f|
|
2016-09-10 10:24:57 +01:00
|
|
|
versions = f.installed_kegs.map(&:version)
|
2016-08-05 22:01:32 +08:00
|
|
|
if versions.empty?
|
2019-11-12 16:18:54 -08:00
|
|
|
ofail "#{f.full_specified_name} not installed"
|
2016-08-05 22:01:32 +08:00
|
|
|
else
|
2015-11-29 15:37:06 +08:00
|
|
|
version = versions.max
|
2019-11-12 16:18:54 -08:00
|
|
|
opoo "#{f.full_specified_name} #{version} already installed"
|
2012-03-07 11:17:36 +00:00
|
|
|
end
|
2011-09-02 09:55:37 +01:00
|
|
|
end
|
2011-08-23 23:30:52 +01:00
|
|
|
end
|
|
|
|
|
2020-07-09 08:55:42 -04:00
|
|
|
return if outdated.blank?
|
2020-07-06 12:49:20 -04:00
|
|
|
|
2018-02-05 09:31:17 +00:00
|
|
|
pinned = outdated.select(&:pinned?)
|
|
|
|
outdated -= pinned
|
2016-09-15 16:01:18 +01:00
|
|
|
formulae_to_install = outdated.map(&:latest_formula)
|
|
|
|
|
2019-01-29 19:52:06 +05:30
|
|
|
if !pinned.empty? && !args.ignore_pinned?
|
2018-09-17 20:11:11 +02:00
|
|
|
ofail "Not upgrading #{pinned.count} pinned #{"package".pluralize(pinned.count)}:"
|
2018-03-16 20:31:20 +00:00
|
|
|
puts pinned.map { |f| "#{f.full_specified_name} #{f.pkg_version}" } * ", "
|
|
|
|
end
|
|
|
|
|
2016-09-15 16:01:18 +01:00
|
|
|
if formulae_to_install.empty?
|
2016-09-10 10:24:57 +01:00
|
|
|
oh1 "No packages to upgrade"
|
|
|
|
else
|
2019-07-28 14:50:59 +01:00
|
|
|
verb = args.dry_run? ? "Would upgrade" : "Upgrading"
|
|
|
|
oh1 "#{verb} #{formulae_to_install.count} outdated #{"package".pluralize(formulae_to_install.count)}:"
|
2018-03-30 15:00:45 +01:00
|
|
|
formulae_upgrades = formulae_to_install.map do |f|
|
|
|
|
if f.optlinked?
|
|
|
|
"#{f.full_specified_name} #{Keg.new(f.opt_prefix).version} -> #{f.pkg_version}"
|
|
|
|
else
|
|
|
|
"#{f.full_specified_name} #{f.pkg_version}"
|
|
|
|
end
|
|
|
|
end
|
2019-09-09 12:03:19 +02:00
|
|
|
puts formulae_upgrades.join("\n")
|
2014-01-25 06:30:46 +01:00
|
|
|
end
|
2013-05-18 22:09:15 -05:00
|
|
|
|
2020-07-25 03:48:33 +02:00
|
|
|
upgrade_formulae(formulae_to_install, args: args)
|
2018-09-12 19:28:02 +00:00
|
|
|
|
2020-07-25 03:48:33 +02:00
|
|
|
check_installed_dependents(args: args)
|
2018-09-12 19:28:02 +00:00
|
|
|
|
2020-07-25 21:33:48 +02:00
|
|
|
Homebrew.messages.display_messages(display_times: args.display_times?)
|
2018-09-12 19:28:02 +00:00
|
|
|
end
|
2020-07-06 12:49:20 -04:00
|
|
|
|
|
|
|
def upgrade_outdated_casks(casks)
|
|
|
|
cask_upgrade = Cask::Cmd::Upgrade.new(casks)
|
|
|
|
cask_upgrade.force = args.force?
|
|
|
|
cask_upgrade.dry_run = args.dry_run?
|
|
|
|
cask_upgrade.greedy = args.greedy?
|
|
|
|
cask_upgrade.run
|
|
|
|
end
|
2011-08-23 23:30:52 +01:00
|
|
|
end
|