2014-06-16 13:36:17 -05:00
|
|
|
require "blacklist"
|
|
|
|
require "cmd/doctor"
|
|
|
|
require "cmd/search"
|
|
|
|
require "cmd/tap"
|
|
|
|
require "formula_installer"
|
|
|
|
require "hardware"
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2010-09-11 20:22:54 +01:00
|
|
|
def install
|
2012-02-04 00:01:29 -06:00
|
|
|
raise FormulaUnspecifiedError if ARGV.named.empty?
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
if ARGV.include? "--head"
|
2014-02-11 21:25:26 -08:00
|
|
|
raise "Specify `--HEAD` in uppercase to build from trunk."
|
|
|
|
end
|
|
|
|
|
2010-11-14 03:52:59 +00:00
|
|
|
ARGV.named.each do |name|
|
2015-08-06 21:22:57 +08:00
|
|
|
if !File.exist?(name) && (name !~ HOMEBREW_CORE_FORMULA_REGEX) \
|
|
|
|
&& (name =~ HOMEBREW_TAP_FORMULA_REGEX || name =~ HOMEBREW_CASK_TAP_FORMULA_REGEX)
|
2014-01-03 21:51:42 +00:00
|
|
|
install_tap $1, $2
|
2013-10-21 04:25:24 +01:00
|
|
|
end
|
2010-11-09 12:57:41 +00:00
|
|
|
end unless ARGV.force?
|
|
|
|
|
2014-08-21 15:46:57 +01:00
|
|
|
begin
|
2014-10-31 18:33:39 -05:00
|
|
|
formulae = []
|
|
|
|
|
2014-11-28 15:02:42 +00:00
|
|
|
if ARGV.casks.any?
|
|
|
|
brew_cask = Formulary.factory("brew-cask")
|
|
|
|
install_formula(brew_cask) unless brew_cask.installed?
|
2015-03-05 15:36:40 +00:00
|
|
|
args = []
|
|
|
|
args << "--force" if ARGV.force?
|
|
|
|
args << "--debug" if ARGV.debug?
|
|
|
|
args << "--verbose" if ARGV.verbose?
|
2014-11-28 15:02:42 +00:00
|
|
|
|
|
|
|
ARGV.casks.each do |c|
|
2015-03-05 15:36:40 +00:00
|
|
|
cmd = "brew", "cask", "install", c, *args
|
2014-11-28 15:02:42 +00:00
|
|
|
ohai cmd.join " "
|
2014-12-26 15:39:34 -05:00
|
|
|
system(*cmd)
|
2014-11-28 15:02:42 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-21 15:46:57 +01:00
|
|
|
ARGV.formulae.each do |f|
|
2015-01-12 23:03:38 +00:00
|
|
|
# head-only without --HEAD is an error
|
2015-08-03 13:09:07 +01:00
|
|
|
if !ARGV.build_head? && f.stable.nil? && f.devel.nil?
|
2014-10-20 03:02:32 -05:00
|
|
|
raise <<-EOS.undent
|
2015-05-27 21:00:09 +08:00
|
|
|
#{f.full_name} is a head-only formula
|
|
|
|
Install with `brew install --HEAD #{f.full_name}`
|
2014-08-21 15:46:57 +01:00
|
|
|
EOS
|
|
|
|
end
|
2014-06-16 13:38:14 -05:00
|
|
|
|
2015-01-12 23:03:38 +00:00
|
|
|
# devel-only without --devel is an error
|
2015-08-03 13:09:07 +01:00
|
|
|
if !ARGV.build_devel? && f.stable.nil? && f.head.nil?
|
2015-01-15 23:59:55 -05:00
|
|
|
raise <<-EOS.undent
|
2015-05-27 21:00:09 +08:00
|
|
|
#{f.full_name} is a devel-only formula
|
|
|
|
Install with `brew install --devel #{f.full_name}`
|
2015-01-15 23:59:55 -05:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
if ARGV.build_stable? && f.stable.nil?
|
2015-05-27 21:00:09 +08:00
|
|
|
raise "#{f.full_name} has no stable download, please choose --devel or --HEAD"
|
2015-01-12 23:03:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# --HEAD, fail with no head defined
|
2015-08-03 13:09:07 +01:00
|
|
|
if ARGV.build_head? && f.head.nil?
|
2015-05-27 21:00:09 +08:00
|
|
|
raise "No head is defined for #{f.full_name}"
|
2014-08-21 15:46:57 +01:00
|
|
|
end
|
2014-10-31 18:33:39 -05:00
|
|
|
|
2015-01-12 23:03:38 +00:00
|
|
|
# --devel, fail with no devel defined
|
2015-08-03 13:09:07 +01:00
|
|
|
if ARGV.build_devel? && f.devel.nil?
|
2015-05-27 21:00:09 +08:00
|
|
|
raise "No devel block is defined for #{f.full_name}"
|
2015-01-05 02:36:03 +00:00
|
|
|
end
|
|
|
|
|
2014-10-31 18:33:39 -05:00
|
|
|
if f.installed?
|
2015-05-27 21:00:09 +08:00
|
|
|
msg = "#{f.full_name}-#{f.installed_version} already installed"
|
2015-08-14 15:13:44 +01:00
|
|
|
unless f.linked_keg.symlink?
|
|
|
|
if Pathname.new("#{HOMEBREW_CELLAR}/#{f.oldname}").exist?
|
|
|
|
msg << ", it's just not migrated"
|
|
|
|
elsif !f.keg_only?
|
|
|
|
msg << ", it's just not linked"
|
|
|
|
end
|
|
|
|
end
|
2014-10-31 18:33:39 -05:00
|
|
|
opoo msg
|
|
|
|
else
|
|
|
|
formulae << f
|
|
|
|
end
|
2014-06-16 13:38:14 -05:00
|
|
|
end
|
|
|
|
|
2014-08-21 15:46:57 +01:00
|
|
|
perform_preinstall_checks
|
2014-03-15 10:40:18 -05:00
|
|
|
|
2014-10-31 18:33:39 -05:00
|
|
|
formulae.each { |f| install_formula(f) }
|
2013-10-30 12:33:20 -07:00
|
|
|
rescue FormulaUnavailableError => e
|
2015-03-11 16:36:36 +08:00
|
|
|
if (blacklist = blacklisted?(e.name))
|
|
|
|
ofail "#{e.message}\n#{blacklist}"
|
|
|
|
else
|
|
|
|
ofail e.message
|
|
|
|
query = query_regexp(e.name)
|
2015-07-17 11:31:54 -07:00
|
|
|
ohai "Searching formulae..."
|
2015-03-11 16:36:36 +08:00
|
|
|
puts_columns(search_formulae(query))
|
2015-07-17 11:31:54 -07:00
|
|
|
ohai "Searching taps..."
|
2015-03-11 16:36:36 +08:00
|
|
|
puts_columns(search_taps(query))
|
2015-05-15 12:06:15 -07:00
|
|
|
|
|
|
|
# If they haven't updated in 48 hours (172800 seconds), that
|
|
|
|
# might explain the error
|
2015-07-11 14:35:37 +01:00
|
|
|
master = HOMEBREW_REPOSITORY/".git/refs/heads/master"
|
2015-07-11 21:16:00 +01:00
|
|
|
if master.exist? && (Time.now.to_i - File.mtime(master).to_i) > 172800
|
2015-05-15 12:06:15 -07:00
|
|
|
ohai "You haven't updated Homebrew in a while."
|
|
|
|
puts <<-EOS.undent
|
2015-07-11 14:35:37 +01:00
|
|
|
A formula for #{e.name} might have been added recently.
|
|
|
|
Run `brew update` to get the latest Homebrew updates!
|
2015-05-15 12:06:15 -07:00
|
|
|
EOS
|
|
|
|
end
|
2015-03-11 16:36:36 +08:00
|
|
|
end
|
2013-09-05 12:24:21 -07:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
def check_ppc
|
2015-08-03 13:09:07 +01:00
|
|
|
case Hardware::CPU.type
|
|
|
|
when :ppc, :dunno
|
2010-11-09 13:00:33 +00:00
|
|
|
abort <<-EOS.undent
|
|
|
|
Sorry, Homebrew does not support your computer's CPU architecture.
|
2012-12-27 21:54:54 -04:00
|
|
|
For PPC support, see: https://github.com/mistydemeo/tigerbrew
|
2015-08-03 13:09:07 +01:00
|
|
|
EOS
|
2010-11-09 13:00:33 +00:00
|
|
|
end
|
2010-11-09 12:57:41 +00:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
def check_writable_install_location
|
2015-08-03 13:09:07 +01:00
|
|
|
raise "Cannot write to #{HOMEBREW_CELLAR}" if HOMEBREW_CELLAR.exist? && !HOMEBREW_CELLAR.writable_real?
|
|
|
|
raise "Cannot write to #{HOMEBREW_PREFIX}" unless HOMEBREW_PREFIX.writable_real? || HOMEBREW_PREFIX.to_s == "/usr/local"
|
2010-11-09 12:57:41 +00:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2012-03-19 11:26:39 -05:00
|
|
|
def check_xcode
|
2012-08-31 10:20:20 -04:00
|
|
|
checks = Checks.new
|
2014-05-12 14:46:50 -05:00
|
|
|
%w[
|
2015-06-16 20:02:10 -04:00
|
|
|
check_for_unsupported_osx
|
2014-05-12 14:46:50 -05:00
|
|
|
check_for_installed_developer_tools
|
|
|
|
check_xcode_license_approved
|
|
|
|
check_for_osx_gcc_installer
|
2014-06-03 22:49:51 -07:00
|
|
|
check_for_bad_install_name_tool
|
2014-05-12 14:46:50 -05:00
|
|
|
].each do |check|
|
2012-08-31 10:20:20 -04:00
|
|
|
out = checks.send(check)
|
|
|
|
opoo out unless out.nil?
|
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
|
2010-11-09 12:57:41 +00:00
|
|
|
def check_macports
|
2012-12-17 17:05:53 -06:00
|
|
|
unless MacOS.macports_or_fink.empty?
|
2011-09-01 10:14:26 -07:00
|
|
|
opoo "It appears you have MacPorts or Fink installed."
|
2010-11-09 12:57:41 +00:00
|
|
|
puts "Software installed with other package managers causes known problems for"
|
2011-09-01 10:14:26 -07:00
|
|
|
puts "Homebrew. If a formula fails to build, uninstall MacPorts/Fink and try again."
|
2010-11-09 12:57:41 +00:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
|
2011-09-15 10:57:03 +01:00
|
|
|
def check_cellar
|
2015-08-03 13:09:07 +01:00
|
|
|
FileUtils.mkdir_p HOMEBREW_CELLAR unless File.exist? HOMEBREW_CELLAR
|
2011-09-15 10:57:03 +01:00
|
|
|
rescue
|
|
|
|
raise <<-EOS.undent
|
|
|
|
Could not create #{HOMEBREW_CELLAR}
|
|
|
|
Check you have permission to write to #{HOMEBREW_CELLAR.parent}
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2011-08-23 23:30:52 +01:00
|
|
|
def perform_preinstall_checks
|
2010-11-09 12:57:41 +00:00
|
|
|
check_ppc
|
|
|
|
check_writable_install_location
|
2012-03-19 11:26:39 -05:00
|
|
|
check_xcode
|
2011-09-15 10:57:03 +01:00
|
|
|
check_cellar
|
2011-08-23 23:30:52 +01:00
|
|
|
end
|
2010-11-09 12:57:41 +00:00
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
def install_formula(f)
|
2014-10-19 13:54:00 +01:00
|
|
|
f.print_tap_action
|
|
|
|
|
2013-01-08 19:54:32 -06:00
|
|
|
fi = FormulaInstaller.new(f)
|
2014-03-13 10:11:00 -05:00
|
|
|
fi.options = f.build.used_options
|
2014-08-30 15:02:38 -05:00
|
|
|
fi.ignore_deps = ARGV.ignore_deps?
|
2014-03-13 10:11:00 -05:00
|
|
|
fi.only_deps = ARGV.only_deps?
|
|
|
|
fi.build_bottle = ARGV.build_bottle?
|
|
|
|
fi.build_from_source = ARGV.build_from_source?
|
|
|
|
fi.force_bottle = ARGV.force_bottle?
|
|
|
|
fi.interactive = ARGV.interactive?
|
2014-11-03 21:34:41 -06:00
|
|
|
fi.git = ARGV.git?
|
2014-03-13 10:11:00 -05:00
|
|
|
fi.verbose = ARGV.verbose?
|
2014-11-03 21:36:01 -06:00
|
|
|
fi.quieter = ARGV.quieter?
|
2014-03-13 10:11:00 -05:00
|
|
|
fi.debug = ARGV.debug?
|
2014-03-04 14:06:25 -06:00
|
|
|
fi.prelude
|
2013-01-08 19:54:32 -06:00
|
|
|
fi.install
|
|
|
|
fi.finish
|
|
|
|
rescue FormulaInstallationAlreadyAttemptedError
|
|
|
|
# We already attempted to install f as part of the dependency tree of
|
|
|
|
# another formula. In that case, don't generate an error, just move on.
|
2014-03-15 10:40:18 -05:00
|
|
|
rescue CannotInstallFormulaError => e
|
|
|
|
ofail e.message
|
2014-10-31 20:54:09 -05:00
|
|
|
rescue BuildError
|
|
|
|
check_macports
|
|
|
|
raise
|
2013-01-08 19:54:32 -06:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|