2020-11-25 17:03:23 +01:00
|
|
|
# typed: true
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2018-11-11 18:35:55 +05:30
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2020-10-20 12:03:48 +02:00
|
|
|
extend T::Sig
|
|
|
|
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2020-10-20 12:03:48 +02:00
|
|
|
sig { returns(CLI::Parser) }
|
2018-11-11 18:35:55 +05:30
|
|
|
def untap_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
2021-01-15 13:04:00 +01:00
|
|
|
`untap` <tap> [<tap> ...]
|
2018-11-11 18:35:55 +05:30
|
|
|
|
2019-08-19 22:44:50 -04:00
|
|
|
Remove a tapped formula repository.
|
2018-11-11 18:35:55 +05:30
|
|
|
EOS
|
2020-07-30 18:40:10 +02:00
|
|
|
|
2021-01-10 14:26:40 -05:00
|
|
|
named_args :tap, min: 1
|
2018-11-11 18:35:55 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-02 20:28:54 +00:00
|
|
|
def untap
|
2020-07-30 18:40:10 +02:00
|
|
|
args = untap_args.parse
|
2018-11-11 18:35:55 +05:30
|
|
|
|
2021-01-10 14:26:40 -05:00
|
|
|
args.named.to_installed_taps.each do |tap|
|
2019-12-13 15:39:55 -05:00
|
|
|
odie "Untapping #{tap} is not allowed" if tap.core_tap?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2020-12-04 21:19:48 +01:00
|
|
|
installed_tap_formulae = Formula.installed.select { |formula| formula.tap == tap }
|
|
|
|
installed_tap_casks = Cask::Caskroom.casks.select { |cask| cask.tap == tap }
|
|
|
|
|
|
|
|
if installed_tap_formulae.present? || installed_tap_casks.present?
|
|
|
|
installed_names = (installed_tap_formulae + installed_tap_casks.map(&:token)).join("\n")
|
|
|
|
if args.force? || Homebrew::EnvConfig.developer?
|
|
|
|
opoo <<~EOS
|
|
|
|
Untapping #{tap} even though it contains the following installed formulae or casks:
|
|
|
|
#{installed_names}
|
|
|
|
EOS
|
|
|
|
else
|
|
|
|
odie <<~EOS
|
|
|
|
Refusing to untap #{tap} because it contains the following installed formulae or casks:
|
|
|
|
#{installed_names}
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-11-07 16:25:34 +08:00
|
|
|
tap.uninstall
|
2015-02-01 12:11:54 -05:00
|
|
|
end
|
2012-03-18 00:40:41 +00:00
|
|
|
end
|
2012-03-02 20:28:54 +00:00
|
|
|
end
|