Date: Fri, 03 Apr 2026 10:03:36 +0000 From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: [Bug 293756] Mk/Uses/java.mk: prefer latest LTS openjdk Message-ID: <bug-293756-8522-s1vO36oecq@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-293756-8522@https.bugs.freebsd.org/bugzilla/>
index | next in thread | previous in thread | raw e-mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=293756 Ronald Klop <ronald@FreeBSD.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #268746|0 |1 is obsolete| | Status|New |In Progress Assignee|portmgr@FreeBSD.org |ronald@FreeBSD.org CC| |java@FreeBSD.org Attachment #269337| |maintainer-approval?(java@F Flags| |reeBSD.org) --- Comment #6 from Ronald Klop <ronald@FreeBSD.org> --- Created attachment 269337 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=269337&action=edit git diff to change the order of preferred java version Ok, I incorporated the remarks you have. See attachment for new patch. This patch does not change anything about the usage of JAVA_DEFAULT. JAVA_DEFAULT is still used as the preferred jdk, as it is currently. The only thing the patch does is re-order the LTS/non-LTS versions. Java.mk used to prefer the oldest jdk in the JAVA_VERSION range. Now it prefers LTS over non-LTS and it prefers newer versions over older versions. Old: JAVA_DEFAULT=21 JAVA_VERSION=8 11 17 22 => 8 (prefer oldest) JAVA_DEFAULT=21 JAVA_VERSION=17 21 25 => 21 (prefer DEFAULT) JAVA_DEFAULT=21 JAVA_VERSION=22 25 => 22 (prefer oldest) New: JAVA_DEFAULT=21 JAVA_VERSION=8 11 17 22 => 17 (prefer latest LTS) JAVA_DEFAULT=21 JAVA_VERSION=17 21 25 => 21 (no change, prefer DEFAULT) JAVA_DEFAULT=21 JAVA_VERSION=22 25 => 25 (prefer LTS) Taking into account what JDKs are already installed is unchanged and still works as intended. Of the 485 ports with USES=java this change will only affect these 17 ports: biology/gkl: 8 11 databases/cassandra4: 8 11 devel/argouml: 8 11 17 18 devel/gradle5: 8 11 devel/jetbrains-sqlite: 17 21 devel/spark: 8 11 17 java/apache-commons-collections: 8 11 17 18 19 20 lang/kawa: 8 11 math/jacop: 8 11 17 misc/jbidwatcher: 8 11 multimedia/kodi: 8 11 net/activemq: 21 17 net/seda: 8 11 17 21 net/spread-j: 8 11 sysutils/logstash7: 17 11 8 sysutils/rundeck: 11 17 textproc/elasticsearch7: 21 17 11 8 All other java ports already compile with JAVA_DEFAULT or are pinned to a specific jdk. I will do some test runs to make sure everything still compiles. Can you review the patch in the meantime? -- You are receiving this mail because: You are on the CC list for the bug.home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-293756-8522-s1vO36oecq>
