2023-03-06 09:49:53 -08:00
|
|
|
# typed: true
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-04-01 09:10:51 -07:00
|
|
|
require "abstract_command"
|
2015-08-03 13:09:07 +01:00
|
|
|
require "formula"
|
2015-12-27 19:12:27 +01:00
|
|
|
require "options"
|
2011-03-19 09:58:42 -07:00
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2024-04-01 09:10:51 -07:00
|
|
|
module Cmd
|
|
|
|
class OptionsCmd < AbstractCommand
|
|
|
|
cmd_args do
|
|
|
|
description <<~EOS
|
|
|
|
Show install options specific to <formula>.
|
|
|
|
EOS
|
|
|
|
switch "--compact",
|
|
|
|
description: "Show all options on a single line separated by spaces."
|
|
|
|
switch "--installed",
|
|
|
|
description: "Show options for formulae that are currently installed."
|
|
|
|
switch "--eval-all",
|
|
|
|
description: "Evaluate all available formulae and casks, whether installed or not, to show their " \
|
|
|
|
"options."
|
|
|
|
flag "--command=",
|
|
|
|
description: "Show options for the specified <command>."
|
2016-09-26 01:44:51 +02:00
|
|
|
|
2024-04-01 09:10:51 -07:00
|
|
|
conflicts "--installed", "--all", "--command"
|
2020-07-30 18:40:10 +02:00
|
|
|
|
2024-04-01 09:10:51 -07:00
|
|
|
named_args :formula
|
|
|
|
end
|
2018-11-07 21:59:04 +05:30
|
|
|
|
2024-04-01 09:10:51 -07:00
|
|
|
sig { override.void }
|
|
|
|
def run
|
|
|
|
all = args.eval_all?
|
2022-09-05 13:57:22 +01:00
|
|
|
|
2024-04-01 09:10:51 -07:00
|
|
|
if all
|
|
|
|
puts_options(Formula.all(eval_all: args.eval_all?).sort)
|
|
|
|
elsif args.installed?
|
|
|
|
puts_options(Formula.installed.sort)
|
|
|
|
elsif args.command.present?
|
|
|
|
cmd_options = Commands.command_options(T.must(args.command))
|
2024-07-05 08:20:28 +01:00
|
|
|
odie "Unknown command: brew #{args.command}" if cmd_options.nil?
|
2021-01-15 00:13:10 -05:00
|
|
|
|
2024-04-01 09:10:51 -07:00
|
|
|
if args.compact?
|
|
|
|
puts cmd_options.sort.map(&:first) * " "
|
|
|
|
else
|
|
|
|
cmd_options.sort.each { |option, desc| puts "#{option}\n\t#{desc}" }
|
|
|
|
puts
|
|
|
|
end
|
|
|
|
elsif args.no_named?
|
|
|
|
raise FormulaUnspecifiedError
|
|
|
|
else
|
|
|
|
puts_options args.named.to_formulae
|
|
|
|
end
|
2020-06-26 18:10:16 -04:00
|
|
|
end
|
2011-03-19 09:58:42 -07:00
|
|
|
|
2024-04-01 09:10:51 -07:00
|
|
|
private
|
|
|
|
|
|
|
|
def puts_options(formulae)
|
|
|
|
formulae.each do |f|
|
|
|
|
next if f.options.empty?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2024-04-01 09:10:51 -07:00
|
|
|
if args.compact?
|
|
|
|
puts f.options.as_flags.sort * " "
|
|
|
|
else
|
|
|
|
puts f.full_name if formulae.length > 1
|
|
|
|
Options.dump_for_formula f
|
|
|
|
puts
|
|
|
|
end
|
|
|
|
end
|
2011-03-10 21:32:10 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-08-04 15:40:36 -04:00
|
|
|
end
|