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.
This commit is contained in:
BrewTestBot 2022-08-03 18:07:13 +00:00
parent 154806d8eb
commit 74de603456
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
6 changed files with 75 additions and 0 deletions

View File

@ -670,6 +670,25 @@ _brew_config() {
esac esac
} }
_brew_contributions() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "${cur}" in
-*)
__brewcomp "
--debug
--from
--help
--quiet
--repositories
--to
--verbose
"
return
;;
*)
esac
}
_brew_create() { _brew_create() {
local cur="${COMP_WORDS[COMP_CWORD]}" local cur="${COMP_WORDS[COMP_CWORD]}"
case "${cur}" in case "${cur}" in
@ -2479,6 +2498,7 @@ _brew() {
commands) _brew_commands ;; commands) _brew_commands ;;
completions) _brew_completions ;; completions) _brew_completions ;;
config) _brew_config ;; config) _brew_config ;;
contributions) _brew_contributions ;;
create) _brew_create ;; create) _brew_create ;;
deps) _brew_deps ;; deps) _brew_deps ;;
desc) _brew_desc ;; desc) _brew_desc ;;

View File

@ -529,6 +529,16 @@ __fish_brew_complete_arg 'config' -l quiet -d 'Make some output more quiet'
__fish_brew_complete_arg 'config' -l verbose -d 'Make some output more verbose' __fish_brew_complete_arg 'config' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_cmd 'contributions' 'Contributions to Homebrew repos for a user'
__fish_brew_complete_arg 'contributions' -l debug -d 'Display any debugging information'
__fish_brew_complete_arg 'contributions' -l from -d 'Date (ISO-8601 format) to start searching contributions'
__fish_brew_complete_arg 'contributions' -l help -d 'Show this message'
__fish_brew_complete_arg 'contributions' -l quiet -d 'Make some output more quiet'
__fish_brew_complete_arg 'contributions' -l repositories -d 'Specify a comma-separated (no spaces) list of repositories to search. Supported repositories: `brew`, `core`, `cask`, `aliases`, `autoupdate`, `bundle`, `command-not-found`, `test-bot`, `services`, `cask-drivers`, `cask-fonts` and `cask-versions`.Omitting this flag, or specifying `--repositories=all`, will search all repositories'
__fish_brew_complete_arg 'contributions' -l to -d 'Date (ISO-8601 format) to stop searching contributions'
__fish_brew_complete_arg 'contributions' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_cmd 'create' 'Generate a formula or, with `--cask`, a cask for the downloadable file at URL and open it in the editor' __fish_brew_complete_cmd 'create' 'Generate a formula or, with `--cask`, a cask for the downloadable file at URL and open it in the editor'
__fish_brew_complete_arg 'create' -l HEAD -d 'Indicate that URL points to the package\'s repository rather than a file' __fish_brew_complete_arg 'create' -l HEAD -d 'Indicate that URL points to the package\'s repository rather than a file'
__fish_brew_complete_arg 'create' -l autotools -d 'Create a basic template for an Autotools-style build' __fish_brew_complete_arg 'create' -l autotools -d 'Create a basic template for an Autotools-style build'

View File

@ -26,6 +26,7 @@ command
commands commands
completions completions
config config
contributions
create create
deps deps
desc desc

View File

@ -152,6 +152,7 @@ __brew_internal_commands() {
'commands:Show lists of built-in and external commands' 'commands:Show lists of built-in and external commands'
'completions:Control whether Homebrew automatically links external tap shell completion files' 'completions:Control whether Homebrew automatically links external tap shell completion files'
'config:Show Homebrew and system configuration info useful for debugging' 'config:Show Homebrew and system configuration info useful for debugging'
'contributions:Contributions to Homebrew repos for a user'
'create:Generate a formula or, with `--cask`, a cask for the downloadable file at URL and open it in the editor' 'create:Generate a formula or, with `--cask`, a cask for the downloadable file at URL and open it in the editor'
'deps:Show dependencies for formula' 'deps:Show dependencies for formula'
'desc:Display formula'\''s name and one-line description' 'desc:Display formula'\''s name and one-line description'
@ -652,6 +653,18 @@ _brew_config() {
'--verbose[Make some output more verbose]' '--verbose[Make some output more verbose]'
} }
# brew contributions
_brew_contributions() {
_arguments \
'--debug[Display any debugging information]' \
'--from[Date (ISO-8601 format) to start searching contributions]' \
'--help[Show this message]' \
'--quiet[Make some output more quiet]' \
'--repositories[Specify a comma-separated (no spaces) list of repositories to search. Supported repositories: `brew`, `core`, `cask`, `aliases`, `autoupdate`, `bundle`, `command-not-found`, `test-bot`, `services`, `cask-drivers`, `cask-fonts` and `cask-versions`.Omitting this flag, or specifying `--repositories=all`, will search all repositories]' \
'--to[Date (ISO-8601 format) to stop searching contributions]' \
'--verbose[Make some output more verbose]'
}
# brew create # brew create
_brew_create() { _brew_create() {
_arguments \ _arguments \

View File

@ -1081,6 +1081,19 @@ Display the source of a *`formula`* or *`cask`*.
Display the path to the file being used when invoking `brew` *`cmd`*. Display the path to the file being used when invoking `brew` *`cmd`*.
### `contributions` *`email|name`* [*`--repositories`*`=`]
Contributions to Homebrew repos for a user.
The first argument is a name (e.g. "BrewTestBot") or an email address (e.g. "brewtestbot@brew.sh").
* `--repositories`:
Specify a comma-separated (no spaces) list of repositories to search. Supported repositories: `brew`, `core`, `cask`, `aliases`, `autoupdate`, `bundle`, `command-not-found`, `test-bot`, `services`, `cask-drivers`, `cask-fonts` and `cask-versions`.Omitting this flag, or specifying `--repositories=all`, will search all repositories.
* `--from`:
Date (ISO-8601 format) to start searching contributions.
* `--to`:
Date (ISO-8601 format) to stop searching contributions.
### `create` [*`options`*] *`URL`* ### `create` [*`options`*] *`URL`*
Generate a formula or, with `--cask`, a cask for the downloadable file at *`URL`* Generate a formula or, with `--cask`, a cask for the downloadable file at *`URL`*

View File

@ -1539,6 +1539,24 @@ Treat all named arguments as casks\.
.SS "\fBcommand\fR \fIcommand\fR [\.\.\.]" .SS "\fBcommand\fR \fIcommand\fR [\.\.\.]"
Display the path to the file being used when invoking \fBbrew\fR \fIcmd\fR\. Display the path to the file being used when invoking \fBbrew\fR \fIcmd\fR\.
. .
.SS "\fBcontributions\fR \fIemail|name\fR [\fI\-\-repositories\fR\fB=\fR]"
Contributions to Homebrew repos for a user\.
.
.P
The first argument is a name (e\.g\. "BrewTestBot") or an email address (e\.g\. "brewtestbot@brew\.sh")\.
.
.TP
\fB\-\-repositories\fR
Specify a comma\-separated (no spaces) list of repositories to search\. Supported repositories: \fBbrew\fR, \fBcore\fR, \fBcask\fR, \fBaliases\fR, \fBautoupdate\fR, \fBbundle\fR, \fBcommand\-not\-found\fR, \fBtest\-bot\fR, \fBservices\fR, \fBcask\-drivers\fR, \fBcask\-fonts\fR and \fBcask\-versions\fR\.Omitting this flag, or specifying \fB\-\-repositories=all\fR, will search all repositories\.
.
.TP
\fB\-\-from\fR
Date (ISO\-8601 format) to start searching contributions\.
.
.TP
\fB\-\-to\fR
Date (ISO\-8601 format) to stop searching contributions\.
.
.SS "\fBcreate\fR [\fIoptions\fR] \fIURL\fR" .SS "\fBcreate\fR [\fIoptions\fR] \fIURL\fR"
Generate a formula or, with \fB\-\-cask\fR, a cask for the downloadable file at \fIURL\fR and open it in the editor\. Homebrew will attempt to automatically derive the formula name and version, but if it fails, you\'ll have to make your own template\. The \fBwget\fR formula serves as a simple example\. For the complete API, see: \fIhttps://rubydoc\.brew\.sh/Formula\fR Generate a formula or, with \fB\-\-cask\fR, a cask for the downloadable file at \fIURL\fR and open it in the editor\. Homebrew will attempt to automatically derive the formula name and version, but if it fails, you\'ll have to make your own template\. The \fBwget\fR formula serves as a simple example\. For the complete API, see: \fIhttps://rubydoc\.brew\.sh/Formula\fR
. .