Merge pull request #12464 from Homebrew/update-man-completions

Update maintainers, manpage and completions.
This commit is contained in:
Mike McQuaid 2021-11-22 12:54:47 +00:00 committed by GitHub
commit 354718c40a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 13 deletions

View File

@ -1269,6 +1269,7 @@ _brew_linkage() {
--help --help
--quiet --quiet
--reverse --reverse
--strict
--test --test
--verbose --verbose
" "
@ -1611,7 +1612,6 @@ _brew_pr_upload() {
--committer --committer
--debug --debug
--dry-run --dry-run
--github-org
--help --help
--keep-old --keep-old
--no-commit --no-commit

View File

@ -396,7 +396,7 @@ __fish_brew_complete_arg 'bump; and not __fish_seen_argument -l formula -l formu
__fish_brew_complete_cmd 'bump-cask-pr' 'Create a pull request to update cask with a new version' __fish_brew_complete_cmd 'bump-cask-pr' 'Create a pull request to update cask with a new version'
__fish_brew_complete_arg 'bump-cask-pr' -l commit -d 'When passed with `--write`, generate a new commit after writing changes to the cask file' __fish_brew_complete_arg 'bump-cask-pr' -l commit -d 'When passed with `--write-only`, generate a new commit after writing changes to the cask file'
__fish_brew_complete_arg 'bump-cask-pr' -l debug -d 'Display any debugging information' __fish_brew_complete_arg 'bump-cask-pr' -l debug -d 'Display any debugging information'
__fish_brew_complete_arg 'bump-cask-pr' -l dry-run -d 'Print what would be done rather than doing it' __fish_brew_complete_arg 'bump-cask-pr' -l dry-run -d 'Print what would be done rather than doing it'
__fish_brew_complete_arg 'bump-cask-pr' -l force -d 'Ignore duplicate open PRs' __fish_brew_complete_arg 'bump-cask-pr' -l force -d 'Ignore duplicate open PRs'
@ -910,6 +910,7 @@ __fish_brew_complete_arg 'linkage' -l debug -d 'Display any debugging informatio
__fish_brew_complete_arg 'linkage' -l help -d 'Show this message' __fish_brew_complete_arg 'linkage' -l help -d 'Show this message'
__fish_brew_complete_arg 'linkage' -l quiet -d 'Make some output more quiet' __fish_brew_complete_arg 'linkage' -l quiet -d 'Make some output more quiet'
__fish_brew_complete_arg 'linkage' -l reverse -d 'For every library that a keg references, print its dylib path followed by the binaries that link to it' __fish_brew_complete_arg 'linkage' -l reverse -d 'For every library that a keg references, print its dylib path followed by the binaries that link to it'
__fish_brew_complete_arg 'linkage' -l strict -d 'Exit with a non-zero status if any undeclared dependencies with linkage are found'
__fish_brew_complete_arg 'linkage' -l test -d 'Show only missing libraries and exit with a non-zero status if any missing libraries are found' __fish_brew_complete_arg 'linkage' -l test -d 'Show only missing libraries and exit with a non-zero status if any missing libraries are found'
__fish_brew_complete_arg 'linkage' -l verbose -d 'Make some output more verbose' __fish_brew_complete_arg 'linkage' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_arg 'linkage' -a '(__fish_brew_suggest_formulae_installed)' __fish_brew_complete_arg 'linkage' -a '(__fish_brew_suggest_formulae_installed)'
@ -1117,7 +1118,6 @@ __fish_brew_complete_cmd 'pr-upload' 'Apply the bottle commit and publish bottle
__fish_brew_complete_arg 'pr-upload' -l committer -d 'Specify a committer name and email in `git`\'s standard author format' __fish_brew_complete_arg 'pr-upload' -l committer -d 'Specify a committer name and email in `git`\'s standard author format'
__fish_brew_complete_arg 'pr-upload' -l debug -d 'Display any debugging information' __fish_brew_complete_arg 'pr-upload' -l debug -d 'Display any debugging information'
__fish_brew_complete_arg 'pr-upload' -l dry-run -d 'Print what would be done rather than doing it' __fish_brew_complete_arg 'pr-upload' -l dry-run -d 'Print what would be done rather than doing it'
__fish_brew_complete_arg 'pr-upload' -l github-org -d 'Upload to the specified GitHub organisation\'s GitHub Packages (default: `homebrew`)'
__fish_brew_complete_arg 'pr-upload' -l help -d 'Show this message' __fish_brew_complete_arg 'pr-upload' -l help -d 'Show this message'
__fish_brew_complete_arg 'pr-upload' -l keep-old -d 'If the formula specifies a rebuild version, attempt to preserve its value in the generated DSL' __fish_brew_complete_arg 'pr-upload' -l keep-old -d 'If the formula specifies a rebuild version, attempt to preserve its value in the generated DSL'
__fish_brew_complete_arg 'pr-upload' -l no-commit -d 'Do not generate a new commit before uploading' __fish_brew_complete_arg 'pr-upload' -l no-commit -d 'Do not generate a new commit before uploading'

View File

@ -492,7 +492,7 @@ _brew_bump() {
# brew bump-cask-pr # brew bump-cask-pr
_brew_bump_cask_pr() { _brew_bump_cask_pr() {
_arguments \ _arguments \
'--commit[When passed with `--write`, generate a new commit after writing changes to the cask file]' \ '--commit[When passed with `--write-only`, generate a new commit after writing changes to the cask file]' \
'--debug[Display any debugging information]' \ '--debug[Display any debugging information]' \
'(--write)--dry-run[Print what would be done rather than doing it]' \ '(--write)--dry-run[Print what would be done rather than doing it]' \
'--force[Ignore duplicate open PRs]' \ '--force[Ignore duplicate open PRs]' \
@ -1110,6 +1110,7 @@ _brew_linkage() {
'--help[Show this message]' \ '--help[Show this message]' \
'--quiet[Make some output more quiet]' \ '--quiet[Make some output more quiet]' \
'--reverse[For every library that a keg references, print its dylib path followed by the binaries that link to it]' \ '--reverse[For every library that a keg references, print its dylib path followed by the binaries that link to it]' \
'--strict[Exit with a non-zero status if any undeclared dependencies with linkage are found]' \
'--test[Show only missing libraries and exit with a non-zero status if any missing libraries are found]' \ '--test[Show only missing libraries and exit with a non-zero status if any missing libraries are found]' \
'--verbose[Make some output more verbose]' \ '--verbose[Make some output more verbose]' \
- installed_formula \ - installed_formula \
@ -1364,7 +1365,6 @@ _brew_pr_upload() {
'--committer[Specify a committer name and email in `git`'\''s standard author format]' \ '--committer[Specify a committer name and email in `git`'\''s standard author format]' \
'--debug[Display any debugging information]' \ '--debug[Display any debugging information]' \
'--dry-run[Print what would be done rather than doing it]' \ '--dry-run[Print what would be done rather than doing it]' \
'--github-org[Upload to the specified GitHub organisation'\''s GitHub Packages (default: `homebrew`)]' \
'--help[Show this message]' \ '--help[Show this message]' \
'(--upload-only)--keep-old[If the formula specifies a rebuild version, attempt to preserve its value in the generated DSL]' \ '(--upload-only)--keep-old[If the formula specifies a rebuild version, attempt to preserve its value in the generated DSL]' \
'(--upload-only)--no-commit[Do not generate a new commit before uploading]' \ '(--upload-only)--no-commit[Do not generate a new commit before uploading]' \

View File

@ -934,7 +934,7 @@ supplied by the user.
* `--write-only`: * `--write-only`:
Make the expected file modifications without taking any Git actions. Make the expected file modifications without taking any Git actions.
* `--commit`: * `--commit`:
When passed with `--write`, generate a new commit after writing changes to the cask file. When passed with `--write-only`, generate a new commit after writing changes to the cask file.
* `--no-audit`: * `--no-audit`:
Don't run `brew audit` before opening the PR. Don't run `brew audit` before opening the PR.
* `--online`: * `--online`:
@ -1176,6 +1176,8 @@ provided, check all kegs. Raises an error if run on uninstalled formulae.
* `--test`: * `--test`:
Show only missing libraries and exit with a non-zero status if any missing libraries are found. Show only missing libraries and exit with a non-zero status if any missing libraries are found.
* `--strict`:
Exit with a non-zero status if any undeclared dependencies with linkage are found.
* `--reverse`: * `--reverse`:
For every library that a keg references, print its dylib path followed by the binaries that link to it. For every library that a keg references, print its dylib path followed by the binaries that link to it.
* `--cached`: * `--cached`:
@ -1304,8 +1306,6 @@ Apply the bottle commit and publish bottles to a host.
Skip running `brew bottle` before uploading. Skip running `brew bottle` before uploading.
* `--committer`: * `--committer`:
Specify a committer name and email in `git`'s standard author format. Specify a committer name and email in `git`'s standard author format.
* `--github-org`:
Upload to the specified GitHub organisation's GitHub Packages (default: `homebrew`).
* `--root-url`: * `--root-url`:
Use the specified *`URL`* as the root of the bottle's URL instead of Homebrew's default. Use the specified *`URL`* as the root of the bottle's URL instead of Homebrew's default.
* `--root-url-using`: * `--root-url-using`:

View File

@ -1315,7 +1315,7 @@ Make the expected file modifications without taking any Git actions\.
. .
.TP .TP
\fB\-\-commit\fR \fB\-\-commit\fR
When passed with \fB\-\-write\fR, generate a new commit after writing changes to the cask file\. When passed with \fB\-\-write\-only\fR, generate a new commit after writing changes to the cask file\.
. .
.TP .TP
\fB\-\-no\-audit\fR \fB\-\-no\-audit\fR
@ -1664,6 +1664,10 @@ Check the library links from the given \fIformula\fR kegs\. If no \fIformula\fR
Show only missing libraries and exit with a non\-zero status if any missing libraries are found\. Show only missing libraries and exit with a non\-zero status if any missing libraries are found\.
. .
.TP .TP
\fB\-\-strict\fR
Exit with a non\-zero status if any undeclared dependencies with linkage are found\.
.
.TP
\fB\-\-reverse\fR \fB\-\-reverse\fR
For every library that a keg references, print its dylib path followed by the binaries that link to it\. For every library that a keg references, print its dylib path followed by the binaries that link to it\.
. .
@ -1874,10 +1878,6 @@ Skip running \fBbrew bottle\fR before uploading\.
Specify a committer name and email in \fBgit\fR\'s standard author format\. Specify a committer name and email in \fBgit\fR\'s standard author format\.
. .
.TP .TP
\fB\-\-github\-org\fR
Upload to the specified GitHub organisation\'s GitHub Packages (default: \fBhomebrew\fR)\.
.
.TP
\fB\-\-root\-url\fR \fB\-\-root\-url\fR
Use the specified \fIURL\fR as the root of the bottle\'s URL instead of Homebrew\'s default\. Use the specified \fIURL\fR as the root of the bottle\'s URL instead of Homebrew\'s default\.
. .