brew/Library/Homebrew/cmd/migrate.rb
2018-11-05 12:46:57 +05:30

48 lines
1.2 KiB
Ruby

#: * `migrate` [`--force`] <formulae>:
#: Migrate renamed packages to new name, where <formulae> are old names of
#: packages.
#:
#: If `--force` (or `-f`) is passed, then treat installed <formulae> and passed <formulae>
#: like if they are from same taps and migrate them anyway.
require "migrator"
require "cli_parser"
module Homebrew
module_function
def migrate_args
Homebrew::CLI::Parser.new do
usage_banner <<~EOS
`migrate` [<options>] <formulae>
Migrate renamed packages to new name, where <formulae> are old names of
packages.
EOS
switch :force,
description: "Treat installed <formulae> and passed <formulae> like if they are from "\
"same taps and migrate them anyway."
switch :verbose
switch :debug
end
end
def migrate
migrate_args.parse
raise FormulaUnspecifiedError if ARGV.named.empty?
ARGV.resolved_formulae.each do |f|
if f.oldname
unless (rack = HOMEBREW_CELLAR/f.oldname).exist? && !rack.subdirs.empty?
raise NoSuchKegError, f.oldname
end
raise "#{rack} is a symlink" if rack.symlink?
end
migrator = Migrator.new(f)
migrator.migrate
end
end
end