Update manpage and completions.

Autogenerated by the [sponsors-maintainers-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/sponsors-maintainers-man-completions.yml) workflow.
This commit is contained in:
BrewTestBot 2025-07-15 08:41:19 +00:00
parent be806e4350
commit 366eed667b
No known key found for this signature in database
6 changed files with 75 additions and 0 deletions

View File

@ -2870,6 +2870,26 @@ _brew_update_maintainers() {
esac esac
} }
_brew_update_perl_resources() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "${cur}" in
-*)
__brewcomp "
--debug
--help
--ignore-errors
--print-only
--quiet
--silent
--verbose
"
return
;;
*) ;;
esac
__brew_complete_formulae
}
_brew_update_python_resources() { _brew_update_python_resources() {
local cur="${COMP_WORDS[COMP_CWORD]}" local cur="${COMP_WORDS[COMP_CWORD]}"
case "${cur}" in case "${cur}" in
@ -3258,6 +3278,7 @@ _brew() {
update-if-needed) _brew_update_if_needed ;; update-if-needed) _brew_update_if_needed ;;
update-license-data) _brew_update_license_data ;; update-license-data) _brew_update_license_data ;;
update-maintainers) _brew_update_maintainers ;; update-maintainers) _brew_update_maintainers ;;
update-perl-resources) _brew_update_perl_resources ;;
update-python-resources) _brew_update_python_resources ;; update-python-resources) _brew_update_python_resources ;;
update-report) _brew_update_report ;; update-report) _brew_update_report ;;
update-reset) _brew_update_reset ;; update-reset) _brew_update_reset ;;

View File

@ -1843,6 +1843,17 @@ __fish_brew_complete_arg 'update-maintainers' -l quiet -d 'Make some output more
__fish_brew_complete_arg 'update-maintainers' -l verbose -d 'Make some output more verbose' __fish_brew_complete_arg 'update-maintainers' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_cmd 'update-perl-resources' 'Update versions for CPAN resource blocks in formula'
__fish_brew_complete_arg 'update-perl-resources' -l debug -d 'Display any debugging information'
__fish_brew_complete_arg 'update-perl-resources' -l help -d 'Show this message'
__fish_brew_complete_arg 'update-perl-resources' -l ignore-errors -d 'Continue processing even if some resources can\'t be resolved'
__fish_brew_complete_arg 'update-perl-resources' -l print-only -d 'Print the updated resource blocks instead of changing formula'
__fish_brew_complete_arg 'update-perl-resources' -l quiet -d 'Make some output more quiet'
__fish_brew_complete_arg 'update-perl-resources' -l silent -d 'Suppress any output'
__fish_brew_complete_arg 'update-perl-resources' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_arg 'update-perl-resources' -a '(__fish_brew_suggest_formulae_all)'
__fish_brew_complete_cmd 'update-python-resources' 'Update versions for PyPI resource blocks in formula' __fish_brew_complete_cmd 'update-python-resources' 'Update versions for PyPI resource blocks in formula'
__fish_brew_complete_arg 'update-python-resources' -l debug -d 'Display any debugging information' __fish_brew_complete_arg 'update-python-resources' -l debug -d 'Display any debugging information'
__fish_brew_complete_arg 'update-python-resources' -l exclude-packages -d 'Exclude these packages when finding resources' __fish_brew_complete_arg 'update-python-resources' -l exclude-packages -d 'Exclude these packages when finding resources'

View File

@ -118,6 +118,7 @@ update
update-if-needed update-if-needed
update-license-data update-license-data
update-maintainers update-maintainers
update-perl-resources
update-python-resources update-python-resources
update-reset update-reset
update-sponsors update-sponsors

View File

@ -236,6 +236,7 @@ __brew_internal_commands() {
'update-if-needed:Runs `brew update --auto-update` only if needed' 'update-if-needed:Runs `brew update --auto-update` only if needed'
'update-license-data:Update SPDX license data in the Homebrew repository' 'update-license-data:Update SPDX license data in the Homebrew repository'
'update-maintainers:Update the list of maintainers in the `Homebrew/brew` README' 'update-maintainers:Update the list of maintainers in the `Homebrew/brew` README'
'update-perl-resources:Update versions for CPAN resource blocks in formula'
'update-python-resources:Update versions for PyPI resource blocks in formula' 'update-python-resources:Update versions for PyPI resource blocks in formula'
'update-report:The Ruby implementation of `brew update`' 'update-report:The Ruby implementation of `brew update`'
'update-reset:Fetch and reset Homebrew and all tap repositories (or any specified repository) using `git`(1) to their latest `origin/HEAD`' 'update-reset:Fetch and reset Homebrew and all tap repositories (or any specified repository) using `git`(1) to their latest `origin/HEAD`'
@ -2270,6 +2271,20 @@ _brew_update_maintainers() {
'--verbose[Make some output more verbose]' '--verbose[Make some output more verbose]'
} }
# brew update-perl-resources
_brew_update_perl_resources() {
_arguments \
'--debug[Display any debugging information]' \
'--help[Show this message]' \
'--ignore-errors[Continue processing even if some resources can'\''t be resolved]' \
'--print-only[Print the updated resource blocks instead of changing formula]' \
'--quiet[Make some output more quiet]' \
'--silent[Suppress any output]' \
'--verbose[Make some output more verbose]' \
- formula \
'*:formula:__brew_formulae'
}
# brew update-python-resources # brew update-python-resources
_brew_update_python_resources() { _brew_update_python_resources() {
_arguments \ _arguments \

View File

@ -3320,6 +3320,22 @@ Update SPDX license data in the Homebrew repository.
Update the list of maintainers in the `Homebrew/brew` README. Update the list of maintainers in the `Homebrew/brew` README.
### `update-perl-resources` \[*`options`*\] *`formula`* \[...\]
Update versions for CPAN resource blocks in *`formula`*.
`-p`, `--print-only`
: Print the updated resource blocks instead of changing *`formula`*.
`-s`, `--silent`
: Suppress any output.
`--ignore-errors`
: Continue processing even if some resources can't be resolved.
### `update-python-resources` \[*`options`*\] *`formula`* \[...\] ### `update-python-resources` \[*`options`*\] *`formula`* \[...\]
Update versions for PyPI resource blocks in *`formula`*. Update versions for PyPI resource blocks in *`formula`*.

View File

@ -2111,6 +2111,17 @@ Overwrite the destination directory if it already exists\.
Update SPDX license data in the Homebrew repository\. Update SPDX license data in the Homebrew repository\.
.SS "\fBupdate\-maintainers\fP" .SS "\fBupdate\-maintainers\fP"
Update the list of maintainers in the \fBHomebrew/brew\fP README\. Update the list of maintainers in the \fBHomebrew/brew\fP README\.
.SS "\fBupdate\-perl\-resources\fP \fR[\fIoptions\fP] \fIformula\fP \fR[\.\.\.]"
Update versions for CPAN resource blocks in \fIformula\fP\&\.
.TP
\fB\-p\fP, \fB\-\-print\-only\fP
Print the updated resource blocks instead of changing \fIformula\fP\&\.
.TP
\fB\-s\fP, \fB\-\-silent\fP
Suppress any output\.
.TP
\fB\-\-ignore\-errors\fP
Continue processing even if some resources can\[u2019]t be resolved\.
.SS "\fBupdate\-python\-resources\fP \fR[\fIoptions\fP] \fIformula\fP \fR[\.\.\.]" .SS "\fBupdate\-python\-resources\fP \fR[\fIoptions\fP] \fIformula\fP \fR[\.\.\.]"
Update versions for PyPI resource blocks in \fIformula\fP\&\. Update versions for PyPI resource blocks in \fIformula\fP\&\.
.TP .TP