Merge pull request #13147 from pmrowla/update-python-resources-env
bump-formula-pr: expose update-python-resources CLI flags
This commit is contained in:
commit
add2991d4f
@ -78,6 +78,13 @@ module Homebrew
|
|||||||
"or specified <version>."
|
"or specified <version>."
|
||||||
switch "-f", "--force",
|
switch "-f", "--force",
|
||||||
description: "Ignore duplicate open PRs. Remove all mirrors if `--mirror` was not specified."
|
description: "Ignore duplicate open PRs. Remove all mirrors if `--mirror` was not specified."
|
||||||
|
flag "--python-package-name=",
|
||||||
|
description: "Use the specified <package-name> when finding Python resources for <formula>. "\
|
||||||
|
"If no package name is specified, it will be inferred from the formula's stable URL."
|
||||||
|
comma_array "--python-extra-packages=",
|
||||||
|
description: "Include these additional Python packages when finding resources."
|
||||||
|
comma_array "--python-exclude-packages=",
|
||||||
|
description: "Exclude these Python packages when finding resources."
|
||||||
|
|
||||||
conflicts "--dry-run", "--write-only"
|
conflicts "--dry-run", "--write-only"
|
||||||
conflicts "--dry-run", "--write"
|
conflicts "--dry-run", "--write"
|
||||||
@ -329,8 +336,13 @@ module Homebrew
|
|||||||
end
|
end
|
||||||
|
|
||||||
unless args.dry_run?
|
unless args.dry_run?
|
||||||
resources_checked = PyPI.update_python_resources! formula, version: new_formula_version,
|
resources_checked = PyPI.update_python_resources! formula,
|
||||||
silent: args.quiet?, ignore_non_pypi_packages: true
|
version: new_formula_version,
|
||||||
|
package_name: args.python_package_name,
|
||||||
|
extra_packages: args.python_extra_packages,
|
||||||
|
exclude_packages: args.python_exclude_packages,
|
||||||
|
silent: args.quiet?,
|
||||||
|
ignore_non_pypi_packages: true
|
||||||
end
|
end
|
||||||
|
|
||||||
run_audit(formula, alias_rename, old_contents, args: args)
|
run_audit(formula, alias_rename, old_contents, args: args)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user