2025-06-17 16:33:16 +01:00
|
|
|
# typed: strict
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
require "abstract_command"
|
2017-03-18 17:02:08 +02:00
|
|
|
require "missing_formula"
|
2014-06-19 17:52:42 -05:00
|
|
|
require "caveats"
|
2015-12-27 19:12:27 +01:00
|
|
|
require "options"
|
2014-06-19 17:52:42 -05:00
|
|
|
require "formula"
|
|
|
|
require "keg"
|
|
|
|
require "tab"
|
2016-11-20 13:00:01 -05:00
|
|
|
require "json"
|
2020-08-18 10:58:32 -04:00
|
|
|
require "utils/spdx"
|
2020-09-07 13:00:02 -04:00
|
|
|
require "deprecate_disable"
|
2021-08-06 02:30:44 -04:00
|
|
|
require "api"
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2024-03-29 18:39:39 -07:00
|
|
|
module Cmd
|
|
|
|
class Info < AbstractCommand
|
|
|
|
VALID_DAYS = %w[30 90 365].freeze
|
|
|
|
VALID_FORMULA_CATEGORIES = %w[install install-on-request build-error].freeze
|
2025-06-17 16:33:16 +01:00
|
|
|
VALID_CATEGORIES = T.let((VALID_FORMULA_CATEGORIES + %w[cask-install os-version]).freeze, T::Array[String])
|
2024-03-29 18:39:39 -07:00
|
|
|
|
|
|
|
cmd_args do
|
|
|
|
description <<~EOS
|
|
|
|
Display brief statistics for your Homebrew installation.
|
|
|
|
If a <formula> or <cask> is provided, show summary of information about it.
|
|
|
|
EOS
|
|
|
|
switch "--analytics",
|
|
|
|
description: "List global Homebrew analytics data or, if specified, installation and " \
|
2025-01-27 14:21:27 +00:00
|
|
|
"build error data for <formula> (provided neither `$HOMEBREW_NO_ANALYTICS` " \
|
|
|
|
"nor `$HOMEBREW_NO_GITHUB_API` are set)."
|
2024-03-29 18:39:39 -07:00
|
|
|
flag "--days=",
|
|
|
|
depends_on: "--analytics",
|
|
|
|
description: "How many days of analytics data to retrieve. " \
|
|
|
|
"The value for <days> must be `30`, `90` or `365`. The default is `30`."
|
|
|
|
flag "--category=",
|
|
|
|
depends_on: "--analytics",
|
|
|
|
description: "Which type of analytics data to retrieve. " \
|
|
|
|
"The value for <category> must be `install`, `install-on-request` or `build-error`; " \
|
|
|
|
"`cask-install` or `os-version` may be specified if <formula> is not. " \
|
|
|
|
"The default is `install`."
|
|
|
|
switch "--github-packages-downloads",
|
|
|
|
description: "Scrape GitHub Packages download counts from HTML for a core formula.",
|
|
|
|
hidden: true
|
|
|
|
switch "--github",
|
|
|
|
description: "Open the GitHub source page for <formula> and <cask> in a browser. " \
|
|
|
|
"To view the history locally: `brew log -p` <formula> or <cask>"
|
2024-08-26 16:59:37 -04:00
|
|
|
switch "--fetch-manifest",
|
|
|
|
description: "Fetch GitHub Packages manifest for extra information when <formula> is not installed."
|
2024-03-29 18:39:39 -07:00
|
|
|
flag "--json",
|
|
|
|
description: "Print a JSON representation. Currently the default value for <version> is `v1` for " \
|
|
|
|
"<formula>. For <formula> and <cask> use `v2`. See the docs for examples of using the " \
|
|
|
|
"JSON output: <https://docs.brew.sh/Querying-Brew>"
|
|
|
|
switch "--installed",
|
|
|
|
depends_on: "--json",
|
|
|
|
description: "Print JSON of formulae that are currently installed."
|
|
|
|
switch "--eval-all",
|
|
|
|
depends_on: "--json",
|
|
|
|
description: "Evaluate all available formulae and casks, whether installed or not, to print their " \
|
2025-01-27 14:21:27 +00:00
|
|
|
"JSON. Implied if `$HOMEBREW_EVAL_ALL` is set."
|
2024-03-29 18:39:39 -07:00
|
|
|
switch "--variations",
|
|
|
|
depends_on: "--json",
|
|
|
|
description: "Include the variations hash in each formula's JSON output."
|
|
|
|
switch "-v", "--verbose",
|
|
|
|
description: "Show more verbose analytics data for <formula>."
|
|
|
|
switch "--formula", "--formulae",
|
|
|
|
description: "Treat all named arguments as formulae."
|
|
|
|
switch "--cask", "--casks",
|
|
|
|
description: "Treat all named arguments as casks."
|
|
|
|
|
|
|
|
conflicts "--installed", "--eval-all"
|
|
|
|
conflicts "--installed", "--all"
|
|
|
|
conflicts "--formula", "--cask"
|
2024-08-26 16:59:37 -04:00
|
|
|
conflicts "--fetch-manifest", "--cask"
|
|
|
|
conflicts "--fetch-manifest", "--json"
|
2024-03-29 18:39:39 -07:00
|
|
|
|
|
|
|
named_args [:formula, :cask]
|
|
|
|
end
|
2018-11-07 19:31:20 +05:30
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
sig { override.void }
|
|
|
|
def run
|
|
|
|
if args.analytics?
|
|
|
|
if args.days.present? && VALID_DAYS.exclude?(args.days)
|
|
|
|
raise UsageError, "`--days` must be one of #{VALID_DAYS.join(", ")}."
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.category.present?
|
|
|
|
if args.named.present? && VALID_FORMULA_CATEGORIES.exclude?(args.category)
|
|
|
|
raise UsageError,
|
|
|
|
"`--category` must be one of #{VALID_FORMULA_CATEGORIES.join(", ")} when querying formulae."
|
|
|
|
end
|
|
|
|
|
|
|
|
unless VALID_CATEGORIES.include?(args.category)
|
|
|
|
raise UsageError, "`--category` must be one of #{VALID_CATEGORIES.join(", ")}."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
print_analytics
|
2025-06-17 16:33:16 +01:00
|
|
|
elsif (json = args.json)
|
2024-03-29 18:39:39 -07:00
|
|
|
all = args.eval_all?
|
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
print_json(json, all)
|
2024-03-29 18:39:39 -07:00
|
|
|
elsif args.github?
|
|
|
|
raise FormulaOrCaskUnspecifiedError if args.no_named?
|
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
exec_browser(*args.named.to_formulae_and_casks.map do |formula_keg_or_cask|
|
|
|
|
formula_or_cask = T.cast(formula_keg_or_cask, T.any(Formula, Cask::Cask))
|
|
|
|
github_info(formula_or_cask)
|
|
|
|
end)
|
2024-03-29 18:39:39 -07:00
|
|
|
elsif args.no_named?
|
|
|
|
print_statistics
|
|
|
|
else
|
|
|
|
print_info
|
|
|
|
end
|
|
|
|
end
|
2019-12-13 15:39:55 -05:00
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
sig { params(remote: String, path: String).returns(String) }
|
2024-03-30 16:31:13 -07:00
|
|
|
def github_remote_path(remote, path)
|
|
|
|
if remote =~ %r{^(?:https?://|git(?:@|://))github\.com[:/](.+)/(.+?)(?:\.git)?$}
|
|
|
|
"https://github.com/#{Regexp.last_match(1)}/#{Regexp.last_match(2)}/blob/HEAD/#{path}"
|
|
|
|
else
|
|
|
|
"#{remote}/#{path}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
sig { void }
|
|
|
|
def print_statistics
|
|
|
|
return unless HOMEBREW_CELLAR.exist?
|
|
|
|
|
|
|
|
count = Formula.racks.length
|
|
|
|
puts "#{Utils.pluralize("keg", count, include_count: true)}, #{HOMEBREW_CELLAR.dup.abv}"
|
2019-11-20 17:20:09 -05:00
|
|
|
end
|
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
sig { void }
|
|
|
|
def print_analytics
|
|
|
|
if args.no_named?
|
|
|
|
Utils::Analytics.output(args:)
|
|
|
|
return
|
2020-10-08 19:55:24 -04:00
|
|
|
end
|
2019-11-20 17:20:09 -05:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
args.named.to_formulae_and_casks_and_unavailable.each_with_index do |obj, i|
|
|
|
|
puts unless i.zero?
|
|
|
|
|
|
|
|
case obj
|
|
|
|
when Formula
|
|
|
|
Utils::Analytics.formula_output(obj, args:)
|
|
|
|
when Cask::Cask
|
|
|
|
Utils::Analytics.cask_output(obj, args:)
|
|
|
|
when FormulaOrCaskUnavailableError
|
|
|
|
Utils::Analytics.output(filter: obj.name, args:)
|
|
|
|
else
|
|
|
|
raise
|
|
|
|
end
|
2020-10-08 19:55:24 -04:00
|
|
|
end
|
2019-11-20 17:20:09 -05:00
|
|
|
end
|
2019-02-19 13:12:52 +00:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
sig { void }
|
|
|
|
def print_info
|
|
|
|
args.named.to_formulae_and_casks_and_unavailable.each_with_index do |obj, i|
|
|
|
|
puts unless i.zero?
|
|
|
|
|
|
|
|
case obj
|
|
|
|
when Formula
|
|
|
|
info_formula(obj)
|
|
|
|
when Cask::Cask
|
|
|
|
info_cask(obj)
|
|
|
|
when FormulaOrCaskUnavailableError
|
|
|
|
# The formula/cask could not be found
|
|
|
|
ofail obj.message
|
|
|
|
# No formula with this name, try a missing formula lookup
|
|
|
|
if (reason = MissingFormula.reason(obj.name, show_info: true))
|
|
|
|
$stderr.puts reason
|
|
|
|
end
|
|
|
|
else
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-12-13 15:44:28 -05:00
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
sig { params(version: T.any(T::Boolean, String)).returns(Symbol) }
|
2024-03-29 18:39:39 -07:00
|
|
|
def json_version(version)
|
|
|
|
version_hash = {
|
|
|
|
true => :default,
|
|
|
|
"v1" => :v1,
|
|
|
|
"v2" => :v2,
|
|
|
|
}
|
2012-08-15 22:08:40 -05:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
raise UsageError, "invalid JSON version: #{version}" unless version_hash.include?(version)
|
2020-11-09 12:29:33 -05:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
version_hash[version]
|
|
|
|
end
|
2020-11-09 12:29:33 -05:00
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
sig { params(json: T.any(T::Boolean, String), all: T::Boolean).void }
|
|
|
|
def print_json(json, all)
|
2024-03-29 18:39:39 -07:00
|
|
|
raise FormulaOrCaskUnspecifiedError if !(all || args.installed?) && args.no_named?
|
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
json = case json_version(json)
|
2024-03-29 18:39:39 -07:00
|
|
|
when :v1, :default
|
|
|
|
raise UsageError, "Cannot specify `--cask` when using `--json=v1`!" if args.cask?
|
|
|
|
|
|
|
|
formulae = if all
|
|
|
|
Formula.all(eval_all: args.eval_all?).sort
|
|
|
|
elsif args.installed?
|
|
|
|
Formula.installed.sort
|
|
|
|
else
|
|
|
|
args.named.to_formulae
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.variations?
|
|
|
|
formulae.map(&:to_hash_with_variations)
|
|
|
|
else
|
|
|
|
formulae.map(&:to_hash)
|
|
|
|
end
|
|
|
|
when :v2
|
2025-02-16 22:20:37 -08:00
|
|
|
formulae, casks = T.let(
|
|
|
|
if all
|
|
|
|
[
|
|
|
|
Formula.all(eval_all: args.eval_all?).sort,
|
|
|
|
Cask::Cask.all(eval_all: args.eval_all?).sort_by(&:full_name),
|
|
|
|
]
|
|
|
|
elsif args.installed?
|
|
|
|
[Formula.installed.sort, Cask::Caskroom.casks.sort_by(&:full_name)]
|
|
|
|
else
|
|
|
|
T.cast(args.named.to_formulae_to_casks, [T::Array[Formula], T::Array[Cask::Cask]])
|
|
|
|
end, [T::Array[Formula], T::Array[Cask::Cask]]
|
|
|
|
)
|
2024-03-29 18:39:39 -07:00
|
|
|
|
|
|
|
if args.variations?
|
|
|
|
{
|
|
|
|
"formulae" => formulae.map(&:to_hash_with_variations),
|
|
|
|
"casks" => casks.map(&:to_hash_with_variations),
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
"formulae" => formulae.map(&:to_hash),
|
|
|
|
"casks" => casks.map(&:to_h),
|
|
|
|
}
|
|
|
|
end
|
|
|
|
else
|
|
|
|
raise
|
|
|
|
end
|
2020-10-08 19:55:24 -04:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
puts JSON.pretty_generate(json)
|
2020-10-08 19:55:24 -04:00
|
|
|
end
|
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
sig { params(formula_or_cask: T.any(Formula, Cask::Cask)).returns(String) }
|
2024-03-29 18:39:39 -07:00
|
|
|
def github_info(formula_or_cask)
|
|
|
|
path = case formula_or_cask
|
|
|
|
when Formula
|
|
|
|
formula = formula_or_cask
|
2025-06-17 16:33:16 +01:00
|
|
|
tap = formula.tap
|
|
|
|
return formula.path.to_s if tap.blank? || tap.remote.blank?
|
|
|
|
|
|
|
|
formula.path.relative_path_from(tap.path)
|
2024-03-29 18:39:39 -07:00
|
|
|
when Cask::Cask
|
|
|
|
cask = formula_or_cask
|
2025-06-17 16:33:16 +01:00
|
|
|
tap = cask.tap
|
|
|
|
return cask.sourcefile_path.to_s if tap.blank? || tap.remote.blank?
|
|
|
|
|
2024-07-04 12:07:53 -04:00
|
|
|
if cask.sourcefile_path.blank? || cask.sourcefile_path.extname != ".rb"
|
2025-06-17 16:33:16 +01:00
|
|
|
return "#{tap.default_remote}/blob/HEAD/#{tap.relative_cask_path(cask.token)}"
|
2024-03-29 18:39:39 -07:00
|
|
|
end
|
2020-10-09 21:09:07 -04:00
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
cask.sourcefile_path.relative_path_from(tap.path)
|
2024-03-29 18:39:39 -07:00
|
|
|
end
|
2020-10-09 21:09:07 -04:00
|
|
|
|
2025-06-17 16:57:50 -04:00
|
|
|
github_remote_path(tap.remote, path.to_s)
|
2021-06-05 12:27:24 -04:00
|
|
|
end
|
2020-10-09 21:09:07 -04:00
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
sig { params(formula: Formula).void }
|
2024-03-29 18:39:39 -07:00
|
|
|
def info_formula(formula)
|
|
|
|
specs = []
|
2012-08-15 22:08:40 -05:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
if (stable = formula.stable)
|
|
|
|
string = "stable #{stable.version}"
|
|
|
|
string += " (bottled)" if stable.bottled? && formula.pour_bottle?
|
|
|
|
specs << string
|
|
|
|
end
|
2012-03-06 17:35:10 +00:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
specs << "HEAD" if formula.head
|
2023-02-24 15:44:53 +00:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
attrs = []
|
|
|
|
attrs << "pinned at #{formula.pinned_version}" if formula.pinned?
|
|
|
|
attrs << "keg-only" if formula.keg_only?
|
2023-08-10 16:08:47 +01:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
puts "#{oh1_title(formula.full_name)}: #{specs * ", "}#{" [#{attrs * ", "}]" unless attrs.empty?}"
|
|
|
|
puts formula.desc if formula.desc
|
|
|
|
puts Formatter.url(formula.homepage) if formula.homepage
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
deprecate_disable_info_string = DeprecateDisable.message(formula)
|
2024-07-14 11:49:43 -04:00
|
|
|
if deprecate_disable_info_string.present?
|
|
|
|
deprecate_disable_info_string.tap { |info_string| info_string[0] = info_string[0].upcase }
|
|
|
|
puts deprecate_disable_info_string
|
|
|
|
end
|
2014-03-10 14:56:02 -05:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
conflicts = formula.conflicts.map do |conflict|
|
|
|
|
reason = " (because #{conflict.reason})" if conflict.reason
|
|
|
|
"#{conflict.name}#{reason}"
|
|
|
|
end.sort!
|
|
|
|
unless conflicts.empty?
|
|
|
|
puts <<~EOS
|
|
|
|
Conflicts with:
|
|
|
|
#{conflicts.join("\n ")}
|
|
|
|
EOS
|
|
|
|
end
|
2014-03-10 14:56:02 -05:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
kegs = formula.installed_kegs
|
2024-04-28 03:23:21 +02:00
|
|
|
heads, versioned = kegs.partition { |keg| keg.version.head? }
|
2024-03-29 18:39:39 -07:00
|
|
|
kegs = [
|
2024-04-28 03:23:21 +02:00
|
|
|
*heads.sort_by { |keg| -keg.tab.time.to_i },
|
2024-03-31 16:53:15 -07:00
|
|
|
*versioned.sort_by(&:scheme_and_version),
|
2025-02-18 08:35:04 +00:00
|
|
|
]
|
2024-03-29 18:39:39 -07:00
|
|
|
if kegs.empty?
|
|
|
|
puts "Not installed"
|
2024-08-26 16:59:37 -04:00
|
|
|
if (bottle = formula.bottle)
|
|
|
|
begin
|
|
|
|
bottle.fetch_tab(quiet: !args.debug?) if args.fetch_manifest?
|
|
|
|
bottle_size = bottle.bottle_size
|
|
|
|
installed_size = bottle.installed_size
|
|
|
|
puts "Bottle Size: #{disk_usage_readable(bottle_size)}" if bottle_size
|
|
|
|
puts "Installed Size: #{disk_usage_readable(installed_size)}" if installed_size
|
|
|
|
rescue RuntimeError => e
|
|
|
|
odebug e
|
|
|
|
end
|
|
|
|
end
|
2024-03-29 18:39:39 -07:00
|
|
|
else
|
2024-04-10 19:02:09 -07:00
|
|
|
puts "Installed"
|
2024-03-29 18:39:39 -07:00
|
|
|
kegs.each do |keg|
|
|
|
|
puts "#{keg} (#{keg.abv})#{" *" if keg.linked?}"
|
2024-04-28 03:23:21 +02:00
|
|
|
tab = keg.tab.to_s
|
2024-03-29 18:39:39 -07:00
|
|
|
puts " #{tab}" unless tab.empty?
|
|
|
|
end
|
|
|
|
end
|
2012-04-05 21:11:49 -05:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
puts "From: #{Formatter.url(github_info(formula))}"
|
2012-04-05 21:11:49 -05:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
puts "License: #{SPDX.license_expression_to_string formula.license}" if formula.license.present?
|
2011-06-21 13:57:09 -05:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
unless formula.deps.empty?
|
|
|
|
ohai "Dependencies"
|
|
|
|
%w[build required recommended optional].map do |type|
|
|
|
|
deps = formula.deps.send(type).uniq
|
|
|
|
puts "#{type.capitalize}: #{decorate_dependencies deps}" unless deps.empty?
|
|
|
|
end
|
|
|
|
end
|
2020-09-07 13:00:02 -04:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
unless formula.requirements.to_a.empty?
|
|
|
|
ohai "Requirements"
|
|
|
|
%w[build required recommended optional].map do |type|
|
|
|
|
reqs = formula.requirements.select(&:"#{type}?")
|
|
|
|
next if reqs.to_a.empty?
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
puts "#{type.capitalize}: #{decorate_requirements(reqs)}"
|
|
|
|
end
|
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
if !formula.options.empty? || formula.head
|
|
|
|
ohai "Options"
|
|
|
|
Options.dump_for_formula formula
|
|
|
|
end
|
2012-03-06 17:35:10 +00:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
caveats = Caveats.new(formula)
|
|
|
|
ohai "Caveats", caveats.to_s unless caveats.empty?
|
2020-06-10 12:29:54 -04:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
Utils::Analytics.formula_output(formula, args:)
|
2013-05-10 23:45:06 -05:00
|
|
|
end
|
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
sig { params(dependencies: T::Array[Dependency]).returns(String) }
|
2024-03-29 18:39:39 -07:00
|
|
|
def decorate_dependencies(dependencies)
|
|
|
|
deps_status = dependencies.map do |dep|
|
|
|
|
if dep.satisfied?([])
|
|
|
|
pretty_installed(dep_display_s(dep))
|
|
|
|
else
|
|
|
|
pretty_uninstalled(dep_display_s(dep))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
deps_status.join(", ")
|
|
|
|
end
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
sig { params(requirements: T::Array[Requirement]).returns(String) }
|
2024-03-29 18:39:39 -07:00
|
|
|
def decorate_requirements(requirements)
|
|
|
|
req_status = requirements.map do |req|
|
|
|
|
req_s = req.display_s
|
|
|
|
req.satisfied? ? pretty_installed(req_s) : pretty_uninstalled(req_s)
|
|
|
|
end
|
|
|
|
req_status.join(", ")
|
2016-09-18 00:12:49 -04:00
|
|
|
end
|
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
sig { params(dep: Dependency).returns(String) }
|
2024-03-29 18:39:39 -07:00
|
|
|
def dep_display_s(dep)
|
|
|
|
return dep.name if dep.option_tags.empty?
|
2012-08-04 15:40:36 -04:00
|
|
|
|
2024-03-29 18:39:39 -07:00
|
|
|
"#{dep.name} #{dep.option_tags.map { |o| "--#{o}" }.join(" ")}"
|
|
|
|
end
|
cmd/info: display analytics data.
When users don't have `HOMEBREW_NO_ANALYTICS` or
`HOMEBREW_NO_GITHUB_API` set let's display some analytics data in
`brew info`. This should be useful for both maintainers and for users of
Homebrew.
Note this by default combines all installs across options for a single
number; for formulae with lots of options it's a bit overwhelming to
print the installs per-option. However, for `HOMEBREW_DEVELOPER`s print
the full output.
Sample non-developer output:
```console
$ brew info wget
wget: stable 1.19.5 (bottled), HEAD
Internet file retriever
https://www.gnu.org/software/wget/
/usr/local/Cellar/wget/1.19.5 (49 files, 3.7MB) *
Built from source on 2018-09-03 at 20:46:32
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/wget.rb
==> Dependencies
Build: pkg-config ✔
Required: libidn2 ✔, openssl ✔
Optional: pcre ✔, libmetalink ✘, gpgme ✘
==> Options
--with-debug
Build with debug support
--with-gpgme
Build with gpgme support
--with-libmetalink
Build with libmetalink support
--with-pcre
Build with pcre support
--HEAD
Install HEAD version
==> Analytics
install: 84638 (30d), 353800 (90d), 1372775 (365d)
install_on_request: 77926 (30d), 291305 (90d), 1044898 (365d)
build_error: 11 (30d)
```
Sample developer output:
```console
$ brew info wget
wget: stable 1.19.5 (bottled), HEAD
Internet file retriever
https://www.gnu.org/software/wget/
/usr/local/Cellar/wget/1.19.5 (49 files, 3.7MB) *
Built from source on 2018-09-03 at 20:46:32
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/wget.rb
==> Dependencies
Build: pkg-config ✔
Required: libidn2 ✔, openssl ✔
Optional: pcre ✔, libmetalink ✘, gpgme ✘
==> Options
--with-debug
Build with debug support
--with-gpgme
Build with gpgme support
--with-libmetalink
Build with libmetalink support
--with-pcre
Build with pcre support
--HEAD
Install HEAD version
==> Analytics
==> install (30d)
wget: 84516
wget --with-debug: 51
wget --with-libressl: 16
wget --with-pcre: 14
wget --with-pcre --with-libmetalink --with-gpgme: 12
wget --with-debug --with-pcre --with-libmetalink --with-gpgme: 8
wget --HEAD: 3
wget --HEAD --with-debug --with-libmetalink --with-gpgme: 3
wget --with-gpgme: 3
wget --with-libmetalink: 3
wget --with-pcre --with-libmetalink: 3
wget --with-debug --with-pcre: 2
wget --with-libmetalink --with-gpgme: 2
wget --with-pcre --with-gpgme: 2
==> install (90d)
wget: 353131
wget --with-debug: 188
wget --with-pcre: 138
wget --with-pcre --with-libmetalink --with-gpgme: 118
wget --with-libressl: 81
wget --with-debug --with-pcre --with-libmetalink --with-gpgme: 47
wget --with-pcre --with-libmetalink: 31
wget --HEAD: 13
wget --with-pcre --with-gpgme: 12
wget --with-gpgme: 11
wget --with-debug --with-pcre: 10
wget --with-libmetalink: 8
wget --HEAD --with-pcre --with-libmetalink --with-gpgme: 4
wget --with-debug --with-pcre --with-libmetalink: 4
wget --with-libmetalink --with-gpgme: 4
==> install (365d)
wget: 1369530
wget --with-pcre: 810
wget --with-debug: 649
wget --with-pcre --with-libmetalink --with-gpgme: 554
wget --with-libressl: 479
wget --with-debug --with-pcre --with-libmetalink --with-gpgme: 235
wget --with-pcre --with-libmetalink: 184
wget --with-gpgme: 67
wget --with-pcre --with-gpgme: 67
wget --with-debug --with-pcre: 65
wget --HEAD: 54
wget --with-libmetalink: 30
wget --with-libmetalink --with-gpgme: 27
wget --with-debug --with-pcre --with-libmetalink: 24
==> install_on_request (30d)
wget: 77827
wget --with-debug: 48
wget --with-pcre: 12
wget --with-pcre --with-libmetalink --with-gpgme: 11
wget --with-debug --with-pcre --with-libmetalink --with-gpgme: 8
wget --HEAD: 3
wget --HEAD --with-debug --with-libmetalink --with-gpgme: 3
wget --with-gpgme: 3
wget --with-libmetalink: 3
wget --with-debug --with-pcre: 2
wget --with-libmetalink --with-gpgme: 2
wget --with-pcre --with-gpgme: 2
wget --with-pcre --with-libmetalink: 2
==> install_on_request (90d)
wget: 290818
wget --with-debug: 157
wget --with-pcre --with-libmetalink --with-gpgme: 101
wget --with-pcre: 100
wget --with-debug --with-pcre --with-libmetalink --with-gpgme: 42
wget --with-pcre --with-libmetalink: 30
wget --HEAD: 13
wget --with-pcre --with-gpgme: 11
wget --with-gpgme: 10
wget --with-debug --with-pcre: 8
wget --with-libmetalink: 7
wget --HEAD --with-pcre --with-libmetalink --with-gpgme: 4
wget --with-debug --with-pcre --with-libmetalink: 4
==> install_on_request (365d)
wget: 1042845
wget --with-pcre: 504
wget --with-debug: 458
wget --with-pcre --with-libmetalink --with-gpgme: 432
wget --with-debug --with-pcre --with-libmetalink --with-gpgme: 201
wget --with-pcre --with-libmetalink: 158
wget --with-gpgme: 61
wget --HEAD: 54
wget --with-pcre --with-gpgme: 49
wget --with-debug --with-pcre: 47
wget --with-debug --with-pcre --with-libmetalink: 24
wget --with-libressl: 23
wget --with-libmetalink: 22
wget --with-libmetalink --with-gpgme: 20
==> build_error (30d)
wget: 9
wget --HEAD: 1
wget --with-debug: 1
```
2018-09-06 14:18:30 +01:00
|
|
|
|
2025-06-17 16:33:16 +01:00
|
|
|
sig { params(cask: Cask::Cask).void }
|
2024-03-29 18:39:39 -07:00
|
|
|
def info_cask(cask)
|
|
|
|
require "cask/info"
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2024-12-11 23:24:22 -08:00
|
|
|
Cask::Info.info(cask, args:)
|
2016-10-17 04:13:48 -04:00
|
|
|
end
|
2013-11-11 14:15:46 +00:00
|
|
|
end
|
2020-10-08 19:55:24 -04:00
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|