FreeBSD/doc 1b58535website/content/en/cgi man.cgi

add Ubuntu 26.04 resolute manual pages
DeltaFile
+2-1website/content/en/cgi/man.cgi
+2-11 files

FreeBSD/ports a1c0261. MOVED, devel Makefile

devel/pear-Console_CommandLine: Remove expired port

2026-05-12 devel/pear-Console_CommandLine: No longer maintained upstream
DeltaFile
+0-18devel/pear-Console_CommandLine/Makefile
+0-11devel/pear-Console_CommandLine/pkg-descr
+0-3devel/pear-Console_CommandLine/distinfo
+0-1devel/Makefile
+1-0MOVED
+1-335 files

FreeBSD/ports 1daf833. MOVED, deskutils Makefile

deskutils/growl-for-linux: Remove expired port

2026-05-12 deskutils/growl-for-linux: Obsolete software that does not compile with recent versions of GCC or Clang
DeltaFile
+0-54deskutils/growl-for-linux/Makefile
+0-30deskutils/growl-for-linux/pkg-plist
+0-3deskutils/growl-for-linux/distinfo
+0-2deskutils/growl-for-linux/pkg-descr
+1-0MOVED
+0-1deskutils/Makefile
+1-906 files

FreeBSD/ports fc885d1. MOVED, databases Makefile

databases/jrrd: Remove expired port

2026-05-13 databases/jrrd: only builds with Java 8, unmaintained, no dependencies in the ports tree, an alternative is https://github.com/OpenNMS/jrrd2
DeltaFile
+0-36databases/jrrd/Makefile
+0-7databases/jrrd/files/patch-Makefile.in
+0-3databases/jrrd/distinfo
+0-2databases/jrrd/pkg-descr
+0-1databases/Makefile
+1-0MOVED
+1-496 files

FreeBSD/ports dc90fc4java/openjdk23 Makefile pkg-message, java/openjdk23/files patch-src_jdk.jdwp.agent_unix_native_libjdwp_exec__md.c patch-make_autoconf_libraries.m4

java/openjdk23: Remove expired port

2026-05-12 java/openjdk23: No longer supported by upstream
DeltaFile
+0-187java/openjdk23/Makefile
+0-20java/openjdk23/files/patch-src_jdk.jdwp.agent_unix_native_libjdwp_exec__md.c
+0-15java/openjdk23/pkg-message
+0-15java/openjdk23/files/patch-make_autoconf_libraries.m4
+0-14java/openjdk23/files/patch-configure
+0-13java/openjdk23/files/patch-make_autoconf_flags-cflags.m4
+0-2646 files not shown
+1-30612 files

FreeBSD/ports 8c0d8f6deskutils/freeplane Makefile

deskutils/freeplane: do not use now unregistered JAVA 23
DeltaFile
+1-1deskutils/freeplane/Makefile
+1-11 files

FreeBSD/ports c266fa1Mk bsd.default-versions.mk, Mk/Uses java.mk

Mk: unregister expired java/openjdk23
DeltaFile
+4-7Mk/Uses/java.mk
+1-1Mk/bsd.default-versions.mk
+5-82 files

FreeBSD/src d1aee9fsys/sys time.h

sys/time.h: add bintime2us() helper

Add a microsecond conversion helper to complement the existing
bintime2ns(). The body mirrors bintime2ns().
This will be used by an upcoming eventlog(9) framework as well as
the TCP code in upcoming changes.

Approved by:            gallatin, tuexen
Sponsored by:           Netflix, Inc.
Differential Revision:  https://reviews.freebsd.org/D56972
DeltaFile
+11-0sys/sys/time.h
+11-01 files

FreeBSD/ports 0efaa3edevel/sem distinfo Makefile.crates

devel/sem: Update to 0.5.4
DeltaFile
+113-107devel/sem/distinfo
+55-52devel/sem/Makefile.crates
+1-1devel/sem/Makefile
+169-1603 files

FreeBSD/ports 2c91f26math/calc distinfo Makefile

math/calc: Update to 2.16.1.3

Changes: https://github.com/lcn2/calc/releases/tag/v2.16.1.3
DeltaFile
+3-3math/calc/distinfo
+1-1math/calc/Makefile
+4-42 files

FreeBSD/src 714f6acetc/mtree BSD.root.dist

BSD.root.dist: Correct tag for /etc/sysctl.kld.d

This is only used by rc.subr and belongs in rc, not runtime.

Fixes:          fa6d67cd16b5 ("BSD.root.dist: Add package tag for all directories")
MFC after:      3 days
Reviewed by:    ivy
Differential Revision:  https://reviews.freebsd.org/D56900

(cherry picked from commit 44338ccd12685621c4b1c57e692a4f27f5a655d3)
DeltaFile
+1-1etc/mtree/BSD.root.dist
+1-11 files

FreeBSD/src 379805busr.sbin/ctld login.cc

ctld: normalize iSCSI TargetName on login

Case-insensitive TargetName matching on logins was accidentally removed,
let's fix that by normalizing TargetName again according to RFC 3722.

Approved by:    re (cperciva)
PR:                     294522
Fixes:                  4b1aac931465f39c5c26bfa1d5539a428d340f20
Sponsored by:           ConnectWise
Reviewed by:            asomers, jhb
Approved by:            asomers (mentor)
Differential Revision:  https://reviews.freebsd.org/D56469

(cherry picked from commit eb837cb8b2073c09bafaf3318f5bb103827b2bca)
(cherry picked from commit 0baae6223a6350215d7b11264e59408362b15a19)
DeltaFile
+8-2usr.sbin/ctld/login.cc
+8-21 files

FreeBSD/src a7bc1c0sbin/fsck_msdosfs fat.c

fsck_msdosfs: fix FAT header correction not persisting in cache mode

When fsck_msdosfs runs with FAT32 cache mode (used for large
filesystems that cannot be mmap'd), a detected FAT header correction
was written into the in-memory buffer but the corresponding cache
entry (fat32_cache_allentries[0]) was never marked dirty.  As a
result, fat_flush_fat32_cache_entry() skipped it, the corrected
bytes were never written to disk, and copyfat() propagated the
uncorrected on-disk data to all backup FAT copies.  Every subsequent
fsck run would repeat the same "FAT starts with odd byte sequence /
FIXED" cycle indefinitely.

Fix by marking fat32_cache_allentries[0].dirty = true after applying
the in-memory correction, ensuring the chunk is flushed before
copyfat() runs.

Approved by:    re (cperciva)
Obtained from:  https://android-review.googlesource.com/c/platform/external/fsck_msdos/+/4047981


    [2 lines not shown]
DeltaFile
+11-0sbin/fsck_msdosfs/fat.c
+11-01 files

FreeBSD/ports 1d16e01sysutils/rundeck/files rundeck.in

sysutils/rundeck: Fix rc script startup

The fix is to remove ${rc_arg} from the su invocation in rundeck_start().
The JAR is invoked directly via daemon(8) and does not need nor support
rc(8)-style subcommands.

PR:             294978
Reported by:    Steffen <steffen at fritz.wtf>
Approved by:    Xavier Humbert <xavier at groumpf.org> (maintainer)
MFH:            2026Q2

(cherry picked from commit 36b5f8761acf2eaec5ab4017ba87b831f9a87b95)
DeltaFile
+1-1sysutils/rundeck/files/rundeck.in
+1-11 files

FreeBSD/ports 36b5f87sysutils/rundeck/files rundeck.in

sysutils/rundeck: Fix rc script startup

The fix is to remove ${rc_arg} from the su invocation in rundeck_start().
The JAR is invoked directly via daemon(8) and does not need nor support
rc(8)-style subcommands.

PR:             294978
Reported by:    Steffen <steffen at fritz.wtf>
Approved by:    Xavier Humbert <xavier at groumpf.org> (maintainer)
MFH:            2026Q2
DeltaFile
+1-1sysutils/rundeck/files/rundeck.in
+1-11 files

FreeBSD/ports c1dedb9devel/libks pkg-plist Makefile, devel/libks/files patch-CMakeLists.txt patch-src_include_libks_ks__platform.h

devel/libks: Add new port

Add a new devel/libks port for SignalWire's libks support library.

libks provides common C utility code used by SignalWire and related
projects, including platform abstraction, threading, networking, JSON,
UUID, TLS, logging, buffers, and general helper routines.

Reviewed by:    jrm
Differential Revision:  https://reviews.freebsd.org/D56907
DeltaFile
+42-0devel/libks/pkg-plist
+28-0devel/libks/Makefile
+24-0devel/libks/files/patch-CMakeLists.txt
+22-0devel/libks/files/patch-src_include_libks_ks__platform.h
+21-0devel/libks/files/patch-cmake_ksutil.cmake
+11-0devel/libks/files/patch-src_ks__thread.c
+148-03 files not shown
+156-09 files

FreeBSD/ports 64880edsysutils/cpu-microcode-intel distinfo Makefile

sysutils/cpu-microcode-intel: Update to 2026-05-12 release

This update includes security fixes for INTEL-SA-01420 affecting some
Arrow Lake and Panther Lake CPUs, as well as functional improvements for
various Intel Core Ultra and Xeon processors.

Release notes:  https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/microcode-20260512
Sponsored by:   The FreeBSD Foundation
DeltaFile
+3-3sysutils/cpu-microcode-intel/distinfo
+1-1sysutils/cpu-microcode-intel/Makefile
+1-0sysutils/cpu-microcode-intel/pkg-plist
+5-43 files

FreeBSD/ports 7bf7a91x11/ly Makefile

x11/ly: Fix brightness_up_cmd, bump PORTREVISION

(cherry picked from commit 94c0b178ffb220933eb846a4714425cafbff0096)
DeltaFile
+2-1x11/ly/Makefile
+2-11 files

FreeBSD/src f0bb84fusr.bin/vtfontcvt vtfontcvt.c

vtfontcvt: Add SPDX-License-Identifier tag

Reviewed by: emaste
Sponsored by: The FreeBSD Foundation

(cherry picked from commit f12a0dca86b529069a940f09aba796dd4e28c66f)
DeltaFile
+2-0usr.bin/vtfontcvt/vtfontcvt.c
+2-01 files

FreeBSD/src 025f886usr.sbin/makefs msdos.c msdos.h

makefs: Add SPDX-License-Identifier tags

Reviewed by: emaste
Sponsored by: The FreeBSD Foundation

(cherry picked from commit 6010b73fa9574b8e651b08451f30ba9c05f3f894)
DeltaFile
+2-0usr.sbin/makefs/msdos.c
+2-0usr.sbin/makefs/msdos.h
+4-02 files

FreeBSD/src 8fcc509usr.sbin/fstyp cd9660.c exfat.c

fstyp: Add SPDX-License-Identifier tags

Reviewed by: emaste
Sponsored by: The FreeBSD Foundation

(cherry picked from commit 836ac989933bcd5b662979bfdec429a201c123a6)
DeltaFile
+2-0usr.sbin/fstyp/cd9660.c
+2-0usr.sbin/fstyp/exfat.c
+2-0usr.sbin/fstyp/ext2fs.c
+2-0usr.sbin/fstyp/fstyp.c
+2-0usr.sbin/fstyp/fstyp.h
+2-0usr.sbin/fstyp/geli.c
+12-011 files not shown
+34-017 files

FreeBSD/src 9d283f9usr.bin/mkimg raw.c apm.c

mkimg: Add SPDX-License-Identifier tags

Reviewed by: emaste
Sponsored by: The FreeBSD Foundation

(cherry picked from commit 971696b22f7acc8c45600bb56b972340e9b912e8)
DeltaFile
+2-0usr.bin/mkimg/raw.c
+2-0usr.bin/mkimg/apm.c
+2-0usr.bin/mkimg/bsd.c
+2-0usr.bin/mkimg/ebr.c
+2-0usr.bin/mkimg/endian.h
+2-0usr.bin/mkimg/format.c
+12-014 files not shown
+40-020 files

FreeBSD/src cbf2071sbin/ipfw nptv6.c

ipfw: Add SPDX-License-Identifier tag

Reviewed by: emaste
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D55273

(cherry picked from commit 904e0dcd2967cfe72899e7285e6cd6e9977ae68c)
DeltaFile
+2-0sbin/ipfw/nptv6.c
+2-01 files

FreeBSD/src 16d0c34bin/chio chio.c defs.h

chio: Add SPDX-License-Identifier tags

Some BSD-4-Clause files under bin/chio were missing the
SPDX-License-Identifier-tag.

Reviewed by: emaste
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D55193

(cherry picked from commit b6824fe48e4197877f472268859ffe80d7fd946b)
DeltaFile
+2-0bin/chio/chio.c
+2-0bin/chio/defs.h
+2-0bin/chio/pathnames.h
+6-03 files

FreeBSD/src f7e41b4sbin/newfs_msdos mkfs_msdos.c mkfs_msdos.h

newfs_msdos: Add SPDX-License-Identifier tags

Reviewed by: emaste
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D55274

(cherry picked from commit 8ac992645850318d8b2cf93b083372b99b6374e1)
DeltaFile
+2-0sbin/newfs_msdos/mkfs_msdos.c
+2-0sbin/newfs_msdos/mkfs_msdos.h
+4-02 files

FreeBSD/src 03bc95bcddl/contrib/opensolaris/cmd/dtrace dtrace.1, share/man/man4 dtrace_dtmalloc.4 Makefile

dtrace_dtmalloc.4: Document the DTrace dtmalloc provider

MFC after:      1 week
Discussed with: christos, markj, ziaee
Differential Revision:  https://reviews.freebsd.org/D51396
DeltaFile
+132-0share/man/man4/dtrace_dtmalloc.4
+2-1cddl/contrib/opensolaris/cmd/dtrace/dtrace.1
+2-1share/man/man9/malloc.9
+1-0share/man/man4/Makefile
+137-24 files

FreeBSD/ports 165891asysutils/R-cran-processx distinfo Makefile

sysutils/R-cran-processx: Update to 3.9.0

Changelog:
https://cran.r-project.org/web/packages/processx/news/news.html

PR:             295049
DeltaFile
+3-3sysutils/R-cran-processx/distinfo
+2-2sysutils/R-cran-processx/Makefile
+5-52 files

FreeBSD/src e68433esys/kern kern_descrip.c

sys: Fix heap disclosure in compat7 kern.proc.filedesc sysctl

Reported by: Yuxiang Yang, Yizhou Zhao, Ao Wang, Xuewei Feng, Qi Li, and Ke Xu from Tsinghua University using GLM-5.1 from Z.ai

Reviewed by:    markj
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56976
DeltaFile
+1-1sys/kern/kern_descrip.c
+1-11 files

FreeBSD/ports 94c0b17x11/ly Makefile

x11/ly: Fix brightness_up_cmd, bump PORTREVISION
DeltaFile
+2-1x11/ly/Makefile
+2-11 files

FreeBSD/ports 2ce64c4lang/tcl86 distinfo pkg-plist, lang/tcl86/files patch-unix-Makefile.in patch-unix-installManPage

lang/tcl86, x11-toolkits/tk86: update to 8.6.18

Announcement: https://sourceforge.net/p/tcl/mailman/message/59333692/
DeltaFile
+14-57lang/tcl86/files/patch-unix-Makefile.in
+3-3x11-toolkits/tk86/distinfo
+3-3lang/tcl86/distinfo
+3-3lang/tcl86/pkg-plist
+4-1lang/tcl86/Makefile
+2-2lang/tcl86/files/patch-unix-installManPage
+29-692 files not shown
+32-728 files