141 lines
4.2 KiB
Ruby
Raw Normal View History

2016-04-08 16:28:43 +02:00
#: * `ln`, `link` [`--overwrite`] [`--dry-run`] [`--force`] <formula>:
#: Symlink all of <formula>'s installed files into the Homebrew prefix. This
#: is done automatically when you install formulae but can be useful for DIY
#: installations.
#:
#: If `--overwrite` is passed, Homebrew will delete files which already exist in
#: the prefix while linking.
#:
#: If `--dry-run` or `-n` is passed, Homebrew will list all files which would
#: be linked or which would be deleted by `brew link --overwrite`, but will not
#: actually link or delete any files.
#:
2017-04-02 10:14:21 +01:00
#: If `--force` (or `-f`) is passed, Homebrew will allow keg-only formulae to be linked.
2016-04-08 16:28:43 +02:00
require "ostruct"
require "caveats"
2018-11-05 12:20:10 +05:30
require "cli_parser"
module Homebrew
2016-09-26 01:44:51 +02:00
module_function
2018-11-05 12:20:10 +05:30
def link_args
Homebrew::CLI::Parser.new do
usage_banner <<~EOS
`ln`, `link` <options> <formula>
Symlink all of <formula>'s installed files into the Homebrew prefix. This
is done automatically when you install formulae but can be useful for DIY
installations.
EOS
switch "--overwrite",
description: "Delete files already existing in the prefix while linking."
switch "-n", "--dry-run",
description: "List all files which would be linked or deleted by "\
"`brew link --overwrite`, but will not actually link or delete any files."
switch :force,
description: "Allow only key-only formulae to be linked."
switch :verbose
switch :debug
end
end
def link
2018-11-05 12:20:10 +05:30
link_args.parse
raise KegUnspecifiedError if ARGV.named.empty?
mode = OpenStruct.new
2018-11-05 12:20:10 +05:30
mode.overwrite = true if args.overwrite?
mode.dry_run = true if args.dry_run?
ARGV.kegs.each do |keg|
keg_only = Formulary.keg_only?(keg.rack)
if keg.linked?
opoo "Already linked: #{keg}"
name_and_flag = if keg_only
"--force #{keg.name}"
else
keg.name
end
puts "To relink: brew unlink #{keg.name} && brew link #{name_and_flag}"
next
end
if mode.dry_run
if mode.overwrite
puts "Would remove:"
else
puts "Would link:"
end
keg.link(mode)
puts_keg_only_path_message(keg) if keg_only
next
end
if keg_only
if Homebrew.default_prefix?
f = keg.to_formula
caveats = Caveats.new(f)
if f.keg_only_reason.reason == :provided_by_macos &&
(MacOS.version >= :mojave ||
MacOS::Xcode.version >= "10.0" ||
MacOS::CLT.version >= "10.0")
opoo <<~EOS
Refusing to link macOS-provided software: #{keg.name}
#{caveats.keg_only_text(skip_reason: true).strip}
EOS
next
end
if keg.name.start_with?("openssl", "libressl")
opoo <<~EOS
Refusing to link: #{keg.name}
Linking keg-only #{keg.name} means you may end up linking against the insecure,
deprecated system OpenSSL while using the headers from Homebrew's #{keg.name}.
#{caveats.keg_only_text(skip_reason: true).strip}
EOS
next
end
end
2018-11-05 12:20:10 +05:30
unless args.force?
opoo "#{keg.name} is keg-only and must be linked with --force"
puts_keg_only_path_message(keg)
next
end
end
keg.lock do
print "Linking #{keg}... "
2018-11-05 12:20:10 +05:30
puts if args.verbose?
begin
n = keg.link(mode)
rescue Keg::LinkError
puts
raise
else
puts "#{n} symlinks created"
end
2017-05-29 18:24:52 +01:00
puts_keg_only_path_message(keg) if keg_only && !ARGV.homebrew_developer?
end
end
end
def puts_keg_only_path_message(keg)
bin = keg/"bin"
sbin = keg/"sbin"
return if !bin.directory? && !sbin.directory?
opt = HOMEBREW_PREFIX/"opt/#{keg.name}"
puts "\nIf you need to have this software first in your PATH instead consider running:"
puts " #{Utils::Shell.prepend_path_in_profile(opt/"bin")}" if bin.directory?
puts " #{Utils::Shell.prepend_path_in_profile(opt/"sbin")}" if sbin.directory?
end
end