2019-01-29 19:25:13 +00:00
|
|
|
#: * `reinstall` [`--debug`] [`--build-from-source`|`--force-bottle`] [`--keep-tmp`] [`--force`] [`--verbose`] [`--display-times`] <formula>:
|
|
|
|
#: Uninstall and then install <formula> (with existing and any appended install options).
|
|
|
|
#:
|
|
|
|
#: If `--debug` (or `-d`) is passed and brewing fails, open an interactive debugging
|
|
|
|
#: session with access to IRB or a shell inside the temporary build directory.
|
|
|
|
#:
|
|
|
|
#: If `--build-from-source` (or `-s`) is passed, compile the specified <formula> from
|
|
|
|
#: source even if a bottle is provided. Dependencies will still be installed
|
|
|
|
#: from bottles if they are available.
|
|
|
|
#:
|
|
|
|
#: If `--force-bottle` is passed, 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.
|
|
|
|
#:
|
|
|
|
#: If `--keep-tmp` is passed, the temporary files created during installation
|
|
|
|
#: are not deleted.
|
|
|
|
#:
|
|
|
|
#: If `--force` (or `-f`) is passed, install without checking for previously
|
|
|
|
#: installed keg-only or non-migrated versions
|
|
|
|
#:
|
|
|
|
#: If `--verbose` (or `-v`) is passed, print the verification and postinstall steps.
|
2018-06-20 00:54:14 -04:00
|
|
|
#:
|
|
|
|
#: If `--display-times` is passed, install times for each formula are printed
|
|
|
|
#: at the end of the run.
|
2019-01-29 19:25:13 +00:00
|
|
|
#:
|
|
|
|
#: Installation options specific to <formula> may be appended to the command,
|
|
|
|
#: and can be listed with `brew options` <formula>.
|
2016-04-08 16:28:43 +02:00
|
|
|
|
2014-10-31 20:10:08 -05:00
|
|
|
require "formula_installer"
|
2016-07-29 20:31:32 -06:00
|
|
|
require "development_tools"
|
2018-06-20 02:10:54 -04:00
|
|
|
require "messages"
|
2018-09-12 19:28:02 +00:00
|
|
|
require "reinstall"
|
2018-11-07 22:17:36 +05:30
|
|
|
require "cli_parser"
|
2019-01-03 16:23:44 +00:00
|
|
|
require "cleanup"
|
2013-02-17 13:23:41 +00:00
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2018-11-07 22:17:36 +05:30
|
|
|
def reinstall_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
2019-01-29 19:25:13 +00:00
|
|
|
`reinstall` [<options>] <formula>
|
2018-11-07 22:17:36 +05:30
|
|
|
|
2019-01-29 19:25:13 +00:00
|
|
|
Uninstall and then install <formula> (with existing and any appended install options).
|
2018-11-07 22:17:36 +05:30
|
|
|
EOS
|
2019-01-29 19:25:13 +00:00
|
|
|
switch :debug,
|
|
|
|
description: "If brewing fails, open an interactive debugging session with access to IRB "\
|
|
|
|
"or a shell inside the temporary build directory"
|
2018-11-24 15:36:59 +00:00
|
|
|
switch "-s", "--build-from-source",
|
2019-01-29 19:25:13 +00:00
|
|
|
description: "Compile <formula> from source even if a bottle is available."
|
|
|
|
switch "--force-bottle",
|
|
|
|
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."
|
|
|
|
switch "--keep-tmp",
|
|
|
|
description: "Dont delete the temporary files created during installation."
|
|
|
|
switch :force,
|
|
|
|
description: "Install without checking for previously installed keg-only or "\
|
|
|
|
"non-migrated versions."
|
|
|
|
switch :verbose,
|
|
|
|
description: "Print the verification and postinstall steps."
|
2018-11-07 22:17:36 +05:30
|
|
|
switch "--display-times",
|
|
|
|
description: "Print install times for each formula at the end of the run."
|
2019-01-29 19:39:41 +00:00
|
|
|
conflicts "--build-from-source", "--force-bottle"
|
2019-01-29 19:25:13 +00:00
|
|
|
formula_options
|
2018-11-07 22:17:36 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-17 13:23:41 +00:00
|
|
|
def reinstall
|
2018-11-07 22:17:36 +05:30
|
|
|
reinstall_args.parse
|
|
|
|
|
2016-07-06 11:07:24 +01:00
|
|
|
FormulaInstaller.prevent_build_flags unless DevelopmentTools.installed?
|
2015-06-29 14:09:57 -04:00
|
|
|
|
2018-09-06 18:38:43 +01:00
|
|
|
Install.perform_preinstall_checks
|
|
|
|
|
2016-09-05 22:40:08 +03:00
|
|
|
ARGV.resolved_formulae.each do |f|
|
|
|
|
if f.pinned?
|
|
|
|
onoe "#{f.full_name} is pinned. You must unpin it to reinstall."
|
|
|
|
next
|
|
|
|
end
|
2017-03-29 11:25:27 +01:00
|
|
|
Migrator.migrate_if_needed(f)
|
2016-09-05 22:40:08 +03:00
|
|
|
reinstall_formula(f)
|
2019-01-03 16:23:44 +00:00
|
|
|
Cleanup.install_formula_clean!(f)
|
2016-09-05 22:40:08 +03:00
|
|
|
end
|
2018-06-20 02:10:54 -04:00
|
|
|
Homebrew.messages.display_messages
|
2014-03-15 10:40:18 -05:00
|
|
|
end
|
2013-02-17 13:23:41 +00:00
|
|
|
end
|