notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: java/openjdk15/Makefile

Number of commits found: 19

Tuesday, 24 May 2022
20:09 Rene Ladan (rene) search for other commits by this committer
cleanup: remove expired versions of OpenJDK (12 through 16)

Adjust ports depending on expired versions of OpenJDK:
- biology/snpeff: 12+ -> 17+
- devel/RStudio: 12 -> 11
- www/closure-compiler: 13 -> 11+

Allow java/openjdk17 to use java/openjdk17-bootstrap on i386
too, this builds just fine on 13.1-i386

Remove jdk12-doc as it is no longer relevant.

Clean up Java version calculations in bsd.java.mk

Reviewed by: jwb, java (glewis)

Differential Revision: https://reviews.freebsd.org/D35280
commit hash: c7d1c247d8ea8f87edd6a5012702a3cd10d99d49 commit hash: c7d1c247d8ea8f87edd6a5012702a3cd10d99d49 commit hash: c7d1c247d8ea8f87edd6a5012702a3cd10d99d49 commit hash: c7d1c247d8ea8f87edd6a5012702a3cd10d99d49 c7d1c24
Thursday, 5 May 2022
02:54 Greg Lewis (glewis) search for other commits by this committer
java/openjdk15: Update to 15.0.7 GA
commit hash: a70c0335c04de4f1e4d671c13eeb7429296c4299 commit hash: a70c0335c04de4f1e4d671c13eeb7429296c4299 commit hash: a70c0335c04de4f1e4d671c13eeb7429296c4299 commit hash: a70c0335c04de4f1e4d671c13eeb7429296c4299 a70c033
Thursday, 21 Apr 2022
08:24 Baptiste Daroussin (bapt) search for other commits by this committer
openjdk: mark as deprecated all EOLed version of openjdk

The current supported version of openjdk are:
8 (LTS) up to 31 march 2025
11 (LTS) up to 30 september 2026
17 (LTS) up to 20 september 2031
18 up to 30 september 2022

All other version have expired long ago
commit hash: fe30b5124c358e4e46df1a3b7649438f137461de commit hash: fe30b5124c358e4e46df1a3b7649438f137461de commit hash: fe30b5124c358e4e46df1a3b7649438f137461de commit hash: fe30b5124c358e4e46df1a3b7649438f137461de fe30b51
Monday, 4 Apr 2022
07:56 Dimitry Andric (dim) search for other commits by this committer
java/openjdk13 java/openjdk14 java/openjdk15 java/openjdk16 java/openjdk17
java/openjdk17-jre: fix build with clang 14

During an exp-run for llvm 14 (see bug 261742), it turned out that
java/openjdk13 and java/openjdk17 fail to build with clang 14 (but this
also affects openjdk14 through 16):

=== Output from failing command(s) repeated here ===
* For target hotspot_variant-server_libjvm_objs_serviceThread.o:
/wrkdirs/usr/ports/java/openjdk13/work/jdk13u-jdk-13.0.10-5-1/src/hotspot/share/runtime/serviceThread.cpp:133:15:
error: use of bitwise '|' with boolean operands
[-Werror,-Wbitwise-instead-of-logical]
      while (((sensors_changed = LowMemoryDetector::has_pending_requests()) |
             ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/wrkdirs/usr/ports/java/openjdk13/work/jdk13u-jdk-13.0.10-5-1/src/hotspot/share/runtime/serviceThread.cpp:133:15:
note: cast one or both operands to int to silence this warning
/wrkdirs/usr/ports/java/openjdk13/work/jdk13u-jdk-13.0.10-5-1/src/hotspot/share/runtime/serviceThread.cpp:133:15:
error: use of bitwise '|' with boolean operands
[-Werror,-Wbitwise-instead-of-logical]
      while (((sensors_changed = LowMemoryDetector::has_pending_requests()) |
              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/wrkdirs/usr/ports/java/openjdk13/work/jdk13u-jdk-13.0.10-5-1/src/hotspot/share/runtime/serviceThread.cpp:133:15:
note: cast one or both operands to int to silence this warning
/wrkdirs/usr/ports/java/openjdk13/work/jdk13u-jdk-13.0.10-5-1/src/hotspot/share/runtime/serviceThread.cpp:133:15:
error: use of bitwise '|' with boolean operands
[-Werror,-Wbitwise-instead-of-logical]
      while (((sensors_changed = LowMemoryDetector::has_pending_requests()) |
              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/wrkdirs/usr/ports/java/openjdk13/work/jdk13u-jdk-13.0.10-5-1/src/hotspot/share/runtime/serviceThread.cpp:133:15:
note: cast one or both operands to int to silence this warning
/wrkdirs/usr/ports/java/openjdk13/work/jdk13u-jdk-13.0.10-5-1/src/hotspot/share/runtime/serviceThread.cpp:133:15:
error: use of bitwise '|' with boolean operands
[-Werror,-Wbitwise-instead-of-logical]
      while (((sensors_changed = LowMemoryDetector::has_pending_requests()) |
              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   ... (rest of output omitted)

Although the warning is normally an indication of a potential problem,
in this case a comment just before the affected code explictly mentions
the reason for using bitwise '|' instead of logical '||':

      // Process all available work on each (outer) iteration, rather than
      // only the first recognized bit of work, to avoid frequently true early
      // tests from potentially starving later work.  Hence the use of
      // arithmetic-or to combine results; we don't want short-circuiting.

(See
<https://github.com/openjdk/jdk/blob/master/src/hotspot/share/runtime/serviceThread.cpp#L140>)

Therefore, we should suppress -Wbitwise-instead-of-logical for clang 14
and higher.

PR:		262845
Approved by:	portmgr (build fix blanket)
MFH:		2022Q2
commit hash: e406118f774154589b91dc8d84f7f0320766d5a4 commit hash: e406118f774154589b91dc8d84f7f0320766d5a4 commit hash: e406118f774154589b91dc8d84f7f0320766d5a4 commit hash: e406118f774154589b91dc8d84f7f0320766d5a4 e406118
Sunday, 6 Feb 2022
04:41 Greg Lewis (glewis) search for other commits by this committer
java/openjdk15: Update to 15.0.6 GA
commit hash: 0e170396da4d35288e9e05f68c56c295934c82fc commit hash: 0e170396da4d35288e9e05f68c56c295934c82fc commit hash: 0e170396da4d35288e9e05f68c56c295934c82fc commit hash: 0e170396da4d35288e9e05f68c56c295934c82fc 0e17039
Saturday, 6 Nov 2021
19:23 Greg Lewis (glewis) search for other commits by this committer
java/openjdk15: Update to 15.0.5
commit hash: 153d1fc89dab3264cf161f251137f089f36161cc commit hash: 153d1fc89dab3264cf161f251137f089f36161cc commit hash: 153d1fc89dab3264cf161f251137f089f36161cc commit hash: 153d1fc89dab3264cf161f251137f089f36161cc 153d1fc
Saturday, 16 Oct 2021
12:22 Dimitry Andric (dim) search for other commits by this committer
java/openjdk*: work around UB in markOopDesc, fix builds with clang 13

During an exp-run for llvm 13 (see bug 258209), it turned out that
java/openjdk11 through openjdk13 fail to build with clang 13:

=== Output from failing command(s) repeated here ===
* For target jdk__packages_attribute.done:

These crashes are all caused by the markOop/markOopDesc classes, which
are used to keep track of objects, and which are 'marked' using the low
few bits. (See
https://github.com/openjdk/jdk13u/blob/master/src/hotspot/share/oops/markOop.hpp
).

After some laborious bisecting, I found out that these crashes start
occuring after the upstream commit https://github.com
/llvm/llvm-project/commit/16d03818412 (Return "[CGCall] Annotate this
argument with alignment").

What happens afterwards, is that clang considers the "this" pointer to
always be aligned to the alignment of the actual object, and then
masking or adding a few low bits is not working as expected.

The reason openjdk14 and higher work fine with clang 13, and don't crash
similarly, is that the OpenJDK people completely redid the
markOop/markOopDesc classes in
https://github.com/openjdk/jdk/commit/ae5615c6142a4dc0d9033462f4880d7b3c127e26
("8229258: Rework markOop and markOopDesc into a simpler mark word value
carrier"). E.g, the markOopDesc class was renamed to markWord, and
*stores* a pointer-like value instead of *being* a pointer-like value.
This is a much safer way of handling things.

However, this upstream commit is *very* large, as are a few of its
follow-ups, which is probably the reason why it has not been backported
to JDKs <= 13. I tried manually backporting it, but got lost in many
nasty patch conflicts and problems.

As a workaround, build openjdk8 through 13 with clang12 from the
devel/llvm12 port, for the time being.

In addition, allow openjdk14 through 17 to be built with clang 13, by
adding -Wno-unused-but-set-parameter to the compilation flags.

PR:		258954
Approved by:	maintainer timeout (2 weeks)
MFH:		2021Q4
commit hash: 3822416493cfbbed8fe7a487391b40bec956d671 commit hash: 3822416493cfbbed8fe7a487391b40bec956d671 commit hash: 3822416493cfbbed8fe7a487391b40bec956d671 commit hash: 3822416493cfbbed8fe7a487391b40bec956d671 3822416
Thursday, 30 Sep 2021
21:23 Rene Ladan (rene) search for other commits by this committer
cleanup: drop support for EOL FreeBSD 11.X

Search criteria used:
- 11.4
- OSREL*
- OSVER*
- *_FreeBSD_11

Input from:
- adridg: devel/qca-legacy
- jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds
- sunpoet: security/p5-*OpenSSL*

Reviewed by:	doceng, kde, multimedia, perl, python, ruby, rust
Differential Revision: https://reviews.freebsd.org/D32008
Test Plan: make index
commit hash: 620968a43a5f9bb3fa98ab20f257a4c0d864caa7 commit hash: 620968a43a5f9bb3fa98ab20f257a4c0d864caa7 commit hash: 620968a43a5f9bb3fa98ab20f257a4c0d864caa7 commit hash: 620968a43a5f9bb3fa98ab20f257a4c0d864caa7 620968a
Saturday, 11 Sep 2021
11:34 Bernhard Froehlich (decke) search for other commits by this committer
java/openjdk15: Add CPE information

Approved by:	portmgr (blanket)
commit hash: 152ee092bedccf066be75cbd24f367af6761a7a9 commit hash: 152ee092bedccf066be75cbd24f367af6761a7a9 commit hash: 152ee092bedccf066be75cbd24f367af6761a7a9 commit hash: 152ee092bedccf066be75cbd24f367af6761a7a9 152ee09
Saturday, 31 Jul 2021
05:39 Greg Lewis (glewis) search for other commits by this committer
java/openjdk15: Update to 15.0.4
commit hash: 96fd8c3f5380aebe9d5acf26fa0570682dadee61 commit hash: 96fd8c3f5380aebe9d5acf26fa0570682dadee61 commit hash: 96fd8c3f5380aebe9d5acf26fa0570682dadee61 commit hash: 96fd8c3f5380aebe9d5acf26fa0570682dadee61 96fd8c3
Wednesday, 7 Apr 2021
08:09 Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c cf118cc
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Wednesday, 17 Mar 2021
13:34 pkubaj search for other commits by this committer
java/openjdk15: enable dtrace on powerpc64 elfv2
Original commitRevision:568658 
Tuesday, 16 Mar 2021
18:06 pkubaj search for other commits by this committer
java/openjdk15: fix build on powerpc64le

Also cosmetic fixes related to powerpc64* for openjdk 12, 13, 14.
Original commitRevision:568594 
Friday, 22 Jan 2021
03:19 glewis search for other commits by this committer
Update to 15.0.2
Original commitRevision:562271 
Friday, 23 Oct 2020
05:41 glewis search for other commits by this committer
Update to 15.0.1
Original commitRevision:553084 
Thursday, 10 Sep 2020
01:01 glewis search for other commits by this committer
Fix the default bootstrap to point to openjdk14

Reported by:	Giacomo Olgeni <olgeni@olgeni.com>
Original commitRevision:548176 
Monday, 7 Sep 2020
18:33 glewis search for other commits by this committer
Restore fontconfig functionality
Original commitRevision:547934 
Sunday, 6 Sep 2020
00:50 glewis search for other commits by this committer
Add a port of OpenJDK 15
Original commitRevision:547768 

Number of commits found: 19