mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
cmd/list.rb: --formula, --cask as default on TTY outputs
cmd/list.rb: --formula, --cask as default TTY: cmd/list.rb: proper deprecated message on non TTY outputs update manpage update zsh completion updated manpages/brew.1 update tests return list_casks list_spec.rb: not output to stderr
This commit is contained in:
parent
5133b4cf89
commit
c8809ce730
@ -33,9 +33,9 @@ module Homebrew
|
|||||||
description: "Show the versions of pinned formulae, or only the specified (pinned) "\
|
description: "Show the versions of pinned formulae, or only the specified (pinned) "\
|
||||||
"formulae if <formula> are provided. See also `pin`, `unpin`."
|
"formulae if <formula> are provided. See also `pin`, `unpin`."
|
||||||
switch "--formula", "--formulae",
|
switch "--formula", "--formulae",
|
||||||
description: "List only formulae."
|
description: "List only formulae. `This is the default action on non TTY.`"
|
||||||
switch "--cask", "--casks",
|
switch "--cask", "--casks",
|
||||||
description: "List only casks."
|
description: "List only casks, or <cask> if provided."
|
||||||
# passed through to ls
|
# passed through to ls
|
||||||
switch "-1",
|
switch "-1",
|
||||||
description: "Force output to be one entry per line. " \
|
description: "Force output to be one entry per line. " \
|
||||||
@ -86,7 +86,13 @@ module Homebrew
|
|||||||
ls_args << "-r" if args.r?
|
ls_args << "-r" if args.r?
|
||||||
ls_args << "-t" if args.t?
|
ls_args << "-t" if args.t?
|
||||||
|
|
||||||
|
if !$stdout.tty? && !args.formula?
|
||||||
|
odeprecated "`brew list` to only list formulae", "`brew list --formula`"
|
||||||
safe_system "ls", *ls_args, HOMEBREW_CELLAR
|
safe_system "ls", *ls_args, HOMEBREW_CELLAR
|
||||||
|
else
|
||||||
|
safe_system "ls", *ls_args, HOMEBREW_CELLAR
|
||||||
|
list_casks(args: args) unless args.formula?
|
||||||
|
end
|
||||||
end
|
end
|
||||||
elsif args.verbose? || !$stdout.tty?
|
elsif args.verbose? || !$stdout.tty?
|
||||||
system_command! "find", args: args.named.to_kegs.map(&:to_s) + %w[-not -type d -print], print_stdout: true
|
system_command! "find", args: args.named.to_kegs.map(&:to_s) + %w[-not -type d -print], print_stdout: true
|
||||||
|
@ -14,7 +14,7 @@ describe "brew list", :integration_test do
|
|||||||
(HOMEBREW_CELLAR/f/"1.0/somedir").mkpath
|
(HOMEBREW_CELLAR/f/"1.0/somedir").mkpath
|
||||||
end
|
end
|
||||||
|
|
||||||
expect { brew "list" }
|
expect { brew "list", "--formula" }
|
||||||
.to output("#{formulae.join("\n")}\n").to_stdout
|
.to output("#{formulae.join("\n")}\n").to_stdout
|
||||||
.and not_to_output.to_stderr
|
.and not_to_output.to_stderr
|
||||||
.and be_a_success
|
.and be_a_success
|
||||||
|
@ -62,10 +62,17 @@ __brew_formulae() {
|
|||||||
|
|
||||||
__brew_installed_formulae() {
|
__brew_installed_formulae() {
|
||||||
local -a formulae
|
local -a formulae
|
||||||
formulae=($(brew list))
|
formulae=($(brew list --formula))
|
||||||
_describe -t formulae 'installed formulae' formulae
|
_describe -t formulae 'installed formulae' formulae
|
||||||
}
|
}
|
||||||
|
|
||||||
|
__brew_installed_casks() {
|
||||||
|
local -a list
|
||||||
|
local expl
|
||||||
|
list=( $(brew list --cask) )
|
||||||
|
_wanted list expl 'installed casks' compadd -a list
|
||||||
|
}
|
||||||
|
|
||||||
__brew_outdated_formulae() {
|
__brew_outdated_formulae() {
|
||||||
local -a formulae
|
local -a formulae
|
||||||
formulae=($(brew outdated))
|
formulae=($(brew outdated))
|
||||||
@ -493,11 +500,12 @@ _brew_linkage() {
|
|||||||
# brew list, ls [--full-name]:
|
# brew list, ls [--full-name]:
|
||||||
# brew list, ls --unbrewed:
|
# brew list, ls --unbrewed:
|
||||||
# brew list, ls [--versions [--multiple]] [--pinned] [formulae]:
|
# brew list, ls [--versions [--multiple]] [--pinned] [formulae]:
|
||||||
# brew list, ls --cask:
|
# brew list, ls [--cask|--formula]:
|
||||||
_brew_list() {
|
_brew_list() {
|
||||||
local state
|
local state
|
||||||
_arguments \
|
_arguments \
|
||||||
- formulae \
|
- formulae \
|
||||||
|
'--formula[list install formulae]' \
|
||||||
'--full-name[print formulae with fully-qualified names]' \
|
'--full-name[print formulae with fully-qualified names]' \
|
||||||
'--unbrewed[files in brew --prefix not controlled by brew]' \
|
'--unbrewed[files in brew --prefix not controlled by brew]' \
|
||||||
'--pinned[list all versions of pinned formulae]' \
|
'--pinned[list all versions of pinned formulae]' \
|
||||||
@ -575,7 +583,7 @@ _brew_outdated() {
|
|||||||
'--fetch-HEAD[detect if the HEAD installation of the formula is outdated]' \
|
'--fetch-HEAD[detect if the HEAD installation of the formula is outdated]' \
|
||||||
- cask \
|
- cask \
|
||||||
'--cask[list outdated Casks]' \
|
'--cask[list outdated Casks]' \
|
||||||
'--greedy[also list Casks with auto_updates or version \:latest]' \
|
'--greedy[also list Casks with auto_updates or version \:latest]'
|
||||||
}
|
}
|
||||||
|
|
||||||
# brew pin formulae:
|
# brew pin formulae:
|
||||||
@ -818,7 +826,7 @@ _brew_update_test() {
|
|||||||
# install-options is copied from brew install
|
# install-options is copied from brew install
|
||||||
_brew_upgrade() {
|
_brew_upgrade() {
|
||||||
_arguments \
|
_arguments \
|
||||||
'--cask[upgrade installed Casks with newer versions]'
|
'--cask[upgrade installed Casks with newer versions]' \
|
||||||
'--cleanup[remove previously installed formula version(s)]' \
|
'--cleanup[remove previously installed formula version(s)]' \
|
||||||
'--fetch-HEAD[detect if the HEAD installation of the formula is outdated]' \
|
'--fetch-HEAD[detect if the HEAD installation of the formula is outdated]' \
|
||||||
- normal-install \
|
- normal-install \
|
||||||
|
@ -424,9 +424,9 @@ If *`formula`* is provided, summarise the paths within its current keg.
|
|||||||
* `--pinned`:
|
* `--pinned`:
|
||||||
Show the versions of pinned formulae, or only the specified (pinned) formulae if *`formula`* are provided. See also `pin`, `unpin`.
|
Show the versions of pinned formulae, or only the specified (pinned) formulae if *`formula`* are provided. See also `pin`, `unpin`.
|
||||||
* `--formula`:
|
* `--formula`:
|
||||||
List only formulae.
|
List only formulae. `This is the default action on non TTY.`
|
||||||
* `--cask`:
|
* `--cask`:
|
||||||
List only casks.
|
List only casks, or *`cask`* if provided.
|
||||||
* `-1`:
|
* `-1`:
|
||||||
Force output to be one entry per line. This is the default when output is not to a terminal.
|
Force output to be one entry per line. This is the default when output is not to a terminal.
|
||||||
* `-l`:
|
* `-l`:
|
||||||
|
@ -653,11 +653,11 @@ Show the versions of pinned formulae, or only the specified (pinned) formulae if
|
|||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-formula\fR
|
\fB\-\-formula\fR
|
||||||
List only formulae\.
|
List only formulae\. \fBThis is the default action on non TTY\.\fR
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-cask\fR
|
\fB\-\-cask\fR
|
||||||
List only casks\.
|
List only casks, or \fIcask\fR if provided\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-1\fR
|
\fB\-1\fR
|
||||||
|
Loading…
x
Reference in New Issue
Block a user