brew/Library/Homebrew/cmd/install.rb

288 lines
10 KiB
Ruby
Raw Normal View History

#: * `install` [`--debug`] [`--env=`<std>|<super>] [`--ignore-dependencies`] [`--only-dependencies`] [`--cc=`<compiler>] [`--build-from-source`] [`--devel`|`--HEAD`] [`--keep-tmp`] <formula>:
2016-04-08 16:28:43 +02:00
#: Install <formula>.
#:
#: <formula> is usually the name of the formula to install, but it can be specified
#: in several different ways. See [SPECIFYING FORMULAE][].
2016-04-08 16:28:43 +02:00
#:
#: If `--debug` is passed and brewing fails, open an interactive debugging
#: session with access to IRB or a shell inside the temporary build directory.
#:
#: If `--env=std` is passed, use the standard build environment instead of superenv.
#:
#: If `--env=super` is passed, use superenv even if the formula specifies the
#: standard build environment.
#:
#: If `--ignore-dependencies` is passed, skip installing any dependencies of
#: any kind. If they are not already present, the formula will probably fail
#: to install.
#:
#: If `--only-dependencies` is passed, install the dependencies with specified
#: options but do not install the specified formula.
#:
#: If `--cc=`<compiler> is passed, attempt to compile using <compiler>.
#: <compiler> should be the name of the compiler's executable, for instance
#: `gcc-4.2` for Apple's GCC 4.2, or `gcc-4.9` for a Homebrew-provided GCC
#: 4.9.
#:
#: If `--build-from-source` or `-s` is passed, compile the specified <formula> from
#: source even if a bottle is provided. Dependencies will still be installed
#: from bottles if they are available.
#:
#: If `HOMEBREW_BUILD_FROM_SOURCE` is set, regardless of whether `--build-from-source` was
#: passed, then both <formula> and the dependencies installed as part of this process
#: are built from source even if bottles are available.
2016-04-08 16:28:43 +02:00
#:
# Hidden developer option:
# If `--force-bottle` is passed, install from a bottle if it exists
# for the current version of macOS, even if custom options are given.
#
2016-04-08 16:28:43 +02:00
#: If `--devel` is passed, and <formula> defines it, install the development version.
#:
#: If `--HEAD` is passed, and <formula> defines it, install the HEAD version,
#: aka master, trunk, unstable.
#:
#: If `--keep-tmp` is passed, the temporary files created during installation
#: are not deleted.
#:
2016-04-08 16:28:43 +02:00
#: To install a newer version of HEAD use
#: `brew rm <foo> && brew install --HEAD <foo>`.
#:
#: * `install` `--interactive` [`--git`] <formula>:
#: Download and patch <formula>, then open a shell. This allows the user to
#: run `./configure --help` and otherwise determine how to turn the software
#: package into a Homebrew formula.
#:
#: If `--git` is passed, Homebrew will create a Git repository, useful for
#: creating patches to the software.
2014-06-16 13:36:17 -05:00
require "blacklist"
require "diagnostic"
2014-06-16 13:36:17 -05:00
require "cmd/search"
require "formula_installer"
require "tap"
2014-06-16 13:36:17 -05:00
require "hardware"
require "development_tools"
module Homebrew
def install
raise FormulaUnspecifiedError if ARGV.named.empty?
if ARGV.include? "--head"
raise "Specify `--HEAD` in uppercase to build from trunk."
end
2016-09-10 10:24:56 +01:00
unless ARGV.force?
ARGV.named.each do |name|
next if File.exist?(name)
if name !~ HOMEBREW_TAP_FORMULA_REGEX && name !~ HOMEBREW_CASK_TAP_FORMULA_REGEX
next
end
tap = Tap.fetch($1, $2)
tap.install unless tap.installed?
end
2016-09-10 10:24:56 +01:00
end
begin
formulae = []
unless ARGV.casks.empty?
args = []
args << "--force" if ARGV.force?
args << "--debug" if ARGV.debug?
args << "--verbose" if ARGV.verbose?
ARGV.casks.each do |c|
cmd = "brew", "cask", "install", c, *args
ohai cmd.join " "
2014-12-26 15:39:34 -05:00
system(*cmd)
end
end
# if the user's flags will prevent bottle only-installations when no
# developer tools are available, we need to stop them early on
FormulaInstaller.prevent_build_flags unless DevelopmentTools.installed?
ARGV.formulae.each do |f|
# head-only without --HEAD is an error
if !ARGV.build_head? && f.stable.nil? && f.devel.nil?
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}`
EOS
end
# devel-only without --devel is an error
if !ARGV.build_devel? && f.stable.nil? && f.head.nil?
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}`
EOS
end
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"
end
# --HEAD, fail with no head defined
if ARGV.build_head? && f.head.nil?
2015-05-27 21:00:09 +08:00
raise "No head is defined for #{f.full_name}"
end
# --devel, fail with no devel defined
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}"
end
current = f if f.installed?
current ||= f.old_installed_formulae.first
if current
msg = "#{current.full_name}-#{current.installed_version} already installed"
unless current.linked_keg.symlink? || current.keg_only?
msg << ", it's just not linked"
end
opoo msg
elsif f.migration_needed? && !ARGV.force?
2015-08-25 15:38:25 +02:00
# Check if the formula we try to install is the same as installed
# but not migrated one. If --force passed then install anyway.
opoo "#{f.oldname} already installed, it's just not migrated"
puts "You can migrate formula with `brew migrate #{f}`"
puts "Or you can force install it with `brew install #{f} --force`"
else
formulae << f
end
end
perform_preinstall_checks
formulae.each { |f| install_formula(f) }
rescue FormulaClassUnavailableError => e
# Need to rescue before `FormulaUnavailableError` (superclass of this)
# is handled, as searching for a formula doesn't make sense here (the
# formula was found, but there's a problem with its implementation).
ofail e.message
rescue FormulaUnavailableError => e
if (blacklist = blacklisted?(e.name))
ofail "#{e.message}\n#{blacklist}"
elsif e.name == "updog"
ofail "What's updog?"
else
ofail e.message
query = query_regexp(e.name)
ohai "Searching for similarly named formulae..."
formulae_search_results = search_formulae(query)
case formulae_search_results.length
when 0
ofail "No similarly named formulae found."
when 1
puts "This similarly named formula was found:"
puts_columns(formulae_search_results)
puts "To install it, run:\n brew install #{formulae_search_results.first}"
else
puts "These similarly named formulae were found:"
puts_columns(formulae_search_results)
puts "To install one of them, run (for example):\n brew install #{formulae_search_results.first}"
end
ohai "Searching taps..."
taps_search_results = search_taps(query)
case taps_search_results.length
when 0
ofail "No formulae found in taps."
when 1
puts "This formula was found in a tap:"
puts_columns(taps_search_results)
puts "To install it, run:\n brew install #{taps_search_results.first}"
else
puts "These formulae were found in taps:"
puts_columns(taps_search_results)
puts "To install one of them, run (for example):\n brew install #{taps_search_results.first}"
end
end
end
end
def check_ppc
case Hardware::CPU.type
when :ppc
2010-11-09 13:00:33 +00:00
abort <<-EOS.undent
Sorry, Homebrew does not support your computer's CPU architecture.
For PPC support, see: https://github.com/mistydemeo/tigerbrew
EOS
2010-11-09 13:00:33 +00:00
end
end
def check_writable_install_location
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"
end
def check_development_tools
checks = Diagnostic::Checks.new
all_development_tools_checks = checks.development_tools_checks +
checks.fatal_development_tools_checks
all_development_tools_checks.each do |check|
out = checks.send(check)
next if out.nil?
if checks.fatal_development_tools_checks.include?(check)
odie out
else
opoo out
end
end
end
def check_macports
2016-09-22 20:12:28 +02:00
return if MacOS.macports_or_fink.empty?
opoo "It appears you have MacPorts or Fink installed."
puts "Software installed with other package managers causes known problems for"
puts "Homebrew. If a formula fails to build, uninstall MacPorts/Fink and try again."
end
def check_cellar
FileUtils.mkdir_p HOMEBREW_CELLAR unless File.exist? HOMEBREW_CELLAR
rescue
raise <<-EOS.undent
Could not create #{HOMEBREW_CELLAR}
Check you have permission to write to #{HOMEBREW_CELLAR.parent}
EOS
end
def perform_preinstall_checks
check_ppc
check_writable_install_location
check_development_tools if DevelopmentTools.installed?
check_cellar
end
def install_formula(f)
f.print_tap_action
fi = FormulaInstaller.new(f)
fi.options = f.build.used_options
fi.ignore_deps = ARGV.ignore_deps?
fi.only_deps = ARGV.only_deps?
fi.build_bottle = ARGV.build_bottle?
fi.build_from_source = ARGV.build_from_source? || ARGV.build_all_from_source?
fi.force_bottle = ARGV.force_bottle?
fi.interactive = ARGV.interactive?
2014-11-03 21:34:41 -06:00
fi.git = ARGV.git?
fi.verbose = ARGV.verbose?
2014-11-03 21:36:01 -06:00
fi.quieter = ARGV.quieter?
fi.debug = ARGV.debug?
fi.prelude
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.
rescue CannotInstallFormulaError => e
ofail e.message
rescue BuildError
check_macports
raise
end
end