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/openjdk18/Makefile

Number of commits found: 11

Friday, 5 Jan 2024
21:01 Piotr Kubaj (pkubaj) search for other commits by this committer
java/openjdk18: drop ELFv1 support
commit hash: 85165d2aeb3d82141bef5d1bb09dc261e70845bb commit hash: 85165d2aeb3d82141bef5d1bb09dc261e70845bb commit hash: 85165d2aeb3d82141bef5d1bb09dc261e70845bb commit hash: 85165d2aeb3d82141bef5d1bb09dc261e70845bb 85165d2
Sunday, 31 Dec 2023
00:37 Muhammad Moinur Rahman (bofh) search for other commits by this committer
*/*: Sunset 12.4-RELEASE/12-STABLE from ports tree

- Remove all references to defunct ARCH arm
- Remove all references to defunct ARCH sparc64
- Remove x11-drivers/xf86-video-sunffb which requires defunct sparc64
  ARCH
- Remove sysutils/afbinit requires defunct sparc64 ARCH
- Remove all references to bktr driver
- Remove all references to defunct FreeBSD_12
- Remove all references to OSVERSION/OSREL corresponding to 12
- Remove conditionals in Mk/Uses/cabal.mk
- Remove sparc reference from Mk/Uses/qt-dist.mk
- Remove BROKEN_sparc64/NOT_FOR_ARCH=sparc64
- Remove BROKEN_FreeBSD_12* from:
- Remove OpenSSL patches from:
- Remove conditional flags for OSVERSION >= 1300000 to fixed flags.
  Also move conditional flags for non sparc64/arm ARCH to fixed flags.

Reviewed by:	brooks, jbeich, rene, salvadore
Differential Revision: https://reviews.freebsd.org/D42068
commit hash: bbab7f59e9630416397189df70ec133bdd690e38 commit hash: bbab7f59e9630416397189df70ec133bdd690e38 commit hash: bbab7f59e9630416397189df70ec133bdd690e38 commit hash: bbab7f59e9630416397189df70ec133bdd690e38 bbab7f5
Friday, 28 Jul 2023
17:13 Daniel Engberg (diizzy) search for other commits by this committer
*/*: Bump jpeg-turbo users treewide

New major version 3.0.0
commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f commit hash: 664a2fa1e56e670a356f54c94389bdb47d868f3f 664a2fa
Thursday, 2 Feb 2023
04:49 Greg Lewis (glewis) search for other commits by this committer
java/openjdk18: Fix the build on aarch64

* Apply a similar patch as was applied to java/openjdk17
* Remove a patch which has been upstreamed
commit hash: 5d7631b4566ab101b5030fcbc87a55a520f01ae6 commit hash: 5d7631b4566ab101b5030fcbc87a55a520f01ae6 commit hash: 5d7631b4566ab101b5030fcbc87a55a520f01ae6 commit hash: 5d7631b4566ab101b5030fcbc87a55a520f01ae6 5d7631b
Sunday, 18 Dec 2022
17:37 Dimitry Andric (dim) search for other commits by this committer
java/openjdk18: fix build with clang 15

During an exp-run for llvm 15 (see bug 265425), it turned out that
java/openjdk18 failed to build with clang 15:

 
/wrkdirs/usr/ports/java/openjdk18/work/jdk18u-jdk-18.0.2-9-1/src/java.base/unix/native/libnet/DefaultProxySelector.c:374:41:
error: passing arguments to a function without a prototype is deprecated in all
versions of C and is not supported in C2x [-Werror,-Wdeprecated-non-prototype]
      proxies = (*g_proxy_resolver_lookup)(resolver, uri, NULL, &error);
                                          ^
 
/wrkdirs/usr/ports/java/openjdk18/work/jdk18u-jdk-18.0.2-9-1/src/java.base/unix/native/libnet/DefaultProxySelector.c:393:63:
error: passing arguments to a function without a prototype is deprecated in all
versions of C and is not supported in C2x [-Werror,-Wdeprecated-non-prototype]
                                  (*g_network_address_parse_uri)(proxies[i], 0,
                                                                ^
 
/wrkdirs/usr/ports/java/openjdk18/work/jdk18u-jdk-18.0.2-9-1/src/java.base/unix/native/libnet/DefaultProxySelector.c:398:70:
error: passing arguments to a function without a prototype is deprecated in all
versions of C and is not supported in C2x [-Werror,-Wdeprecated-non-prototype]
                              phost = (*g_network_address_get_hostname)(conn);
                                                                       ^
 
/wrkdirs/usr/ports/java/openjdk18/work/jdk18u-jdk-18.0.2-9-1/src/java.base/unix/native/libnet/DefaultProxySelector.c:399:66:
error: passing arguments to a function without a prototype is deprecated in all
versions of C and is not supported in C2x [-Werror,-Wdeprecated-non-prototype]
                              pport = (*g_network_address_get_port)(conn);
                                                                   ^
 
/wrkdirs/usr/ports/java/openjdk18/work/jdk18u-jdk-18.0.2-9-1/src/java.base/unix/native/libnet/DefaultProxySelector.c:435:22:
error: passing arguments to a function without a prototype is deprecated in all
versions of C and is not supported in C2x [-Werror,-Wdeprecated-non-prototype]
          (*g_strfreev)(proxies);
                       ^

This is because clang 15 warns by default about functions without
arguments in their prototypes. Fix this by suppressing the warning.

PR:		268373
Approved by:	portmgr (tcberner)
MFH:		2022Q4
commit hash: 430ead7025c8f32aa67b6c8d99583bbb68969dbb commit hash: 430ead7025c8f32aa67b6c8d99583bbb68969dbb commit hash: 430ead7025c8f32aa67b6c8d99583bbb68969dbb commit hash: 430ead7025c8f32aa67b6c8d99583bbb68969dbb 430ead7
Friday, 4 Nov 2022
06:43 Greg Lewis (glewis) search for other commits by this committer
java/openjdk18: Use the distributed cacerts

PR:		266723
Reported by:	Michael Osipov <michael.osipov@siemens.com>
commit hash: add6dd031a6aa7eb7d7f51e2c278f8c27ba27426 commit hash: add6dd031a6aa7eb7d7f51e2c278f8c27ba27426 commit hash: add6dd031a6aa7eb7d7f51e2c278f8c27ba27426 commit hash: add6dd031a6aa7eb7d7f51e2c278f8c27ba27426 add6dd0
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 3 Aug 2022
02:27 Greg Lewis (glewis) search for other commits by this committer
java/openjdk18: Update to 18.0.2
commit hash: 28b0ae0fe75ee2f922efdb853faa2ce735002546 commit hash: 28b0ae0fe75ee2f922efdb853faa2ce735002546 commit hash: 28b0ae0fe75ee2f922efdb853faa2ce735002546 commit hash: 28b0ae0fe75ee2f922efdb853faa2ce735002546 28b0ae0
Thursday, 5 May 2022
05:22 Greg Lewis (glewis) search for other commits by this committer
java/openjdk18: Update to 18.0.1 GA
commit hash: 577275551f536d17908417adce7d531b26a72361 commit hash: 577275551f536d17908417adce7d531b26a72361 commit hash: 577275551f536d17908417adce7d531b26a72361 commit hash: 577275551f536d17908417adce7d531b26a72361 5772755
Sunday, 10 Apr 2022
21:03 Greg Lewis (glewis) search for other commits by this committer
java/openjdk18: Add a port of OpenJDK 18
commit hash: 8ba1801ad5d241c8071d87da33d80bdb1be86255 commit hash: 8ba1801ad5d241c8071d87da33d80bdb1be86255 commit hash: 8ba1801ad5d241c8071d87da33d80bdb1be86255 commit hash: 8ba1801ad5d241c8071d87da33d80bdb1be86255 8ba1801
21:03 Greg Lewis (glewis) search for other commits by this committer
java/openjdk18: Fix build with Clang 14
commit hash: 7bcde8fa251a0d295de4ff9e2d9705f5ef1f77a1 commit hash: 7bcde8fa251a0d295de4ff9e2d9705f5ef1f77a1 commit hash: 7bcde8fa251a0d295de4ff9e2d9705f5ef1f77a1 commit hash: 7bcde8fa251a0d295de4ff9e2d9705f5ef1f77a1 7bcde8f

Number of commits found: 11