mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-15 19:56:59 +08:00

`ARGV.flag?` = `ARGV.include?` + `ARGV.switch?` Closes Homebrew/homebrew#36727. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
44 lines
1.4 KiB
Ruby
44 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
# `brew uses foo bar` returns formulae that use both foo and bar
|
|
# If you want the union, run the command twice and concatenate the results.
|
|
# The intersection is harder to achieve with shell tools.
|
|
|
|
module Homebrew
|
|
def uses
|
|
raise FormulaUnspecifiedError if ARGV.named.empty?
|
|
|
|
used_formulae = ARGV.formulae
|
|
formulae = (ARGV.include? "--installed") ? Formula.installed : Formula
|
|
recursive = ARGV.flag? "--recursive"
|
|
ignores = []
|
|
ignores << "build?" if ARGV.include? "--skip-build"
|
|
ignores << "optional?" if ARGV.include? "--skip-optional"
|
|
|
|
uses = formulae.select do |f|
|
|
used_formulae.all? do |ff|
|
|
begin
|
|
if recursive
|
|
deps = f.recursive_dependencies.reject do |dep|
|
|
ignores.any? { |ignore| dep.send(ignore) }
|
|
end
|
|
deps.any? { |dep| dep.to_formula.name == ff.name } ||
|
|
f.recursive_requirements.any? { |req| req.name == ff.name }
|
|
else
|
|
deps = f.deps.reject do |dep|
|
|
ignores.any? { |ignore| dep.send(ignore) }
|
|
end
|
|
deps.any? { |dep| dep.to_formula.name == ff.name } ||
|
|
f.requirements.any? { |req| req.name == ff.name }
|
|
end
|
|
rescue FormulaUnavailableError => e
|
|
# Silently ignore this case as we don't care about things used in
|
|
# taps that aren't currently tapped.
|
|
end
|
|
end
|
|
end
|
|
|
|
puts_columns uses.map(&:name)
|
|
end
|
|
end
|