From f38544635302222b41409d0ed02d3ca909a0a9d5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 29 Apr 2021 18:58:20 +0000 Subject: [PATCH] Update maintainers, manpage and completions. Autogenerated by the [update-manpage](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/update-manpage.yml) workflow. --- completions/bash/brew | 3 +++ completions/fish/brew.fish | 3 +++ completions/zsh/_brew | 3 +++ docs/Manpage.md | 6 ++++++ manpages/brew.1 | 12 ++++++++++++ 5 files changed, 27 insertions(+) diff --git a/completions/bash/brew b/completions/bash/brew index 16f8d3dff4..712cad78ce 100644 --- a/completions/bash/brew +++ b/completions/bash/brew @@ -394,6 +394,7 @@ _brew_bottle() { --only-json-tab --quiet --root-url + --root-url-using --skip-relocation --verbose --write @@ -1482,6 +1483,7 @@ _brew_pr_pull() { --quiet --resolve --root-url + --root-url-using --tap --verbose --warn-on-upload-failure @@ -1509,6 +1511,7 @@ _brew_pr_upload() { --no-publish --quiet --root-url + --root-url-using --verbose --warn-on-upload-failure " diff --git a/completions/fish/brew.fish b/completions/fish/brew.fish index 232543528e..383e6e61b0 100644 --- a/completions/fish/brew.fish +++ b/completions/fish/brew.fish @@ -369,6 +369,7 @@ __fish_brew_complete_arg 'bottle' -l no-rebuild -d 'If the formula specifies a r __fish_brew_complete_arg 'bottle' -l only-json-tab -d 'When passed with `--json`, the tab will be written to the JSON file but not the bottle' __fish_brew_complete_arg 'bottle' -l quiet -d 'Make some output more quiet' __fish_brew_complete_arg 'bottle' -l root-url -d 'Use the specified URL as the root of the bottle\'s URL instead of Homebrew\'s default' +__fish_brew_complete_arg 'bottle' -l root-url-using -d 'Use the specified download strategy class for downloading the bottle\'s URL instead of Homebrew\'s default' __fish_brew_complete_arg 'bottle' -l skip-relocation -d 'Do not check if the bottle can be marked as relocatable' __fish_brew_complete_arg 'bottle' -l verbose -d 'Make some output more verbose' __fish_brew_complete_arg 'bottle' -l write -d 'Write changes to the formula file. A new commit will be generated unless `--no-commit` is passed' @@ -1066,6 +1067,7 @@ __fish_brew_complete_arg 'pr-pull' -l no-upload -d 'Download the bottles and app __fish_brew_complete_arg 'pr-pull' -l quiet -d 'Make some output more quiet' __fish_brew_complete_arg 'pr-pull' -l resolve -d 'When a patch fails to apply, leave in progress and allow user to resolve, instead of aborting' __fish_brew_complete_arg 'pr-pull' -l root-url -d 'Use the specified URL as the root of the bottle\'s URL instead of Homebrew\'s default' +__fish_brew_complete_arg 'pr-pull' -l root-url-using -d 'Use the specified download strategy class for downloading the bottle\'s URL instead of Homebrew\'s default' __fish_brew_complete_arg 'pr-pull' -l tap -d 'Target tap repository (default: `homebrew/core`)' __fish_brew_complete_arg 'pr-pull' -l verbose -d 'Make some output more verbose' __fish_brew_complete_arg 'pr-pull' -l warn-on-upload-failure -d 'Warn instead of raising an error if the bottle upload fails. Useful for repairing bottle uploads that previously failed' @@ -1085,6 +1087,7 @@ __fish_brew_complete_arg 'pr-upload' -l no-commit -d 'Do not generate a new comm __fish_brew_complete_arg 'pr-upload' -l no-publish -d 'Apply the bottle commit and upload the bottles, but don\'t publish them' __fish_brew_complete_arg 'pr-upload' -l quiet -d 'Make some output more quiet' __fish_brew_complete_arg 'pr-upload' -l root-url -d 'Use the specified URL as the root of the bottle\'s URL instead of Homebrew\'s default' +__fish_brew_complete_arg 'pr-upload' -l root-url-using -d 'Use the specified download strategy class for downloading the bottle\'s URL instead of Homebrew\'s default' __fish_brew_complete_arg 'pr-upload' -l verbose -d 'Make some output more verbose' __fish_brew_complete_arg 'pr-upload' -l warn-on-upload-failure -d 'Warn instead of raising an error if the bottle upload fails. Useful for repairing bottle uploads that previously failed' diff --git a/completions/zsh/_brew b/completions/zsh/_brew index d99036b790..c0f710baeb 100644 --- a/completions/zsh/_brew +++ b/completions/zsh/_brew @@ -457,6 +457,7 @@ _brew_bottle() { '--only-json-tab[When passed with `--json`, the tab will be written to the JSON file but not the bottle]' \ '--quiet[Make some output more quiet]' \ '--root-url[Use the specified URL as the root of the bottle'\''s URL instead of Homebrew'\''s default]' \ + '--root-url-using[Use the specified download strategy class for downloading the bottle'\''s URL instead of Homebrew'\''s default]' \ '--skip-relocation[Do not check if the bottle can be marked as relocatable]' \ '--verbose[Make some output more verbose]' \ '--write[Write changes to the formula file. A new commit will be generated unless `--no-commit` is passed]' \ @@ -1309,6 +1310,7 @@ _brew_pr_pull() { '--quiet[Make some output more quiet]' \ '--resolve[When a patch fails to apply, leave in progress and allow user to resolve, instead of aborting]' \ '--root-url[Use the specified URL as the root of the bottle'\''s URL instead of Homebrew'\''s default]' \ + '--root-url-using[Use the specified download strategy class for downloading the bottle'\''s URL instead of Homebrew'\''s default]' \ '--tap[Target tap repository (default: `homebrew/core`)]' \ '--verbose[Make some output more verbose]' \ '--warn-on-upload-failure[Warn instead of raising an error if the bottle upload fails. Useful for repairing bottle uploads that previously failed]' \ @@ -1330,6 +1332,7 @@ _brew_pr_upload() { '--no-publish[Apply the bottle commit and upload the bottles, but don'\''t publish them]' \ '--quiet[Make some output more quiet]' \ '--root-url[Use the specified URL as the root of the bottle'\''s URL instead of Homebrew'\''s default]' \ + '--root-url-using[Use the specified download strategy class for downloading the bottle'\''s URL instead of Homebrew'\''s default]' \ '--verbose[Make some output more verbose]' \ '--warn-on-upload-failure[Warn instead of raising an error if the bottle upload fails. Useful for repairing bottle uploads that previously failed]' } diff --git a/docs/Manpage.md b/docs/Manpage.md index 2da9e63f34..3c42e02c71 100644 --- a/docs/Manpage.md +++ b/docs/Manpage.md @@ -826,6 +826,8 @@ value, while `--no-rebuild` will remove it. Specify a committer name and email in `git`'s standard author format. * `--root-url`: Use the specified *`URL`* as the root of the bottle's URL instead of Homebrew's default. +* `--root-url-using`: + Use the specified download strategy class for downloading the bottle's URL instead of Homebrew's default. ### `bump` [*`options`*] [*`formula`*|*`cask`* ...] @@ -1189,6 +1191,8 @@ Requires write access to the repository. Target tap repository (default: `homebrew/core`). * `--root-url`: Use the specified *`URL`* as the root of the bottle's URL instead of Homebrew's default. +* `--root-url-using`: + Use the specified download strategy class for downloading the bottle's URL instead of Homebrew's default. * `--bintray-mirror`: Use the specified Bintray repository to automatically mirror stable URLs defined in the formulae (default: `mirror`). * `--workflows`: @@ -1220,6 +1224,8 @@ Apply the bottle commit and publish bottles to a host. 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`: + Use the specified download strategy class for downloading the bottle's URL instead of Homebrew's default. ### `prof` [*`--stackprof`*] *`command`* [...] diff --git a/manpages/brew.1 b/manpages/brew.1 index 9f1bad3ba6..15058f5065 100644 --- a/manpages/brew.1 +++ b/manpages/brew.1 @@ -1141,6 +1141,10 @@ Specify a committer name and email in \fBgit\fR\'s standard author format\. \fB\-\-root\-url\fR Use the specified \fIURL\fR as the root of the bottle\'s URL instead of Homebrew\'s default\. . +.TP +\fB\-\-root\-url\-using\fR +Use the specified download strategy class for downloading the bottle\'s URL instead of Homebrew\'s default\. +. .SS "\fBbump\fR [\fIoptions\fR] [\fIformula\fR|\fIcask\fR \.\.\.]" Display out\-of\-date brew formulae and the latest version available\. Also displays whether a pull request has been opened with the URL\. . @@ -1676,6 +1680,10 @@ Target tap repository (default: \fBhomebrew/core\fR)\. Use the specified \fIURL\fR as the root of the bottle\'s URL instead of Homebrew\'s default\. . .TP +\fB\-\-root\-url\-using\fR +Use the specified download strategy class for downloading the bottle\'s URL instead of Homebrew\'s default\. +. +.TP \fB\-\-bintray\-mirror\fR Use the specified Bintray repository to automatically mirror stable URLs defined in the formulae (default: \fBmirror\fR)\. . @@ -1730,6 +1738,10 @@ Upload to the specified GitHub organisation\'s GitHub Packages (default: \fBhome \fB\-\-root\-url\fR Use the specified \fIURL\fR as the root of the bottle\'s URL instead of Homebrew\'s default\. . +.TP +\fB\-\-root\-url\-using\fR +Use the specified download strategy class for downloading the bottle\'s URL instead of Homebrew\'s default\. +. .SS "\fBprof\fR [\fI\-\-stackprof\fR] \fIcommand\fR [\.\.\.]" Run Homebrew with a Ruby profiler\. For example, \fBbrew prof readall\fR\. . -- GitLab