| 
									
										
										
										
											2019-04-19 15:38:03 +09:00
										 |  |  | # frozen_string_literal: true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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" | 
					
						
							| 
									
										
										
										
											2020-07-25 21:33:48 +02:00
										 |  |  | require "install" | 
					
						
							| 
									
										
										
										
											2018-09-12 19:28:02 +00:00
										 |  |  | require "reinstall" | 
					
						
							| 
									
										
										
										
											2019-04-17 18:25:08 +09:00
										 |  |  | require "cli/parser" | 
					
						
							| 
									
										
										
										
											2019-01-03 16:23:44 +00:00
										 |  |  | require "cleanup" | 
					
						
							| 
									
										
										
										
											2020-06-30 13:22:21 -04:00
										 |  |  | require "cask/cmd" | 
					
						
							|  |  |  | require "cask/utils" | 
					
						
							|  |  |  | require "cask/macos" | 
					
						
							| 
									
										
										
										
											2020-07-02 12:53:52 +01:00
										 |  |  | require "upgrade" | 
					
						
							| 
									
										
										
										
											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-08-20 00:04:14 -04:00
										 |  |  |         Uninstall and then install <formula> using the same options it was originally | 
					
						
							|  |  |  |         installed with, plus any appended brew formula options. | 
					
						
							| 
									
										
										
										
											2019-02-03 09:34:00 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  |         reinstalled formulae or, every 30 days, for all formulae. | 
					
						
							| 
									
										
										
										
											2018-11-07 22:17:36 +05:30
										 |  |  |       EOS | 
					
						
							| 
									
										
										
										
											2020-07-30 18:40:10 +02:00
										 |  |  |       switch "-d", "--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." | 
					
						
							| 
									
										
										
										
											2018-11-24 15:36:59 +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-04 15:48:36 +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: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." | 
					
						
							| 
									
										
										
										
											2020-07-30 18:40:10 +02:00
										 |  |  |       switch "-v", "--verbose", | 
					
						
							| 
									
										
										
										
											2019-04-30 08:44:35 +01:00
										 |  |  |              description: "Print the verification and postinstall steps." | 
					
						
							| 
									
										
										
										
											2018-11-07 22:17:36 +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-01-29 19:39:41 +00:00
										 |  |  |       conflicts "--build-from-source", "--force-bottle" | 
					
						
							| 
									
										
										
										
											2019-01-29 19:25:13 +00:00
										 |  |  |       formula_options | 
					
						
							| 
									
										
										
										
											2020-03-04 17:28:15 +00:00
										 |  |  |       min_named :formula | 
					
						
							| 
									
										
										
										
											2018-11-07 22:17:36 +05:30
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-17 13:23:41 +00:00
										 |  |  |   def reinstall | 
					
						
							| 
									
										
										
										
											2020-07-25 03:48:33 +02:00
										 |  |  |     args = reinstall_args.parse | 
					
						
							| 
									
										
										
										
											2018-11-07 22:17:36 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-28 12:55:46 +02:00
										 |  |  |     FormulaInstaller.prevent_build_flags(args) | 
					
						
							| 
									
										
										
										
											2015-06-29 14:09:57 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-27 11:37:07 +02:00
										 |  |  |     Install.perform_preinstall_checks | 
					
						
							| 
									
										
										
										
											2018-09-06 18:38:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-19 10:34:48 -04:00
										 |  |  |     resolved_formulae, casks = args.named.to_resolved_formulae_to_casks | 
					
						
							| 
									
										
										
										
											2020-06-24 15:03:35 -04:00
										 |  |  |     resolved_formulae.each do |f| | 
					
						
							| 
									
										
										
										
											2016-09-05 22:40:08 +03:00
										 |  |  |       if f.pinned? | 
					
						
							|  |  |  |         onoe "#{f.full_name} is pinned. You must unpin it to reinstall." | 
					
						
							|  |  |  |         next | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2020-07-25 21:33:48 +02:00
										 |  |  |       Migrator.migrate_if_needed(f, force: args.force?) | 
					
						
							| 
									
										
										
										
											2020-07-25 03:48:33 +02:00
										 |  |  |       reinstall_formula(f, args: args) | 
					
						
							| 
									
										
										
										
											2019-01-03 16:23:44 +00:00
										 |  |  |       Cleanup.install_formula_clean!(f) | 
					
						
							| 
									
										
										
										
											2016-09-05 22:40:08 +03:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2020-07-02 12:53:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-24 00:37:22 +02:00
										 |  |  |     Upgrade.check_installed_dependents(args: args) | 
					
						
							| 
									
										
										
										
											2020-07-02 12:53:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-25 21:33:48 +02:00
										 |  |  |     Homebrew.messages.display_messages(display_times: args.display_times?) | 
					
						
							| 
									
										
										
										
											2020-06-24 15:03:35 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-03 10:33:38 -04:00
										 |  |  |     return if casks.blank? | 
					
						
							| 
									
										
										
										
											2020-06-30 12:21:21 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-05 10:28:58 -04:00
										 |  |  |     Cask::Cmd::Reinstall.reinstall_casks( | 
					
						
							|  |  |  |       *casks, | 
					
						
							| 
									
										
										
										
											2020-08-01 02:30:46 +02:00
										 |  |  |       binaries:       EnvConfig.cask_opts_binaries?, | 
					
						
							| 
									
										
										
										
											2020-08-05 10:28:58 -04:00
										 |  |  |       verbose:        args.verbose?, | 
					
						
							|  |  |  |       force:          args.force?, | 
					
						
							| 
									
										
										
										
											2020-08-01 02:30:46 +02:00
										 |  |  |       require_sha:    EnvConfig.cask_opts_require_sha?, | 
					
						
							| 
									
										
										
										
											2020-08-05 10:28:58 -04:00
										 |  |  |       skip_cask_deps: args.skip_cask_deps?, | 
					
						
							| 
									
										
										
										
											2020-08-01 02:30:46 +02:00
										 |  |  |       quarantine:     EnvConfig.cask_opts_quarantine?, | 
					
						
							| 
									
										
										
										
											2020-08-05 10:28:58 -04:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2014-03-15 10:40:18 -05:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2013-02-17 13:23:41 +00:00
										 |  |  | end |