2016-08-24 14:46:05 +01:00
|
|
|
unless ENV["HOMEBREW_BREW_FILE"]
|
|
|
|
raise "HOMEBREW_BREW_FILE was not exported! Please call bin/brew directly!"
|
|
|
|
end
|
|
|
|
|
2012-08-22 15:50:27 -04:00
|
|
|
std_trap = trap("INT") { exit! 130 } # no backtrace thanks
|
|
|
|
|
2016-08-18 14:35:39 +08:00
|
|
|
# check ruby version before requiring any modules.
|
2017-09-29 19:53:15 +01:00
|
|
|
RUBY_VERSION_SPLIT = RUBY_VERSION.split "."
|
|
|
|
RUBY_X = RUBY_VERSION_SPLIT[0].to_i
|
|
|
|
RUBY_Y = RUBY_VERSION_SPLIT[1].to_i
|
|
|
|
if RUBY_X < 2 || (RUBY_X == 2 && RUBY_Y < 3)
|
|
|
|
raise "Homebrew must be run under Ruby 2.3!"
|
|
|
|
end
|
2016-08-18 14:35:39 +08:00
|
|
|
|
2017-05-07 17:28:37 +01:00
|
|
|
require "pathname"
|
2017-05-07 17:28:39 +01:00
|
|
|
HOMEBREW_LIBRARY_PATH = Pathname.new(__FILE__).realpath.parent
|
2017-06-10 20:12:55 +03:00
|
|
|
require "English"
|
2017-07-07 15:14:59 +01:00
|
|
|
unless $LOAD_PATH.include?(HOMEBREW_LIBRARY_PATH.to_s)
|
|
|
|
$LOAD_PATH.unshift(HOMEBREW_LIBRARY_PATH.to_s)
|
|
|
|
end
|
2015-08-03 13:09:07 +01:00
|
|
|
require "global"
|
2017-04-27 10:44:44 +02:00
|
|
|
require "tap"
|
2009-08-10 16:48:30 +01:00
|
|
|
|
2015-12-08 09:56:20 +01:00
|
|
|
if ARGV == %w[--version] || ARGV == %w[-v]
|
2016-09-22 08:56:40 +01:00
|
|
|
puts "Homebrew #{HOMEBREW_VERSION}"
|
2016-10-03 16:12:19 +02:00
|
|
|
puts "Homebrew/homebrew-core #{CoreTap.instance.version_string}"
|
2009-10-15 14:54:11 +01:00
|
|
|
exit 0
|
|
|
|
end
|
|
|
|
|
2009-06-02 13:39:39 +01:00
|
|
|
begin
|
2012-08-22 15:50:27 -04:00
|
|
|
trap("INT", std_trap) # restore default CTRL-C handler
|
|
|
|
|
2014-06-25 09:45:01 +01:00
|
|
|
empty_argv = ARGV.empty?
|
2016-04-17 04:07:36 +02:00
|
|
|
help_flag_list = %w[-h --help --usage -?]
|
2017-10-18 08:30:26 -03:00
|
|
|
help_flag = !ENV["HOMEBREW_HELP"].nil?
|
2015-07-23 23:57:11 +02:00
|
|
|
internal_cmd = true
|
2014-06-25 09:45:01 +01:00
|
|
|
cmd = nil
|
|
|
|
|
|
|
|
ARGV.dup.each_with_index do |arg, i|
|
2016-09-22 20:12:28 +02:00
|
|
|
break if help_flag && cmd
|
|
|
|
|
2016-10-01 18:17:52 +03:00
|
|
|
if arg == "help" && !cmd
|
2016-04-17 04:07:36 +02:00
|
|
|
# Command-style help: `help <cmd>` is fine, but `<cmd> help` is not.
|
2014-06-25 09:45:01 +01:00
|
|
|
help_flag = true
|
2016-10-01 18:17:52 +03:00
|
|
|
elsif !cmd && !help_flag_list.include?(arg)
|
2014-06-25 09:45:01 +01:00
|
|
|
cmd = ARGV.delete_at(i)
|
2017-10-12 11:20:04 -03:00
|
|
|
elsif help_flag_list.include?(arg) && cmd
|
2017-10-12 00:11:11 -03:00
|
|
|
# cmd determined, and it needs help
|
|
|
|
help_flag = true
|
2014-06-25 09:45:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-27 10:44:44 +02:00
|
|
|
path = PATH.new(ENV["PATH"])
|
2017-06-02 18:44:39 +01:00
|
|
|
homebrew_path = PATH.new(ENV["HOMEBREW_PATH"])
|
2017-04-27 10:44:44 +02:00
|
|
|
|
2013-09-15 10:28:06 -07:00
|
|
|
# Add contributed commands to PATH before checking.
|
2017-06-02 18:44:39 +01:00
|
|
|
tap_cmds = Pathname.glob(Tap::TAP_DIRECTORY/"*/*/cmd")
|
|
|
|
path.append(tap_cmds)
|
|
|
|
homebrew_path.append(tap_cmds)
|
2014-05-02 12:59:37 -05:00
|
|
|
|
2014-09-24 21:35:07 -07:00
|
|
|
# Add SCM wrappers.
|
2017-04-27 10:44:44 +02:00
|
|
|
path.append(HOMEBREW_SHIMS_PATH/"scm")
|
2017-06-02 18:44:39 +01:00
|
|
|
homebrew_path.append(HOMEBREW_SHIMS_PATH/"scm")
|
2017-04-27 10:44:44 +02:00
|
|
|
|
|
|
|
ENV["PATH"] = path
|
2014-09-24 21:35:07 -07:00
|
|
|
|
2015-09-10 21:20:34 +08:00
|
|
|
if cmd
|
2017-06-01 16:06:51 +02:00
|
|
|
internal_cmd = require? HOMEBREW_LIBRARY_PATH/"cmd"/cmd
|
2015-09-10 21:20:34 +08:00
|
|
|
|
2016-09-05 21:32:25 +01:00
|
|
|
unless internal_cmd
|
2017-06-01 16:06:51 +02:00
|
|
|
internal_cmd = require? HOMEBREW_LIBRARY_PATH/"dev-cmd"/cmd
|
2016-09-05 21:32:25 +01:00
|
|
|
if internal_cmd && !ARGV.homebrew_developer?
|
2016-11-09 12:44:13 +00:00
|
|
|
system "git", "config", "--file=#{HOMEBREW_REPOSITORY}/.git/config",
|
|
|
|
"--replace-all", "homebrew.devcmdrun", "true"
|
2016-09-05 21:32:25 +01:00
|
|
|
ENV["HOMEBREW_DEV_CMD_RUN"] = "1"
|
|
|
|
end
|
2015-09-10 21:20:34 +08:00
|
|
|
end
|
|
|
|
end
|
2014-06-25 09:45:01 +01:00
|
|
|
|
|
|
|
# Usage instructions should be displayed if and only if one of:
|
2016-10-01 18:25:16 +01:00
|
|
|
# - a help flag is passed AND a command is matched
|
2014-06-26 09:27:22 +01:00
|
|
|
# - a help flag is passed AND there is no command specified
|
2014-06-25 09:45:01 +01:00
|
|
|
# - no arguments are passed
|
2016-04-17 03:45:10 +02:00
|
|
|
if empty_argv || help_flag
|
|
|
|
require "cmd/help"
|
2016-09-17 15:32:44 +01:00
|
|
|
Homebrew.help cmd, empty_argv: empty_argv
|
2016-04-19 07:24:21 +02:00
|
|
|
# `Homebrew.help` never returns, except for external/unknown commands.
|
2014-06-25 09:45:01 +01:00
|
|
|
end
|
|
|
|
|
2016-09-17 15:00:46 +01:00
|
|
|
# Migrate LinkedKegs/PinnedKegs if update didn't already do so
|
|
|
|
migrate_legacy_keg_symlinks_if_necessary
|
|
|
|
|
2016-04-21 16:36:34 +01:00
|
|
|
# Uninstall old brew-cask if it's still around; we just use the tap now.
|
|
|
|
if cmd == "cask" && (HOMEBREW_CELLAR/"brew-cask").exist?
|
|
|
|
system(HOMEBREW_BREW_FILE, "uninstall", "--force", "brew-cask")
|
|
|
|
end
|
|
|
|
|
2017-06-02 18:44:39 +01:00
|
|
|
# External commands expect a normal PATH
|
|
|
|
ENV["PATH"] = homebrew_path unless internal_cmd
|
|
|
|
|
2014-06-25 09:45:01 +01:00
|
|
|
if internal_cmd
|
2016-01-18 12:29:30 +08:00
|
|
|
Homebrew.send cmd.to_s.tr("-", "_").downcase
|
2013-02-17 13:30:58 +00:00
|
|
|
elsif which "brew-#{cmd}"
|
2016-01-21 16:19:46 +01:00
|
|
|
%w[CACHE LIBRARY_PATH].each do |e|
|
2014-05-02 12:59:38 -05:00
|
|
|
ENV["HOMEBREW_#{e}"] = Object.const_get("HOMEBREW_#{e}").to_s
|
2010-02-27 13:29:49 +00:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
exec "brew-#{cmd}", *ARGV
|
2014-05-04 09:14:37 -05:00
|
|
|
elsif (path = which("brew-#{cmd}.rb")) && require?(path)
|
2014-04-11 15:10:59 +01:00
|
|
|
exit Homebrew.failed? ? 1 : 0
|
2009-09-24 19:19:57 +01:00
|
|
|
else
|
2015-11-07 16:52:01 +08:00
|
|
|
require "tap"
|
2016-07-04 17:05:37 +01:00
|
|
|
possible_tap = OFFICIAL_CMD_TAPS.find { |_, cmds| cmds.include?(cmd) }
|
|
|
|
possible_tap = Tap.fetch(possible_tap.first) if possible_tap
|
2015-11-07 16:52:01 +08:00
|
|
|
|
2017-09-24 20:12:58 +01:00
|
|
|
odie "Unknown command: #{cmd}" if !possible_tap || possible_tap.installed?
|
|
|
|
|
|
|
|
brew_uid = HOMEBREW_BREW_FILE.stat.uid
|
|
|
|
tap_commands = []
|
|
|
|
if Process.uid.zero? && !brew_uid.zero?
|
|
|
|
tap_commands += %W[/usr/bin/sudo -u ##{brew_uid}]
|
2015-11-07 16:52:01 +08:00
|
|
|
end
|
2017-10-18 08:30:26 -03:00
|
|
|
if help_flag
|
|
|
|
# Unset HOMEBREW_HELP to avoid confusing the tap
|
|
|
|
ENV["HOMEBREW_HELP"] = nil
|
|
|
|
end
|
2017-09-24 20:12:58 +01:00
|
|
|
tap_commands += %W[#{HOMEBREW_BREW_FILE} tap #{possible_tap}]
|
|
|
|
safe_system(*tap_commands)
|
2017-10-18 08:30:26 -03:00
|
|
|
if help_flag
|
|
|
|
# Restore HOMEBREW_HELP after the tap
|
|
|
|
ENV["HOMEBREW_HELP"] = 1
|
|
|
|
end
|
2017-09-24 20:12:58 +01:00
|
|
|
exec HOMEBREW_BREW_FILE, cmd, *ARGV
|
2009-06-02 13:39:39 +01:00
|
|
|
end
|
2016-04-19 08:11:17 +02:00
|
|
|
rescue UsageError => e
|
2016-04-19 07:33:13 +02:00
|
|
|
require "cmd/help"
|
2016-09-17 15:32:44 +01:00
|
|
|
Homebrew.help cmd, usage_error: e.message
|
2015-12-21 08:44:41 +00:00
|
|
|
rescue SystemExit => e
|
|
|
|
onoe "Kernel.exit" if ARGV.verbose? && !e.success?
|
2016-01-30 23:09:45 -08:00
|
|
|
$stderr.puts e.backtrace if ARGV.debug?
|
2009-11-11 18:51:05 +00:00
|
|
|
raise
|
2017-05-05 10:50:26 +02:00
|
|
|
rescue Interrupt
|
2016-01-30 23:09:45 -08:00
|
|
|
$stderr.puts # seemingly a newline is typical
|
2009-08-10 16:48:30 +01:00
|
|
|
exit 130
|
2009-11-12 01:33:14 +00:00
|
|
|
rescue BuildError => e
|
2017-06-07 16:34:54 +01:00
|
|
|
Utils::Analytics.report_build_error(e)
|
2012-03-07 11:11:05 +00:00
|
|
|
e.dump
|
2009-11-12 01:33:14 +00:00
|
|
|
exit 1
|
|
|
|
rescue RuntimeError, SystemCallError => e
|
2012-08-28 20:14:44 -04:00
|
|
|
raise if e.message.empty?
|
2009-11-12 01:33:14 +00:00
|
|
|
onoe e
|
2016-01-30 23:09:45 -08:00
|
|
|
$stderr.puts e.backtrace if ARGV.debug?
|
2009-11-12 01:33:14 +00:00
|
|
|
exit 1
|
2016-12-10 13:04:14 +00:00
|
|
|
rescue MethodDeprecatedError => e
|
|
|
|
onoe e
|
|
|
|
if e.issues_url
|
|
|
|
$stderr.puts "If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):"
|
|
|
|
$stderr.puts " #{Formatter.url(e.issues_url)}"
|
|
|
|
end
|
|
|
|
exit 1
|
2009-08-10 16:48:30 +01:00
|
|
|
rescue Exception => e
|
2009-11-11 18:38:50 +00:00
|
|
|
onoe e
|
2017-06-07 16:37:39 +01:00
|
|
|
if internal_cmd && defined?(OS::ISSUES_URL) &&
|
|
|
|
!ENV["HOMEBREW_NO_AUTO_UPDATE"]
|
2016-08-30 21:38:13 +02:00
|
|
|
$stderr.puts "#{Tty.bold}Please report this bug:#{Tty.reset}"
|
|
|
|
$stderr.puts " #{Formatter.url(OS::ISSUES_URL)}"
|
2015-07-23 23:57:11 +02:00
|
|
|
end
|
2016-01-30 23:09:45 -08:00
|
|
|
$stderr.puts e.backtrace
|
2009-09-23 09:32:04 +01:00
|
|
|
exit 1
|
2012-03-15 10:57:34 +13:00
|
|
|
else
|
|
|
|
exit 1 if Homebrew.failed?
|
2009-07-31 02:51:17 +01:00
|
|
|
end
|