Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

install, upgrade: recompute dependencies before installation #12004

Merged
merged 1 commit into from Sep 8, 2021

Conversation

FnControlOption
Copy link
Contributor

  • Have you followed the guidelines in our Contributing document?
  • Have you checked to ensure there aren't other open Pull Requests for the same change?
  • Have you added an explanation of what your changes do and why you'd like us to include them?
  • Have you written new tests for your changes? Here's an example.
  • Have you successfully run brew style with your changes locally?
  • Have you successfully run brew typecheck with your changes locally?
  • Have you successfully run brew tests with your changes locally?

Fix for #11989

#11940 and #11963 cause the method compute_dependencies to be invoked before any formulae have been installed, so dependencies must be recomputed at installation.

Copy link
Member

@MikeMcQuaid MikeMcQuaid left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work! A naming suggestion. Another option would be recompute: or similar.

@@ -358,7 +358,7 @@ def install
raise UnbottledError, [formula] if !pour_bottle? && !formula.bottle_unneeded? && !DevelopmentTools.installed?

unless ignore_deps?
deps = compute_dependencies
deps = compute_dependencies(force: true)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
deps = compute_dependencies(force: true)
deps = compute_dependencies(use_cache: false)

Comment on lines 478 to 479
def compute_dependencies(force: false)
@compute_dependencies = nil if force
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
def compute_dependencies(force: false)
@compute_dependencies = nil if force
def compute_dependencies(use_cache: true)
@compute_dependencies = nil unless use_cache

@MikeMcQuaid MikeMcQuaid merged commit 40a7a01 into Homebrew:master Sep 8, 2021
@MikeMcQuaid
Copy link
Member

Thanks again @FnControlOption!

@github-actions github-actions bot added the outdated PR was locked due to age label Oct 9, 2021
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 9, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
outdated PR was locked due to age
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants