-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
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
depends_on :java
#16383
Comments
Early implementation followup at #16591 |
depends_on :java
(early and late implementations)depends_on :java
@reitermarkus What about we scrap this, remove the |
|
Is there a way to achieve |
No.
Also no. The feature is desirable, but no one is working on it. This has never evolved in six years. Either we get an outside contribution for it, or we abandon it. |
There is now an |
@vitorgalvao @reitermarkus what if I will add |
Yes. You should always depend on the latest version unless an older version is actually necessary. |
A bug in Java 12-15 could lead to data corruption in eXist; Java 16 compatibility has not yet been confirmed. I followed the usage of the depends_on_java caveat as described by @reitermarkus in Homebrew#16383 (comment) and Homebrew#16383 (comment)
A bug in Java 12-15 could lead to data corruption in eXist; Java 16 compatibility has not yet been confirmed. I followed the usage of the depends_on_java caveat as described by @reitermarkus in #16383 (comment) and #16383 (comment)
Closing this, as-of Homebrew/brew#11290 being merged I think we're as good as we're going to get here and it's been open without progress for a long time. |
Builds on #7993.
Interface for
depends_on :java
:depends_on :macos
anddepends_on :x11
. Valid examples:depends_on java: true
# any java versiondepends_on java: '8'
# exact versiondepends_on java: ['6', '7']
# any of array of versionsdepends_on java: '>= 6'
# equal to or greater than versionThe text was updated successfully, but these errors were encountered: