Merge pull request #12464 from Homebrew/update-man-completions
Update maintainers, manpage and completions.
This commit is contained in:
commit
354718c40a
@ -1269,6 +1269,7 @@ _brew_linkage() {
|
||||
--help
|
||||
--quiet
|
||||
--reverse
|
||||
--strict
|
||||
--test
|
||||
--verbose
|
||||
"
|
||||
@ -1611,7 +1612,6 @@ _brew_pr_upload() {
|
||||
--committer
|
||||
--debug
|
||||
--dry-run
|
||||
--github-org
|
||||
--help
|
||||
--keep-old
|
||||
--no-commit
|
||||
|
@ -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_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 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'
|
||||
@ -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 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 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 verbose -d 'Make some output more verbose'
|
||||
__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 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 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 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'
|
||||
|
@ -492,7 +492,7 @@ _brew_bump() {
|
||||
# brew bump-cask-pr
|
||||
_brew_bump_cask_pr() {
|
||||
_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]' \
|
||||
'(--write)--dry-run[Print what would be done rather than doing it]' \
|
||||
'--force[Ignore duplicate open PRs]' \
|
||||
@ -1110,6 +1110,7 @@ _brew_linkage() {
|
||||
'--help[Show this message]' \
|
||||
'--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]' \
|
||||
'--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]' \
|
||||
'--verbose[Make some output more verbose]' \
|
||||
- installed_formula \
|
||||
@ -1364,7 +1365,6 @@ _brew_pr_upload() {
|
||||
'--committer[Specify a committer name and email in `git`'\''s standard author format]' \
|
||||
'--debug[Display any debugging information]' \
|
||||
'--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]' \
|
||||
'(--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]' \
|
||||
|
@ -934,7 +934,7 @@ supplied by the user.
|
||||
* `--write-only`:
|
||||
Make the expected file modifications without taking any Git actions.
|
||||
* `--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`:
|
||||
Don't run `brew audit` before opening the PR.
|
||||
* `--online`:
|
||||
@ -1176,6 +1176,8 @@ provided, check all kegs. Raises an error if run on uninstalled formulae.
|
||||
|
||||
* `--test`:
|
||||
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`:
|
||||
For every library that a keg references, print its dylib path followed by the binaries that link to it.
|
||||
* `--cached`:
|
||||
@ -1304,8 +1306,6 @@ Apply the bottle commit and publish bottles to a host.
|
||||
Skip running `brew bottle` before uploading.
|
||||
* `--committer`:
|
||||
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`:
|
||||
Use the specified *`URL`* as the root of the bottle's URL instead of Homebrew's default.
|
||||
* `--root-url-using`:
|
||||
|
@ -1315,7 +1315,7 @@ Make the expected file modifications without taking any Git actions\.
|
||||
.
|
||||
.TP
|
||||
\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
|
||||
\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\.
|
||||
.
|
||||
.TP
|
||||
\fB\-\-strict\fR
|
||||
Exit with a non\-zero status if any undeclared dependencies with linkage are found\.
|
||||
.
|
||||
.TP
|
||||
\fB\-\-reverse\fR
|
||||
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\.
|
||||
.
|
||||
.TP
|
||||
\fB\-\-github\-org\fR
|
||||
Upload to the specified GitHub organisation\'s GitHub Packages (default: \fBhomebrew\fR)\.
|
||||
.
|
||||
.TP
|
||||
\fB\-\-root\-url\fR
|
||||
Use the specified \fIURL\fR as the root of the bottle\'s URL instead of Homebrew\'s default\.
|
||||
.
|
||||
|
Loading…
x
Reference in New Issue
Block a user