From be8bc21083fd62b68c9f70f65462caa5a4c4547a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 18 Jun 2021 13:36:18 +0000 Subject: [PATCH] Update maintainers, manpage and completions. Autogenerated by the [update-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/update-man-completions.yml) workflow. --- completions/bash/brew | 35 -------------------------- completions/fish/brew.fish | 15 ----------- completions/internal_commands_list.txt | 2 -- completions/zsh/_brew | 21 ---------------- docs/Manpage.md | 2 +- manpages/brew.1 | 2 +- 6 files changed, 2 insertions(+), 75 deletions(-) diff --git a/completions/bash/brew b/completions/bash/brew index d592c40207..d2997bc25c 100644 --- a/completions/bash/brew +++ b/completions/bash/brew @@ -1383,22 +1383,6 @@ _brew_migrate() { __brew_complete_installed_formulae } -_brew_mirror() { - local cur="${COMP_WORDS[COMP_CWORD]}" - case "${cur}" in - -*) - __brewcomp " - --debug - --help - --quiet - --verbose - " - return - ;; - *) - esac -} - _brew_missing() { local cur="${COMP_WORDS[COMP_CWORD]}" case "${cur}" in @@ -1700,23 +1684,6 @@ _brew_release() { esac } -_brew_release_notes() { - local cur="${COMP_WORDS[COMP_CWORD]}" - case "${cur}" in - -*) - __brewcomp " - --debug - --help - --markdown - --quiet - --verbose - " - return - ;; - *) - esac -} - _brew_remove() { local cur="${COMP_WORDS[COMP_CWORD]}" case "${cur}" in @@ -2472,7 +2439,6 @@ _brew() { ls) _brew_ls ;; man) _brew_man ;; migrate) _brew_migrate ;; - mirror) _brew_mirror ;; missing) _brew_missing ;; options) _brew_options ;; outdated) _brew_outdated ;; @@ -2486,7 +2452,6 @@ _brew() { readall) _brew_readall ;; reinstall) _brew_reinstall ;; release) _brew_release ;; - release-notes) _brew_release_notes ;; remove) _brew_remove ;; rm) _brew_rm ;; ruby) _brew_ruby ;; diff --git a/completions/fish/brew.fish b/completions/fish/brew.fish index 4478fad7f2..bbe35d8aa2 100644 --- a/completions/fish/brew.fish +++ b/completions/fish/brew.fish @@ -972,13 +972,6 @@ __fish_brew_complete_arg 'migrate' -l verbose -d 'Make some output more verbose' __fish_brew_complete_arg 'migrate' -a '(__fish_brew_suggest_formulae_installed)' -__fish_brew_complete_cmd 'mirror' 'Reupload the stable URL of a formula for use as a mirror' -__fish_brew_complete_arg 'mirror' -l debug -d 'Display any debugging information' -__fish_brew_complete_arg 'mirror' -l help -d 'Show this message' -__fish_brew_complete_arg 'mirror' -l quiet -d 'Make some output more quiet' -__fish_brew_complete_arg 'mirror' -l verbose -d 'Make some output more verbose' - - __fish_brew_complete_cmd 'missing' 'Check the given formula kegs for missing dependencies' __fish_brew_complete_arg 'missing' -l debug -d 'Display any debugging information' __fish_brew_complete_arg 'missing' -l help -d 'Show this message' @@ -1163,14 +1156,6 @@ __fish_brew_complete_arg 'release' -l quiet -d 'Make some output more quiet' __fish_brew_complete_arg 'release' -l verbose -d 'Make some output more verbose' -__fish_brew_complete_cmd 'release-notes' 'Print the merged pull requests on Homebrew/brew between two Git refs' -__fish_brew_complete_arg 'release-notes' -l debug -d 'Display any debugging information' -__fish_brew_complete_arg 'release-notes' -l help -d 'Show this message' -__fish_brew_complete_arg 'release-notes' -l markdown -d 'Print as a Markdown list' -__fish_brew_complete_arg 'release-notes' -l quiet -d 'Make some output more quiet' -__fish_brew_complete_arg 'release-notes' -l verbose -d 'Make some output more verbose' - - __fish_brew_complete_cmd 'remove' 'Uninstall a formula or cask' __fish_brew_complete_arg 'remove' -l cask -d 'Treat all named arguments as casks' __fish_brew_complete_arg 'remove' -l debug -d 'Display any debugging information' diff --git a/completions/internal_commands_list.txt b/completions/internal_commands_list.txt index b23578fc26..b9bd13f3c8 100644 --- a/completions/internal_commands_list.txt +++ b/completions/internal_commands_list.txt @@ -58,7 +58,6 @@ log ls man migrate -mirror missing options outdated @@ -72,7 +71,6 @@ prof readall reinstall release -release-notes remove rm rubocop diff --git a/completions/zsh/_brew b/completions/zsh/_brew index 5bd1340fd9..335f9e801f 100644 --- a/completions/zsh/_brew +++ b/completions/zsh/_brew @@ -177,7 +177,6 @@ __brew_internal_commands() { 'log:Show the `git log` for formula, or show the log for the Homebrew repository if no formula is provided' 'man:Generate Homebrew'\''s manpages' 'migrate:Migrate renamed packages to new names, where formula are old names of packages' - 'mirror:Reupload the stable URL of a formula for use as a mirror' 'missing:Check the given formula kegs for missing dependencies' 'options:Show install options specific to formula' 'outdated:List installed casks and formulae that have an updated version available' @@ -191,7 +190,6 @@ __brew_internal_commands() { 'readall:Import all items from the specified tap, or from all installed taps if none is provided' 'reinstall:Uninstall and then reinstall a formula or cask using the same options it was originally installed with, plus any appended options specific to a formula' 'release:Create a new draft Homebrew/brew release with the appropriate version number and release notes' - 'release-notes:Print the merged pull requests on Homebrew/brew between two Git refs' 'rubocop:Installs, configures and runs Homebrew'\''s `rubocop`' 'ruby:Run a Ruby instance with Homebrew'\''s libraries loaded' 'search:Perform a substring search of cask tokens and formula names for text' @@ -1193,15 +1191,6 @@ _brew_migrate() { '*::installed_formula:__brew_installed_formulae' } -# brew mirror -_brew_mirror() { - _arguments \ - '--debug[Display any debugging information]' \ - '--help[Show this message]' \ - '--quiet[Make some output more quiet]' \ - '--verbose[Make some output more verbose]' -} - # brew missing _brew_missing() { _arguments \ @@ -1422,16 +1411,6 @@ _brew_release() { '--verbose[Make some output more verbose]' } -# brew release-notes -_brew_release_notes() { - _arguments \ - '--debug[Display any debugging information]' \ - '--help[Show this message]' \ - '--markdown[Print as a Markdown list]' \ - '--quiet[Make some output more quiet]' \ - '--verbose[Make some output more verbose]' -} - # brew remove _brew_remove() { _arguments \ diff --git a/docs/Manpage.md b/docs/Manpage.md index 6f4dde39ae..9344895b0d 100644 --- a/docs/Manpage.md +++ b/docs/Manpage.md @@ -511,7 +511,7 @@ reinstalled formulae or, every 30 days, for all formulae. * `--skip-cask-deps`: Skip installing cask dependencies. -### `search`, `-S` [*`options`*] [*`text`*|`/`*`regex`*`/` ...] +### `search`, `-S` [*`options`*] *`text`*|`/`*`regex`*`/` [...] Perform a substring search of cask tokens and formula names for *`text`*. If *`text`* is flanked by slashes, it is interpreted as a regular expression. diff --git a/manpages/brew.1 b/manpages/brew.1 index ccaf0441ad..1225a003bc 100644 --- a/manpages/brew.1 +++ b/manpages/brew.1 @@ -706,7 +706,7 @@ Disable/enable quarantining of downloads (default: enabled)\. \fB\-\-skip\-cask\-deps\fR Skip installing cask dependencies\. . -.SS "\fBsearch\fR, \fB\-S\fR [\fIoptions\fR] [\fItext\fR|\fB/\fR\fIregex\fR\fB/\fR \.\.\.]" +.SS "\fBsearch\fR, \fB\-S\fR [\fIoptions\fR] \fItext\fR|\fB/\fR\fIregex\fR\fB/\fR [\.\.\.]" Perform a substring search of cask tokens and formula names for \fItext\fR\. If \fItext\fR is flanked by slashes, it is interpreted as a regular expression\. The search for \fItext\fR is extended online to \fBhomebrew/core\fR and \fBhomebrew/cask\fR\. . .TP