FreeBSD/ports b558e3fnet/libslirp Makefile distinfo

net/libslirp: Update to 4.9.4
DeltaFile
+3-3net/libslirp/distinfo
+1-1net/libslirp/Makefile
+4-42 files

FreeBSD/ports 4a288edchinese/fcitx-libpinyin pkg-plist Makefile

chinese/fcitx-libpinyin: Drop support for Qt5

Qt5 option requires deprecated WebEngine.

PR:             298172
Approved by:    maintainer
DeltaFile
+2-18chinese/fcitx-libpinyin/Makefile
+0-1chinese/fcitx-libpinyin/pkg-plist
+2-192 files

FreeBSD/ports 4f2a492astro/traccar Makefile distinfo

astro/traccar: upgrade to 6.15.3
DeltaFile
+424-409astro/traccar/pkg-plist
+3-3astro/traccar/distinfo
+1-1astro/traccar/Makefile
+428-4133 files

FreeBSD/ports a4c421cMk/Uses xorg-cat.mk, x11/xcb-proto Makefile distinfo

Mk/Uses/xorg-cat.mk: Resurrect CATEGORIES=proto and switch EXTRACT_SUFX to xz

Resurrect CATEGORIES=proto to simplify the port's Makefile.
Remove experimental from the meson's comment, as some ports have fully
transitioned to building with Meson.
Upstream has switched from bz2 to xz, so update EXTRACT_SUFX.

PR:             298092
Approved by:    x11 (arrowd)
Approved by:    fluffy (mentor)
DeltaFile
+8-5x11/xf86dga/Makefile
+7-3Mk/Uses/xorg-cat.mk
+1-5x11/xorgproto/Makefile
+3-3x11/xorgproto/distinfo
+3-3x11/xcb-proto/distinfo
+1-4x11/xcb-proto/Makefile
+23-238 files not shown
+32-4414 files

FreeBSD/ports 91a365bdevel/hyperscan/files patch-CMakeLists.txt

devel/hyperscan: Fix building with CMake 4

Approved by:    portmgr (fixit blanket)
DeltaFile
+6-0devel/hyperscan/files/patch-CMakeLists.txt
+6-01 files

FreeBSD/src 9872af2usr.sbin/gstat gstat.c

gstat: Set errno = 0 before strtoul

The strtoul function sets errno on error, but does not clear it on
success; when using strtoul and checking errno (as one should) for
ERANGE / EINVAL afterwards, it's important to zero errno first.

While here, remove a dead store.

Reviewed by:    phk
Fixes:  4fe8c1b67be0 ("Add error and range checking ... ")
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D59270

(cherry picked from commit 6ddb10cf6b7f870d749e96d2ae55976b18896f54)
DeltaFile
+1-1usr.sbin/gstat/gstat.c
+1-11 files

FreeBSD/ports 458dbcfsysutils/sylve Makefile distinfo

sysutils/sylve: Update to 0.3.1

Changelog:      https://github.com/AlchemillaHQ/Sylve/releases/tag/v0.3.1
Sponsored by:   The FreeBSD Foundation

Differential Revision:  https://reviews.freebsd.org/D59480
DeltaFile
+7-7sysutils/sylve/distinfo
+1-2sysutils/sylve/Makefile
+8-92 files

FreeBSD/src bf95db1usr.sbin/gstat gstat.c

gstat: Set errno = 0 before strtoul

The strtoul function sets errno on error, but does not clear it on
success; when using strtoul and checking errno (as one should) for
ERANGE / EINVAL afterwards, it's important to zero errno first.

While here, remove a dead store.

Reviewed by:    phk
Fixes:  4fe8c1b67be0 ("Add error and range checking ... ")
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D59270

(cherry picked from commit 6ddb10cf6b7f870d749e96d2ae55976b18896f54)
DeltaFile
+1-1usr.sbin/gstat/gstat.c
+1-11 files

FreeBSD/src b712bb8sys/netinet tcp_subr.c tcp_usrreq.c

tcp: fix TCPS_CLOSED state underleak in syncache_socket()

The syncache entry holds one TCPS_SYN_RECEIVED count that normally is
transferred to the the newborn tp.  Upon failure syncache_socket() shall
not use TCPSTATES_INC/TCPSTATES_DEC (see 5050df3f4aa4 why).  But when
syncache_socket() fails in_pcbconnect(), it calls tcp_discardcb() to free
resources that were just allocated by tcp_newtcpcb() and this
tcp_discardcb() would do TCPSTATES_DEC(tp->t_state).  The t_state is
TCPS_CLOSED at this point.

Make tcp_discardcb() symmetrical to tcp_newtcpcb() - not responsible for
the TCPSTATES.  Make the caller responsible for state count book keeping.

Reviewed by:            tuexen
Fixes:                  3703e1a73e0e0367c04f47f793e46495e46e647b
Differential Revision:  https://reviews.freebsd.org/D59325
DeltaFile
+0-1sys/netinet/tcp_subr.c
+1-0sys/netinet/tcp_usrreq.c
+1-12 files

FreeBSD/ports 799b961security/pkcs11-tools distinfo Makefile

security/pkcs11-tools: Update 3.0.0 => 3.1.0

Port Changes:
- Use distribution tarball rather than pure source code
  for prebuilt manpages instead of depending on Pandoc.

Changelog:
https://github.com/Mastercard/pkcs11-tools/blob/v3.1.0/CHANGELOG.md

PR:             297826
Approved by:    osa, vvd (Mentors, implicit)
Co-authored-by: Yusuf Yaman <nxjoseph at FreeBSD.org>
DeltaFile
+37-1security/pkcs11-tools/pkg-plist
+10-10security/pkcs11-tools/Makefile
+3-3security/pkcs11-tools/distinfo
+50-143 files

FreeBSD/src 2e16d37tests/sys/netinet udp_bindings.c

tests/netinet: test case for a jail with 2 addresses

Check that wildcard bind(2) doesn't yet select a local address, and later
connect(2) succeeds.
DeltaFile
+31-0tests/sys/netinet/udp_bindings.c
+31-01 files

FreeBSD/src 08cf959sys/netinet in_pcb.c

inpcb: use new local address in in_pcbconnect()

when collecting necessary locks for the operation.  The IPv6 version
is already correct.

Submitted by:   Nick Price <nick spun.io>
Fixes:          1dda8ba77a20d983774a3bf0e94c51c93f1d8758
DeltaFile
+1-1sys/netinet/in_pcb.c
+1-11 files

FreeBSD/ports 2540207devel/tinygo Makefile distinfo, devel/tinygo/files patch-Makefile modules.txt

devel/tinygo: Update 0.19.0 => 0.42.0, take maintainership

The port has been stuck at 0.19.0 since 2021 and was deprecated on
2026-08-08 along with the other ports pinned to Go 1.25, scheduled for
removal on 2026-09-30.  Upstream 0.42.0 supports Go 1.27 and LLVM 22, so
the pin goes away and with it the reason for the deprecation.

Upstream renamed Makefile to GNUmakefile, dropped the git rev-parse call
and ships the submodule marker files the build checks for, so
files/patch-Makefile is no longer needed at all and the port now builds
unpatched.  wasm-opt is taken from devel/binaryen rather than built from
the bundled copy, and build/release no longer produces a pkg directory.

The bundled LLVM is now a fork of llvm-project carrying the Xtensa
backend, pinned by the commit recorded in llvm-version.txt.  Keeping it
bundled rather than switching to devel/llvm22 is what makes the Xtensa
targets work, ESP32 included.

tinygo resolves GOROOT by running "go" from PATH, which the package does

    [13 lines not shown]
DeltaFile
+8,757-924devel/tinygo/pkg-plist
+260-0devel/tinygo/files/modules.txt
+117-55devel/tinygo/distinfo
+87-38devel/tinygo/Makefile
+0-57devel/tinygo/files/patch-Makefile
+9,221-1,0745 files

FreeBSD/ports d339f7cfinance/frontaccounting Makefile, finance/frontaccounting/files patch-includes_db_inventory__db.inc patch-includes_session.inc

finance/frontaccounting: Update 2.4.12 => 2.4.20

Changelog:
https://frontaccounting.com/wbt/pages/posts/release-2.4.13-230.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.14-231.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.15-232.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.15-232.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.16-233.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.17-234.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.18-235.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.19-236.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.20-237.php

- Replaced the old FreeBSD patch that enabled the late ini_set() calls.
- Upstream corrected the assignment to $deliver_to.
- Added a port patch for PDF parser and page rotation
- Add two FPDI fixes still required in upstream 2.4.20: declare
  $actual_obj and handle missing page rotation without accessing an
  array offset on false.

    [35 lines not shown]
DeltaFile
+197-0finance/frontaccounting/files/email_template.php
+18-22finance/frontaccounting/Makefile
+30-0finance/frontaccounting/files/patch-reporting_includes_pdf__report.inc
+12-11finance/frontaccounting/files/patch-includes_session.inc
+15-8finance/frontaccounting/files/pkg-message.in
+20-0finance/frontaccounting/files/patch-includes_db_inventory__db.inc
+292-415 files not shown
+330-4811 files

FreeBSD/ports 7b541dbfinance/frontaccounting Makefile, finance/frontaccounting/files patch-includes_db_inventory__db.inc patch-includes_session.inc

finance/frontaccounting: Update 2.4.12 => 2.4.20

Changelog:
https://frontaccounting.com/wbt/pages/posts/release-2.4.13-230.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.14-231.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.15-232.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.15-232.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.16-233.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.17-234.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.18-235.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.19-236.php
https://frontaccounting.com/wbt/pages/posts/release-2.4.20-237.php

- Replaced the old FreeBSD patch that enabled the late ini_set() calls.
- Upstream corrected the assignment to $deliver_to.
- Added a port patch for PDF parser and page rotation
- Add two FPDI fixes still required in upstream 2.4.20: declare
  $actual_obj and handle missing page rotation without accessing an
  array offset on false.

    [33 lines not shown]
DeltaFile
+197-0finance/frontaccounting/files/email_template.php
+18-22finance/frontaccounting/Makefile
+30-0finance/frontaccounting/files/patch-reporting_includes_pdf__report.inc
+12-11finance/frontaccounting/files/patch-includes_session.inc
+15-8finance/frontaccounting/files/pkg-message.in
+20-0finance/frontaccounting/files/patch-includes_db_inventory__db.inc
+292-415 files not shown
+330-4811 files

FreeBSD/src 153446esys/compat/linuxkpi/common/include/linux mm.h

linuxkpi: Add `split_page()`

This function is supposed to split large pages into an array of
`PAGE_SIZE`-sized pages, with correct refcounting. This is apparently
used to allow some drivers to free a part of a large page only.

I don't think we use large pages in linuxkpi. Therefore, this new
function is curently a no-op.

The DRM drivers TTM memory manager started to use it in Linux 6.15.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D58762
DeltaFile
+6-0sys/compat/linuxkpi/common/include/linux/mm.h
+6-01 files

FreeBSD/src be6e357sys/compat/linuxkpi/common/src linux_compat.c

linuxkpi: Update `struct vm_area_struct` when an existing mapping is extended

With Mesa 26 and DRM drivers in Linux 6.13, userspace will try to extend
an existing mmap, at last push the end address further.

Before this change, the mapping was not updated, but userspace would try
to access a page after the initial end address, leading to a panic
triggered by the following assertion in `vm_fault_populate()`:

    MPASS(fs->first_pindex <= pager_last);

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D58195
DeltaFile
+13-0sys/compat/linuxkpi/common/src/linux_compat.c
+13-01 files

FreeBSD/src fbc89a8sys/compat/linuxkpi/common/include/linux kthread.h

linuxkpi: Add `kthread_run_worker()`

On Linux, `kthread_run_worker()` differs from `kthread_create_worker()`
by waking up the task after creating it with `kthread_create_worker()`.

On FreeBSD, we already execute it and wait for it, so probably no need
to do anything further. Therefore, `kthread_run_worker()` is an alias to
`kthread_create_worker()`.

The DRM drivers generic code started to replace
`kthread_create_worker()` by `kthread_run_worker()` as is in Linux 6.14.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57701
DeltaFile
+11-0sys/compat/linuxkpi/common/include/linux/kthread.h
+11-01 files

FreeBSD/src 33ba607sys/compat/linuxkpi/common/include/linux kobject.h

linuxkpi: Alias `sd` field of `struct kobject`

On Linux, a `struct kernfs_node *` pointer, representing a directory in
sysfs, is kept in the `sd` struct field.

We don't have that on FreeBSD because we use sysctls instead. Let's
alias the sysctl OID pointer to `sd` using an union.

This pointer is checked by the DRM drivers using:
    if (var->kobj.sd) {
        ...
    }

The amdgpu DRM driver started to use these checks in Linux 6.13.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57586
DeltaFile
+16-1sys/compat/linuxkpi/common/include/linux/kobject.h
+16-11 files

FreeBSD/ports 1a46f75security/hpenc Makefile

security/hpenc: Mark deprecated

Approved by:    vsevolod (maintainer, via Telegram)

(cherry picked from commit b7f90450b67b11effd5e1f55e6331892d51c4522)
DeltaFile
+4-1security/hpenc/Makefile
+4-11 files

FreeBSD/ports b7f9045security/hpenc Makefile

security/hpenc: Mark deprecated

Approved by:    vsevolod (maintainer, via Telegram)
DeltaFile
+4-1security/hpenc/Makefile
+4-11 files

FreeBSD/ports 80739e8graphics/heimer Makefile

graphics/heimer: Fix building with CMake 4

It is already fixed upstream the proper way, so this knob is only a temporary
measure.

Approved by:    portmgr (fixit blanket)
DeltaFile
+1-0graphics/heimer/Makefile
+1-01 files

FreeBSD/ports fd23795www/code-server Makefile.install Makefile, www/code-server/files patch-lib_vscode_src_vs_base_node_ps.ts EXTENSIONS.md

www/code-server: Fix process listing

Split the ps(1) arguments the same way editors/vscode does; FreeBSD's
ps does not accept the combined column list, which broke the process
explorer and the process diagnostics.

Also document which extensions need a native language server on
FreeBSD and how to configure them, install the document as
EXTENSIONS.md and point to it from the install message.

Obtained from:  editors/vscode (ps.ts patch)
Sponsored by:   Netzkommune GmbH
DeltaFile
+89-0www/code-server/files/EXTENSIONS.md
+16-0www/code-server/pkg-message
+11-0www/code-server/files/patch-lib_vscode_src_vs_base_node_ps.ts
+2-2www/code-server/Makefile
+1-1www/code-server/Makefile.install
+119-35 files

FreeBSD/ports 9f91228sysutils/py-python-crontab distinfo Makefile

sysutils/py-python-crontab: Update to 3.4.0

Changelog:      https://gitlab.com/doctormo/python-crontab/-/compare/v3.3.0...v3.4.0
DeltaFile
+3-5sysutils/py-python-crontab/Makefile
+3-3sysutils/py-python-crontab/distinfo
+6-82 files

FreeBSD/ports 6d6b444sysutils/py-croniter Makefile distinfo, sysutils/py-croniter/files patch-pyproject.toml

sysutils/py-croniter: Update to 6.2.4

Changelog:      https://github.com/kiorky/croniter/blob/master/CHANGELOG.rst
DeltaFile
+7-7sysutils/py-croniter/files/patch-pyproject.toml
+3-3sysutils/py-croniter/distinfo
+2-2sysutils/py-croniter/Makefile
+12-123 files

FreeBSD/ports f1d9a80www/py-scrapy distinfo Makefile

www/py-scrapy: Update to 2.18.0

Changelog:      https://github.com/scrapy/scrapy/releases/tag/2.18.0

Sync RUN_DEPENDS with the upstream requirements:
- Raise the minimum versions of w3lib (2.1.1), pyopenssl (24.3.0),
  queuelib (1.6.1), service-identity (24.2.0) and lxml (4.6.4);
  the stale floors previously allowed pkg to pair this scrapy with
  an incompatible w3lib 1.x at runtime
- Add direct dependencies on cryptography, brotli and
  backports.zstd (zstd response support on Python < 3.14), which
  upstream declares explicitly since 2.18
DeltaFile
+10-8www/py-scrapy/Makefile
+3-3www/py-scrapy/distinfo
+13-112 files

FreeBSD/ports da19e04games/stockfish Makefile distinfo

games/stockfish: Update 18 => 19

Summary of changes:
+ In tests against Stockfish 18, brings an Elo gain of up to 44 points
+ Wins more than three times as many game pairs as it loses
+ This release introduces the SFNNv16 network architecture, reducing binary size
+ Increased strength by introducing new pawn-pair features
+ The secondary neural network, introduced in Stockfish 16.1, has been retired
+ stricter validation for board positions, FEN strings, and UCI commands

Release Notes:
https://stockfishchess.org/blog/2026/stockfish-19/

Changelog:
https://github.com/official-stockfish/Stockfish/releases/tag/sf_19

PR:             298289
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+4-8games/stockfish/Makefile
+5-7games/stockfish/distinfo
+9-152 files

FreeBSD/src 3732127sys/amd64/amd64 pmap.c, sys/arm64/arm64 pmap.c

amd64/arm64 pmap: consistently clear PGA_WRITEABLE

We don't consistently clear PGA_WRITEABLE on fictitious, managed pages.
Some functions do, e.g., pmap_remove_all(), but several do not.  At
worst, this is just a pessimization, but there is no good reason to be
inconsistent.  Clear PGA_WRITEABLE in those that previously did not by
introducing (and using) the helper function pmap_page_is_mapped_locked()
that implements the correct test.

Reviewed by:    kib, markj
MFC after:      3 weeks
Differential Revision:  https://reviews.freebsd.org/D59466
DeltaFile
+28-36sys/arm64/arm64/pmap.c
+25-28sys/amd64/amd64/pmap.c
+53-642 files

FreeBSD/ports f120efcmultimedia/obs-waveform Makefile

multimedia/obs-waveform: unbreak build on !x86[_64]

Avoid usage of Intel-specific CPU instructions on non-Intel platforms

Reported by:    bulk -t (aarch64)
Approved by:    portmgr blanket
DeltaFile
+6-0multimedia/obs-waveform/Makefile
+6-01 files

FreeBSD/ports bcdc4badevel/universal-ctags Makefile distinfo

devel/universal-ctags: Update p6.2.20260816.0 => p6.2.20260906.0

Commit log:
https://github.com/universal-ctags/ctags/compare/p6.2.20260816.0...p6.2.20260906.0

PR:             298283
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+3-3devel/universal-ctags/distinfo
+1-1devel/universal-ctags/Makefile
+4-42 files