2016-09-08 09:05:00 +01:00
|
|
|
#: @hide_from_man_page
|
2018-02-01 16:06:17 -05:00
|
|
|
#: * `update_report` [`--preinstall`]:
|
2016-09-08 09:05:00 +01:00
|
|
|
#: The Ruby implementation of `brew update`. Never called manually.
|
|
|
|
|
2016-01-10 20:28:52 +00:00
|
|
|
require "formula_versions"
|
|
|
|
require "migrator"
|
|
|
|
require "formulary"
|
|
|
|
require "descriptions"
|
2016-06-01 08:46:33 +01:00
|
|
|
require "cleanup"
|
2018-08-25 02:44:46 +02:00
|
|
|
require "update_migrator"
|
2016-01-10 20:28:52 +00:00
|
|
|
|
|
|
|
module Homebrew
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2016-04-11 09:31:50 +01:00
|
|
|
def update_preinstall_header
|
2018-03-07 16:14:55 +00:00
|
|
|
@update_preinstall_header ||= begin
|
2016-04-11 09:31:50 +01:00
|
|
|
ohai "Auto-updated Homebrew!" if ARGV.include?("--preinstall")
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-10 20:28:52 +00:00
|
|
|
def update_report
|
2016-04-25 18:05:30 -05:00
|
|
|
HOMEBREW_REPOSITORY.cd do
|
2018-08-14 13:19:37 +01:00
|
|
|
analytics_message_displayed =
|
2016-04-25 18:51:00 -05:00
|
|
|
Utils.popen_read("git", "config", "--local", "--get", "homebrew.analyticsmessage").chuzzle
|
2018-08-18 08:26:44 +01:00
|
|
|
cask_analytics_message_displayed =
|
2018-08-15 14:23:31 -07:00
|
|
|
Utils.popen_read("git", "config", "--local", "--get", "homebrew.caskanalyticsmessage").chuzzle
|
2018-08-14 13:19:37 +01:00
|
|
|
analytics_disabled =
|
2016-04-25 18:51:00 -05:00
|
|
|
Utils.popen_read("git", "config", "--local", "--get", "homebrew.analyticsdisabled").chuzzle
|
2018-08-14 13:19:37 +01:00
|
|
|
if analytics_message_displayed != "true" &&
|
2018-08-18 08:26:44 +01:00
|
|
|
cask_analytics_message_displayed != "true" &&
|
2018-08-16 08:56:46 +02:00
|
|
|
analytics_disabled != "true" &&
|
|
|
|
!ENV["HOMEBREW_NO_ANALYTICS"] &&
|
|
|
|
!ENV["HOMEBREW_NO_ANALYTICS_MESSAGE_OUTPUT"]
|
2018-08-14 10:39:23 -07:00
|
|
|
|
2016-04-26 04:28:38 -04:00
|
|
|
ENV["HOMEBREW_NO_ANALYTICS_THIS_RUN"] = "1"
|
2016-11-26 12:56:02 +00:00
|
|
|
# Use the shell's audible bell.
|
|
|
|
print "\a"
|
|
|
|
|
|
|
|
# Use an extra newline and bold to avoid this being missed.
|
2018-08-18 08:26:44 +01:00
|
|
|
ohai "Homebrew has enabled anonymous aggregate formulae and cask analytics."
|
2017-10-15 02:28:32 +02:00
|
|
|
puts <<~EOS
|
2016-11-26 13:58:41 +00:00
|
|
|
#{Tty.bold}Read the analytics documentation (and how to opt-out) here:
|
2018-02-22 19:46:58 +00:00
|
|
|
#{Formatter.url("https://docs.brew.sh/Analytics")}#{Tty.reset}
|
2016-11-26 12:56:02 +00:00
|
|
|
|
|
|
|
EOS
|
2016-04-25 18:05:30 -05:00
|
|
|
|
|
|
|
# Consider the message possibly missed if not a TTY.
|
|
|
|
if $stdout.tty?
|
2016-04-25 18:51:00 -05:00
|
|
|
safe_system "git", "config", "--local", "--replace-all", "homebrew.analyticsmessage", "true"
|
2018-08-15 14:23:31 -07:00
|
|
|
safe_system "git", "config", "--local", "--replace-all", "homebrew.caskanalyticsmessage", "true"
|
2016-04-25 18:05:30 -05:00
|
|
|
end
|
|
|
|
end
|
2018-08-14 13:19:37 +01:00
|
|
|
|
|
|
|
donation_message_displayed =
|
|
|
|
Utils.popen_read("git", "config", "--local", "--get", "homebrew.donationmessage").chuzzle
|
|
|
|
if donation_message_displayed != "true"
|
|
|
|
ohai "Homebrew is run entirely by unpaid volunteers. Please consider donating:"
|
|
|
|
puts " #{Formatter.url("https://github.com/Homebrew/brew#donations")}\n"
|
|
|
|
|
|
|
|
# Consider the message possibly missed if not a TTY.
|
|
|
|
if $stdout.tty?
|
|
|
|
safe_system "git", "config", "--local", "--replace-all", "homebrew.donationmessage", "true"
|
|
|
|
end
|
|
|
|
end
|
2016-04-25 18:05:30 -05:00
|
|
|
end
|
|
|
|
|
2016-02-26 17:39:49 +08:00
|
|
|
install_core_tap_if_necessary
|
2016-01-10 20:28:52 +00:00
|
|
|
|
2016-02-25 16:41:34 +08:00
|
|
|
hub = ReporterHub.new
|
2016-03-06 14:55:37 +08:00
|
|
|
updated = false
|
2016-02-25 16:41:34 +08:00
|
|
|
|
2016-03-06 14:55:37 +08:00
|
|
|
initial_revision = ENV["HOMEBREW_UPDATE_BEFORE"].to_s
|
|
|
|
current_revision = ENV["HOMEBREW_UPDATE_AFTER"].to_s
|
|
|
|
if initial_revision.empty? || current_revision.empty?
|
2016-02-25 16:41:34 +08:00
|
|
|
odie "update-report should not be called directly!"
|
|
|
|
end
|
|
|
|
|
2016-03-06 14:55:37 +08:00
|
|
|
if initial_revision != current_revision
|
2016-04-11 09:31:50 +01:00
|
|
|
update_preinstall_header
|
2016-03-06 14:55:37 +08:00
|
|
|
puts "Updated Homebrew from #{shorten_revision(initial_revision)} to #{shorten_revision(current_revision)}."
|
|
|
|
updated = true
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
2018-08-10 22:48:12 +02:00
|
|
|
out, _, status = system_command("git",
|
|
|
|
args: ["describe", "--tags", "--abbrev=0", initial_revision],
|
|
|
|
chdir: HOMEBREW_REPOSITORY,
|
|
|
|
print_stderr: false)
|
|
|
|
|
|
|
|
initial_version = Version.new(out) if status.success?
|
2018-08-03 22:49:22 +02:00
|
|
|
|
2016-01-10 20:28:52 +00:00
|
|
|
updated_taps = []
|
|
|
|
Tap.each do |tap|
|
2016-01-20 19:42:55 +08:00
|
|
|
next unless tap.git?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2016-02-25 16:41:34 +08:00
|
|
|
begin
|
|
|
|
reporter = Reporter.new(tap)
|
|
|
|
rescue Reporter::ReporterRevisionUnsetError => e
|
2016-08-05 15:53:24 +01:00
|
|
|
onoe "#{e.message}\n#{e.backtrace.join "\n"}" if ARGV.homebrew_developer?
|
2016-02-25 16:41:34 +08:00
|
|
|
next
|
|
|
|
end
|
|
|
|
if reporter.updated?
|
|
|
|
updated_taps << tap.name
|
|
|
|
hub.add(reporter)
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
end
|
2016-03-06 14:55:37 +08:00
|
|
|
|
2016-01-10 20:28:52 +00:00
|
|
|
unless updated_taps.empty?
|
2016-04-11 09:31:50 +01:00
|
|
|
update_preinstall_header
|
2017-03-11 11:33:12 +01:00
|
|
|
puts "Updated #{Formatter.pluralize(updated_taps.size, "tap")} " \
|
2016-01-10 20:28:52 +00:00
|
|
|
"(#{updated_taps.join(", ")})."
|
2016-03-06 14:55:37 +08:00
|
|
|
updated = true
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
2016-01-26 09:03:28 +00:00
|
|
|
|
2018-08-25 02:44:46 +02:00
|
|
|
UpdateMigrator.migrate_legacy_cache_if_necessary
|
|
|
|
UpdateMigrator.migrate_cache_entries_to_double_dashes(initial_version)
|
|
|
|
UpdateMigrator.migrate_cache_entries_to_symlinks(initial_version)
|
|
|
|
UpdateMigrator.migrate_legacy_keg_symlinks_if_necessary
|
2016-06-01 08:46:33 +01:00
|
|
|
|
2016-03-06 14:55:37 +08:00
|
|
|
if !updated
|
2016-05-03 14:24:41 +01:00
|
|
|
if !ARGV.include?("--preinstall") && !ENV["HOMEBREW_UPDATE_FAILED"]
|
|
|
|
puts "Already up-to-date."
|
|
|
|
end
|
2016-02-25 16:41:34 +08:00
|
|
|
else
|
2016-09-03 19:36:34 +01:00
|
|
|
if hub.empty?
|
|
|
|
puts "No changes to formulae."
|
|
|
|
else
|
|
|
|
hub.dump
|
|
|
|
hub.reporters.each(&:migrate_tap_migration)
|
|
|
|
hub.reporters.each(&:migrate_formula_rename)
|
|
|
|
Descriptions.update_cache(hub)
|
|
|
|
end
|
|
|
|
puts if ARGV.include?("--preinstall")
|
2016-01-26 09:03:28 +00:00
|
|
|
end
|
2016-01-10 20:28:52 +00:00
|
|
|
|
2016-09-30 18:22:53 -05:00
|
|
|
link_completions_manpages_and_docs
|
|
|
|
Tap.each(&:link_completions_and_manpages)
|
2016-05-03 14:24:41 +01:00
|
|
|
|
|
|
|
Homebrew.failed = true if ENV["HOMEBREW_UPDATE_FAILED"]
|
2016-09-17 14:24:57 +01:00
|
|
|
|
2016-09-20 08:02:52 +01:00
|
|
|
# This should always be the last thing to run (but skip on auto-update).
|
2016-09-20 09:07:02 +01:00
|
|
|
if !ARGV.include?("--preinstall") ||
|
|
|
|
ENV["HOMEBREW_ENABLE_AUTO_UPDATE_MIGRATION"]
|
2018-08-25 02:44:46 +02:00
|
|
|
UpdateMigrator.migrate_legacy_repository_if_necessary
|
2016-09-20 08:02:52 +01:00
|
|
|
end
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def shorten_revision(revision)
|
2016-02-25 16:41:34 +08:00
|
|
|
Utils.popen_read("git", "-C", HOMEBREW_REPOSITORY, "rev-parse", "--short", revision).chomp
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
2016-02-26 17:39:49 +08:00
|
|
|
|
|
|
|
def install_core_tap_if_necessary
|
2016-10-02 17:16:35 +01:00
|
|
|
return if ENV["HOMEBREW_UPDATE_TEST"]
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2016-02-26 17:39:49 +08:00
|
|
|
core_tap = CoreTap.instance
|
|
|
|
return if core_tap.installed?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2017-09-07 12:09:52 +01:00
|
|
|
CoreTap.ensure_installed!
|
2016-02-26 17:39:49 +08:00
|
|
|
revision = core_tap.git_head
|
|
|
|
ENV["HOMEBREW_UPDATE_BEFORE_HOMEBREW_HOMEBREW_CORE"] = revision
|
|
|
|
ENV["HOMEBREW_UPDATE_AFTER_HOMEBREW_HOMEBREW_CORE"] = revision
|
|
|
|
end
|
2016-06-01 08:46:33 +01:00
|
|
|
|
2016-09-30 18:22:53 -05:00
|
|
|
def link_completions_manpages_and_docs(repository = HOMEBREW_REPOSITORY)
|
2016-09-06 09:04:51 +01:00
|
|
|
command = "brew update"
|
2016-09-30 18:22:53 -05:00
|
|
|
Utils::Link.link_completions(repository, command)
|
|
|
|
Utils::Link.link_manpages(repository, command)
|
|
|
|
Utils::Link.link_docs(repository, command)
|
2016-09-20 08:03:06 +01:00
|
|
|
rescue => e
|
2017-10-15 02:28:32 +02:00
|
|
|
ofail <<~EOS
|
2016-09-20 08:03:06 +01:00
|
|
|
Failed to link all completions, docs and manpages:
|
|
|
|
#{e}
|
|
|
|
EOS
|
2016-08-22 11:07:15 +01:00
|
|
|
end
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
class Reporter
|
2016-02-25 15:34:11 +08:00
|
|
|
class ReporterRevisionUnsetError < RuntimeError
|
|
|
|
def initialize(var_name)
|
|
|
|
super "#{var_name} is unset!"
|
2016-01-20 19:41:42 +08:00
|
|
|
end
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
2016-02-25 15:34:11 +08:00
|
|
|
attr_reader :tap, :initial_revision, :current_revision
|
|
|
|
|
|
|
|
def initialize(tap)
|
|
|
|
@tap = tap
|
2016-01-10 20:28:52 +00:00
|
|
|
|
2018-05-25 16:21:37 +02:00
|
|
|
initial_revision_var = "HOMEBREW_UPDATE_BEFORE#{tap.repo_var}"
|
2016-01-10 20:28:52 +00:00
|
|
|
@initial_revision = ENV[initial_revision_var].to_s
|
2016-02-25 15:34:11 +08:00
|
|
|
raise ReporterRevisionUnsetError, initial_revision_var if @initial_revision.empty?
|
2016-01-10 20:28:52 +00:00
|
|
|
|
2018-05-25 16:21:37 +02:00
|
|
|
current_revision_var = "HOMEBREW_UPDATE_AFTER#{tap.repo_var}"
|
2016-01-10 20:28:52 +00:00
|
|
|
@current_revision = ENV[current_revision_var].to_s
|
2016-02-25 15:34:11 +08:00
|
|
|
raise ReporterRevisionUnsetError, current_revision_var if @current_revision.empty?
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def report
|
2016-02-25 15:34:11 +08:00
|
|
|
return @report if @report
|
|
|
|
|
|
|
|
@report = Hash.new { |h, k| h[k] = [] }
|
|
|
|
return @report unless updated?
|
|
|
|
|
|
|
|
diff.each_line do |line|
|
|
|
|
status, *paths = line.split
|
|
|
|
src = Pathname.new paths.first
|
|
|
|
dst = Pathname.new paths.last
|
|
|
|
|
|
|
|
next unless dst.extname == ".rb"
|
2016-08-05 16:00:33 +01:00
|
|
|
|
|
|
|
if paths.any? { |p| tap.cask_file?(p) }
|
|
|
|
# Currently only need to handle Cask deletion/migration.
|
|
|
|
if status == "D"
|
|
|
|
# Have a dedicated report array for deleted casks.
|
|
|
|
@report[:DC] << tap.formula_file_to_name(src)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
next unless paths.any? { |p| tap.formula_file?(p) }
|
2016-02-25 15:34:11 +08:00
|
|
|
|
|
|
|
case status
|
|
|
|
when "A", "D"
|
2017-03-20 15:28:24 +02:00
|
|
|
full_name = tap.formula_file_to_name(src)
|
|
|
|
name = full_name.split("/").last
|
|
|
|
new_tap = tap.tap_migrations[name]
|
|
|
|
@report[status.to_sym] << full_name unless new_tap
|
2016-02-25 15:34:11 +08:00
|
|
|
when "M"
|
|
|
|
begin
|
|
|
|
formula = Formulary.factory(tap.path/src)
|
|
|
|
new_version = formula.pkg_version
|
|
|
|
old_version = FormulaVersions.new(formula).formula_at_revision(@initial_revision, &:pkg_version)
|
|
|
|
next if new_version == old_version
|
2017-10-07 00:31:28 +02:00
|
|
|
rescue Exception => e # rubocop:disable Lint/RescueException
|
2016-08-05 15:53:24 +01:00
|
|
|
onoe "#{e.message}\n#{e.backtrace.join "\n"}" if ARGV.homebrew_developer?
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
2016-02-25 15:34:11 +08:00
|
|
|
@report[:M] << tap.formula_file_to_name(src)
|
|
|
|
when /^R\d{0,3}/
|
2016-07-16 01:18:30 -04:00
|
|
|
src_full_name = tap.formula_file_to_name(src)
|
|
|
|
dst_full_name = tap.formula_file_to_name(dst)
|
|
|
|
# Don't report formulae that are moved within a tap but not renamed
|
|
|
|
next if src_full_name == dst_full_name
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2016-07-16 01:18:30 -04:00
|
|
|
@report[:D] << src_full_name
|
|
|
|
@report[:A] << dst_full_name
|
2016-02-25 15:34:11 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-02 17:24:52 +00:00
|
|
|
renamed_formulae = Set.new
|
2016-02-25 15:34:11 +08:00
|
|
|
@report[:D].each do |old_full_name|
|
|
|
|
old_name = old_full_name.split("/").last
|
|
|
|
new_name = tap.formula_renames[old_name]
|
|
|
|
next unless new_name
|
|
|
|
|
2016-03-07 18:04:25 +08:00
|
|
|
if tap.core_tap?
|
2016-02-25 15:34:11 +08:00
|
|
|
new_full_name = new_name
|
|
|
|
else
|
2016-02-25 17:27:50 +08:00
|
|
|
new_full_name = "#{tap}/#{new_name}"
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
2016-02-25 15:34:11 +08:00
|
|
|
|
|
|
|
renamed_formulae << [old_full_name, new_full_name] if @report[:A].include? new_full_name
|
|
|
|
end
|
|
|
|
|
2017-01-02 17:24:52 +00:00
|
|
|
@report[:A].each do |new_full_name|
|
|
|
|
new_name = new_full_name.split("/").last
|
|
|
|
old_name = tap.formula_renames.key(new_name)
|
|
|
|
next unless old_name
|
|
|
|
|
|
|
|
if tap.core_tap?
|
|
|
|
old_full_name = old_name
|
|
|
|
else
|
|
|
|
old_full_name = "#{tap}/#{old_name}"
|
|
|
|
end
|
|
|
|
|
|
|
|
renamed_formulae << [old_full_name, new_full_name]
|
|
|
|
end
|
|
|
|
|
2016-02-25 15:34:11 +08:00
|
|
|
unless renamed_formulae.empty?
|
|
|
|
@report[:A] -= renamed_formulae.map(&:last)
|
|
|
|
@report[:D] -= renamed_formulae.map(&:first)
|
2017-01-02 17:24:52 +00:00
|
|
|
@report[:R] = renamed_formulae.to_a
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
2016-02-25 15:34:11 +08:00
|
|
|
@report
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def updated?
|
2016-02-25 15:34:11 +08:00
|
|
|
initial_revision != current_revision
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
2016-02-25 15:34:11 +08:00
|
|
|
def migrate_tap_migration
|
2016-08-05 16:00:33 +01:00
|
|
|
(report[:D] + report[:DC]).each do |full_name|
|
2016-02-25 15:34:11 +08:00
|
|
|
name = full_name.split("/").last
|
2016-07-26 00:15:21 +03:00
|
|
|
new_tap_name = tap.tap_migrations[name]
|
|
|
|
next if new_tap_name.nil? # skip if not in tap_migrations list.
|
|
|
|
|
2016-12-18 13:18:46 -08:00
|
|
|
new_tap_user, new_tap_repo, new_tap_new_name = new_tap_name.split("/")
|
|
|
|
new_name = if new_tap_new_name
|
|
|
|
new_full_name = new_tap_new_name
|
|
|
|
new_tap_name = "#{new_tap_user}/#{new_tap_repo}"
|
|
|
|
new_tap_new_name
|
|
|
|
else
|
|
|
|
new_full_name = "#{new_tap_name}/#{name}"
|
|
|
|
name
|
|
|
|
end
|
|
|
|
|
2016-08-05 16:00:33 +01:00
|
|
|
# This means it is a Cask
|
|
|
|
if report[:DC].include? full_name
|
2016-12-18 13:18:46 -08:00
|
|
|
next unless (HOMEBREW_PREFIX/"Caskroom"/new_name).exist?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2016-07-26 00:15:21 +03:00
|
|
|
new_tap = Tap.fetch(new_tap_name)
|
|
|
|
new_tap.install unless new_tap.installed?
|
2017-10-15 02:28:32 +02:00
|
|
|
ohai "#{name} has been moved to Homebrew.", <<~EOS
|
2016-07-26 00:15:21 +03:00
|
|
|
To uninstall the cask run:
|
|
|
|
brew cask uninstall --force #{name}
|
|
|
|
EOS
|
2016-12-18 13:18:46 -08:00
|
|
|
next if (HOMEBREW_CELLAR/new_name.split("/").last).directory?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2016-12-18 13:18:46 -08:00
|
|
|
ohai "Installing #{new_name}..."
|
2016-07-26 00:15:21 +03:00
|
|
|
system HOMEBREW_BREW_FILE, "install", new_full_name
|
|
|
|
begin
|
|
|
|
unless Formulary.factory(new_full_name).keg_only?
|
2016-08-02 11:48:11 +01:00
|
|
|
system HOMEBREW_BREW_FILE, "link", new_full_name, "--overwrite"
|
2016-07-26 00:15:21 +03:00
|
|
|
end
|
2017-10-07 00:31:28 +02:00
|
|
|
rescue Exception => e # rubocop:disable Lint/RescueException
|
2016-08-05 15:53:24 +01:00
|
|
|
onoe "#{e.message}\n#{e.backtrace.join "\n"}" if ARGV.homebrew_developer?
|
2016-07-26 00:15:21 +03:00
|
|
|
end
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
2016-02-25 15:34:11 +08:00
|
|
|
next unless (dir = HOMEBREW_CELLAR/name).exist? # skip if formula is not installed.
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2016-02-25 15:34:11 +08:00
|
|
|
tabs = dir.subdirs.map { |d| Tab.for_keg(Keg.new(d)) }
|
|
|
|
next unless tabs.first.tap == tap # skip if installed formula is not from this tap.
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2016-02-25 15:34:11 +08:00
|
|
|
new_tap = Tap.fetch(new_tap_name)
|
2016-06-22 16:36:17 +04:00
|
|
|
# For formulae migrated to cask: Auto-install cask or provide install instructions.
|
2018-05-25 18:03:16 +02:00
|
|
|
if new_tap_name.start_with?("homebrew/cask")
|
2016-11-05 15:37:28 -04:00
|
|
|
if new_tap.installed? && (HOMEBREW_PREFIX/"Caskroom").directory?
|
2018-09-03 20:12:29 +01:00
|
|
|
ohai "#{name} has been moved to Homebrew Cask."
|
2017-02-17 12:34:24 -05:00
|
|
|
ohai "brew unlink #{name}"
|
|
|
|
system HOMEBREW_BREW_FILE, "unlink", name
|
2016-08-02 11:45:32 +01:00
|
|
|
ohai "brew prune"
|
2016-07-03 14:34:38 -05:00
|
|
|
system HOMEBREW_BREW_FILE, "prune"
|
2016-12-18 13:18:46 -08:00
|
|
|
ohai "brew cask install #{new_name}"
|
|
|
|
system HOMEBREW_BREW_FILE, "cask", "install", new_name
|
2017-10-15 02:28:32 +02:00
|
|
|
ohai <<~EOS
|
2018-09-03 20:12:29 +01:00
|
|
|
#{name} has been moved to Homebrew Cask.
|
2017-02-17 12:34:24 -05:00
|
|
|
The existing keg has been unlinked.
|
|
|
|
Please uninstall the formula when convenient by running:
|
|
|
|
brew uninstall --force #{name}
|
|
|
|
EOS
|
2016-06-22 16:36:17 +04:00
|
|
|
else
|
2018-09-03 20:12:29 +01:00
|
|
|
ohai "#{name} has been moved to Homebrew Cask.", <<~EOS
|
2016-06-22 16:36:17 +04:00
|
|
|
To uninstall the formula and install the cask run:
|
|
|
|
brew uninstall --force #{name}
|
2018-05-25 18:03:16 +02:00
|
|
|
brew tap #{new_tap_name}
|
2016-12-18 13:18:46 -08:00
|
|
|
brew cask install #{new_name}
|
2016-06-22 16:36:17 +04:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
else
|
|
|
|
new_tap.install unless new_tap.installed?
|
|
|
|
# update tap for each Tab
|
|
|
|
tabs.each { |tab| tab.tap = new_tap }
|
|
|
|
tabs.each(&:write)
|
|
|
|
end
|
2016-02-25 15:34:11 +08:00
|
|
|
end
|
|
|
|
end
|
2016-01-10 20:28:52 +00:00
|
|
|
|
2016-02-25 15:34:11 +08:00
|
|
|
def migrate_formula_rename
|
2017-03-29 11:22:59 +01:00
|
|
|
Formula.installed.each do |formula|
|
|
|
|
next unless Migrator.needs_migration?(formula)
|
2016-02-25 15:34:11 +08:00
|
|
|
|
2017-03-29 11:22:59 +01:00
|
|
|
oldname = formula.oldname
|
|
|
|
oldname_rack = HOMEBREW_CELLAR/oldname
|
|
|
|
|
|
|
|
if oldname_rack.subdirs.empty?
|
|
|
|
oldname_rack.rmdir_if_possible
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
new_name = tap.formula_renames[oldname]
|
2017-03-20 18:10:28 +02:00
|
|
|
next unless new_name
|
|
|
|
|
|
|
|
new_full_name = "#{tap}/#{new_name}"
|
|
|
|
|
2016-02-25 15:34:11 +08:00
|
|
|
begin
|
|
|
|
f = Formulary.factory(new_full_name)
|
2017-10-07 00:31:28 +02:00
|
|
|
rescue Exception => e # rubocop:disable Lint/RescueException
|
2016-08-05 15:53:24 +01:00
|
|
|
onoe "#{e.message}\n#{e.backtrace.join "\n"}" if ARGV.homebrew_developer?
|
2016-02-25 15:34:11 +08:00
|
|
|
next
|
|
|
|
end
|
|
|
|
|
2017-03-31 10:28:45 +01:00
|
|
|
Migrator.migrate_if_needed(f)
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-25 15:34:11 +08:00
|
|
|
private
|
|
|
|
|
2016-01-10 20:28:52 +00:00
|
|
|
def diff
|
|
|
|
Utils.popen_read(
|
2016-02-25 15:34:11 +08:00
|
|
|
"git", "-C", tap.path, "diff-tree", "-r", "--name-status", "--diff-filter=AMDR",
|
2016-01-10 20:28:52 +00:00
|
|
|
"-M85%", initial_revision, current_revision
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-25 15:43:02 +08:00
|
|
|
class ReporterHub
|
2017-06-26 07:30:28 +02:00
|
|
|
extend Forwardable
|
|
|
|
|
2016-02-25 15:43:02 +08:00
|
|
|
attr_reader :reporters
|
|
|
|
|
2016-01-10 20:28:52 +00:00
|
|
|
def initialize
|
|
|
|
@hash = {}
|
2016-02-25 15:43:02 +08:00
|
|
|
@reporters = []
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
2016-02-25 15:43:02 +08:00
|
|
|
def select_formula(key)
|
|
|
|
@hash.fetch(key, [])
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
2016-02-25 15:43:02 +08:00
|
|
|
def add(reporter)
|
|
|
|
@reporters << reporter
|
2016-09-10 10:24:57 +01:00
|
|
|
report = reporter.report.delete_if { |_k, v| v.empty? }
|
2016-02-25 15:43:02 +08:00
|
|
|
@hash.update(report) { |_key, oldval, newval| oldval.concat(newval) }
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
2017-06-26 07:30:28 +02:00
|
|
|
delegate :empty? => :@hash
|
2016-01-10 20:28:52 +00:00
|
|
|
|
|
|
|
def dump
|
|
|
|
# Key Legend: Added (A), Copied (C), Deleted (D), Modified (M), Renamed (R)
|
|
|
|
|
|
|
|
dump_formula_report :A, "New Formulae"
|
|
|
|
dump_formula_report :M, "Updated Formulae"
|
|
|
|
dump_formula_report :R, "Renamed Formulae"
|
|
|
|
dump_formula_report :D, "Deleted Formulae"
|
|
|
|
end
|
|
|
|
|
2016-02-25 15:43:02 +08:00
|
|
|
private
|
2016-01-10 20:28:52 +00:00
|
|
|
|
|
|
|
def dump_formula_report(key, title)
|
2016-02-25 15:43:02 +08:00
|
|
|
formulae = select_formula(key).sort.map do |name, new_name|
|
2016-01-10 20:28:52 +00:00
|
|
|
# Format list items of renamed formulae
|
2017-04-04 15:15:42 +01:00
|
|
|
case key
|
|
|
|
when :R
|
2016-02-25 15:43:02 +08:00
|
|
|
name = pretty_installed(name) if installed?(name)
|
|
|
|
new_name = pretty_installed(new_name) if installed?(new_name)
|
2016-01-10 20:28:52 +00:00
|
|
|
"#{name} -> #{new_name}"
|
2017-04-04 15:15:42 +01:00
|
|
|
when :A
|
|
|
|
name unless installed?(name)
|
2016-01-10 20:28:52 +00:00
|
|
|
else
|
|
|
|
installed?(name) ? pretty_installed(name) : name
|
|
|
|
end
|
2017-04-04 15:15:42 +01:00
|
|
|
end.compact
|
2016-01-10 20:28:52 +00:00
|
|
|
|
2016-09-23 22:02:23 +02:00
|
|
|
return if formulae.empty?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2016-09-23 22:02:23 +02:00
|
|
|
# Dump formula list.
|
|
|
|
ohai title
|
2017-10-14 04:22:22 +01:00
|
|
|
puts Formatter.columns(formulae.sort)
|
2016-01-10 20:28:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def installed?(formula)
|
|
|
|
(HOMEBREW_CELLAR/formula.split("/").last).directory?
|
|
|
|
end
|
|
|
|
end
|