FreeBSD/ports 389beabdeskutils/gnome-initial-setup Makefile, sysutils/mate-control-center Makefile

*: Bump PORTREVISION on libaccountsservice.so consumers

PR:             294993
Reported by:    Ale <discipline at tiscali.it>
Fixes:          5c1a2fb873434e3b845e8396edbff71e27ec130c
DeltaFile
+1-1deskutils/gnome-initial-setup/Makefile
+1-1x11/cinnamon-screensaver/Makefile
+1-1sysutils/mate-control-center/Makefile
+1-1x11/swaysettings/Makefile
+1-0x11/gdm/Makefile
+1-0x11/budgie-desktop/Makefile
+6-43 files not shown
+9-49 files

FreeBSD/ports b8732dasysutils/accountsservice Makefile, sysutils/accountsservice/files patch-generate-version.sh

sysutils/accountsservice: Fix version reported by pkg-config

Reported by:    cmt
Fixes:          5c1a2fb873434e3b845e8396edbff71e27ec130c
DeltaFile
+0-11sysutils/accountsservice/files/patch-generate-version.sh
+5-0sysutils/accountsservice/Makefile
+5-112 files

LLVM/project fab2603llvm/lib/Target/AMDGPU VOP1Instructions.td VOPInstructions.td

[AMDGPU] Add VOP1 DPP8 pseudo infrastructure

Add VOP_DPP8_Pseudo/VOP1_DPP8_Pseudo classes for DPP8 instructions, similar to
the existing VOP_DPP_Pseudo/VOP1_DPP_Pseudo pattern.
DeltaFile
+20-17llvm/lib/Target/AMDGPU/VOP1Instructions.td
+25-0llvm/lib/Target/AMDGPU/VOPInstructions.td
+45-172 files

LLVM/project 900dd1dclang/lib/Driver/ToolChains AMDGPU.cpp

clang/AMDGPU: Use all_equal instead of building a temporary set (#196742)
DeltaFile
+1-2clang/lib/Driver/ToolChains/AMDGPU.cpp
+1-21 files

FreeBSD/ports 21fb84dmisc/py-sagemaker-train distinfo Makefile

misc/py-sagemaker-train: update 1.9.0 → 1.10.1
DeltaFile
+3-3misc/py-sagemaker-train/distinfo
+4-2misc/py-sagemaker-train/Makefile
+7-52 files

FreeBSD/ports a5c3290misc Makefile, misc/py-sagemaker-schema-inference-artifacts Makefile distinfo

misc/py-sagemaker-schema-inference-artifacts: New port: SageMaker: Library for Hugging Face Task Sample Inputs and Outputs
DeltaFile
+36-0misc/py-sagemaker-schema-inference-artifacts/Makefile
+3-0misc/py-sagemaker-schema-inference-artifacts/distinfo
+2-0misc/py-sagemaker-schema-inference-artifacts/pkg-descr
+1-0misc/Makefile
+42-04 files

FreeBSD/ports 1aa37acmisc/py-sagemaker-serve Makefile distinfo

misc/py-sagemaker-serve: update 1.9.0 → 1.10.1
DeltaFile
+7-5misc/py-sagemaker-serve/Makefile
+3-3misc/py-sagemaker-serve/distinfo
+10-82 files

FreeBSD/ports 6ae7374misc/py-sagemaker-shim distinfo Makefile

misc/py-sagemaker-shim: update 0.6.1 → 0.7.0
DeltaFile
+3-3misc/py-sagemaker-shim/distinfo
+1-1misc/py-sagemaker-shim/Makefile
+4-42 files

FreeBSD/ports 3388403misc/py-sagemaker-core distinfo Makefile

misc/py-sagemaker-core: update 2.9.0 → 2.10.1
DeltaFile
+3-3misc/py-sagemaker-core/distinfo
+1-2misc/py-sagemaker-core/Makefile
+4-52 files

FreeBSD/ports 69b0290misc/py-sagemaker-mlops Makefile distinfo

misc/py-sagemaker-mlops: update 1.9.0 → 1.10.1
DeltaFile
+8-6misc/py-sagemaker-mlops/Makefile
+3-3misc/py-sagemaker-mlops/distinfo
+11-92 files

FreeBSD/ports a89bf3emisc/py-sagemaker Makefile distinfo

misc/py-sagemaker: update 3.9.0 → 3.10.1
DeltaFile
+5-5misc/py-sagemaker/Makefile
+3-3misc/py-sagemaker/distinfo
+8-82 files

FreeBSD/ports ab55b4ddevel/git-town distinfo Makefile

devel/git-town: update 22.7.1 → 23.0.0
DeltaFile
+7-7devel/git-town/distinfo
+2-3devel/git-town/Makefile
+9-102 files

LLVM/project ee29cb1clang/test/Preprocessor predefined-arch-macros.c

clang: Fix using -march=amdgcn in some r600 run lines (#196745)
DeltaFile
+2-2clang/test/Preprocessor/predefined-arch-macros.c
+2-21 files

FreeBSD/src f066979sys/kern uipc_usrreq.c, tests/sys/kern unix_stream.c

unix: Make sure we signal EOF on the write side when disconnecting

Add a regression test.

PR:             294014
Reported by:    diizzy
Reviewed by:    glebius
MFC after:      1 week
Fixes:          d15792780760 ("unix: new implementation of unix/stream & unix/seqpacket")
Differential Revision:  https://reviews.freebsd.org/D56764

(cherry picked from commit 476805133f5736c2c8638e41d2b5d8dd2c597f3a)
DeltaFile
+62-19tests/sys/kern/unix_stream.c
+2-0sys/kern/uipc_usrreq.c
+64-192 files

LLVM/project 2d8bcb5llvm/lib/Transforms/Vectorize VPlanRecipes.cpp VPlanUtils.cpp

[VPlan] Lift isUsedByLoadStoreAddr into vputils, operate on VPValue(NFC) (#196415)

Extract the helper previously scoped to VPReplicateRecipe::computeCost
and make it available from VPlanUtils so other transforms can query
whether a VPValue is used as part of another load or store's address.

Also relax the input type from VPUser * to VPValue *: the worklist now
tracks VPValues directly, and traversal is gated on the user being a
VPSingleDefRecipe before walking its own users. This is NFC for the
existing caller.
DeltaFile
+1-51llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+51-0llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
+4-0llvm/lib/Transforms/Vectorize/VPlanUtils.h
+56-513 files

FreeBSD/ports de7ba06security/vuxml/vuln 2026.xml

security/vuxml: Adjust listing for OpenVPN 2.6.20 release

Fixes in 2.7.2 are backported to 2.6.20 release

PR:             294714
Security:       549313db-3e93-11f1-8d38-7fbbe0285610
                CVE-2026-35058
                CVE-2026-40215
DeltaFile
+3-1security/vuxml/vuln/2026.xml
+3-11 files

FreeBSD/ports 145127bnet/gerbera pkg-message Makefile, net/gerbera/files pkg-message.in gerbera.in

net/gerbera: Adjust comment and move pkg-message file

Adjust comment in files/gerbera.in
Adjust pkg-message and move to "root" dir
DeltaFile
+11-0net/gerbera/pkg-message
+0-11net/gerbera/files/pkg-message.in
+1-1net/gerbera/files/gerbera.in
+0-1net/gerbera/Makefile
+12-134 files

FreeBSD/ports 871d6c9dns/godns pkg-message Makefile, dns/godns/files pkg-message.in godns.in

dns/godns: Fix various comments and text for port

Fix comment in files/godns.in
Adjust pkg-message and move it to "root" dir
Adjust pkg-descr
DeltaFile
+22-0dns/godns/pkg-message
+0-22dns/godns/files/pkg-message.in
+1-1dns/godns/files/godns.in
+0-2dns/godns/Makefile
+1-1dns/godns/pkg-descr
+24-265 files

FreeBSD/ports 593d86fdevel/capnproto pkg-message Makefile

devel/capnproto: Add notice about kernel bug affecting 15.0

Add notice about kernel bug on 15.0
While at it do a minor change to port Makefile

Reference:
https://cgit.freebsd.org/src/commit/?id=476805133f5736c2c8638e41d2b5d8dd2c597f3a
DeltaFile
+10-0devel/capnproto/pkg-message
+2-1devel/capnproto/Makefile
+12-12 files

FreeBSD/ports ee2a3cfmultimedia/mediamtx pkg-message Makefile, multimedia/mediamtx/files pkg-message.in mediamtx.in

multimedia/mediamtx: Fix various comment and move pkg-message file

Adjust comment in files/mediamtx.in
Move pkg-message file to "root" dir
DeltaFile
+11-0multimedia/mediamtx/pkg-message
+0-11multimedia/mediamtx/files/pkg-message.in
+1-1multimedia/mediamtx/files/mediamtx.in
+0-1multimedia/mediamtx/Makefile
+12-134 files

FreeBSD/ports efc6edbaudio/exhale Makefile, audio/exhale/files patch-git-02-c7a62e9438c55817283c965a5acf4398cb1c672c

audio/exhale: Backport upstream commit

Backport upstream commit c7a62e9438c55817283c965a5acf4398cb1c672c

Reference:
https://gitlab.com/ecodis/exhale/-/commit/c7a62e9438c55817283c965a5acf4398cb1c672c
DeltaFile
+117-0audio/exhale/files/patch-git-02-c7a62e9438c55817283c965a5acf4398cb1c672c
+1-1audio/exhale/Makefile
+118-12 files

LLVM/project 615a7e0mlir/lib/Conversion/MathToSPIRV MathToSPIRV.cpp, mlir/test/Conversion/MathToSPIRV math-to-opencl-spirv.mlir

[mlir][SPIR-V] Convert math.fpowi to spirv.CL.pown (#196701)
DeltaFile
+21-1mlir/lib/Conversion/MathToSPIRV/MathToSPIRV.cpp
+14-0mlir/test/Conversion/MathToSPIRV/math-to-opencl-spirv.mlir
+35-12 files

LLVM/project cb5d076clang/docs ClangFormatStyleOptions.rst, clang/include/clang/Format Format.h

[clang-format] Add BreakFunctionDeclarationParameters option. (#196567)

Adds an option the break function declaration parameters, always putting
them on the next line after the function opening parentheses.

This is an equivalent of `BreakFunctionDefinitionParameters`, but for
function declarations.

---------

Co-authored-by: Lukas Jirkovsky <lukas.jirkovsky at aveco.com>
DeltaFile
+27-0clang/unittests/Format/FormatTest.cpp
+16-0clang/include/clang/Format/Format.h
+15-0clang/docs/ClangFormatStyleOptions.rst
+9-0clang/unittests/Format/AlignBracketsTest.cpp
+6-0clang/lib/Format/TokenAnnotator.cpp
+3-0clang/lib/Format/Format.cpp
+76-02 files not shown
+79-08 files

OpenBSD/src bAO6SNYusr.bin/mandoc main.c

   The regression fix in rev. 1.271 was still incomplete.

   While the fchdir(2) in main() is indeed needed such that the mparse_open()
   in process_onefile() finds local files, there is a second, smaller
   issue purely inside check_xr(): As the ultimate fallback, fs_search()
   looks for cross-referenced manual pages in the current directory,
   which is typically used for working on software under development
   that is not yet installed.  Consequently, a second fchdir(2) is needed
   inside check_xr() between mansearch(), which typically changes directory,
   and the subsequent fs_search().

   This makes sure that "mandoc -T lint" on a manual page that contains
   an .Xr link to another manual page that is not installed but present
   in the current directory does not complain about that link.
   Again reported by anton@.

   The fix is slightly awkward because the directory file descriptor
   needs to be passed down through multiple layer of subroutines, but i
   fear that cannot be helped because it is needed both in the main program
   and in the low-level function check_xr().
VersionDeltaFile
1.272+13-11usr.bin/mandoc/main.c
+13-111 files

FreeBSD/src ad2fff6tests/sys/netinet carp.sh

tests/carp: make a 0.2 second pause before configuring second jail

for all scenarios where both jails have same priority/advskew.  There is a
tiny chance that on both sides carp_master_down() will be executed in
parallel and advertisements will also fly through the bridge(4) in
parallel, thus both sides will switch to MASTER before receiving the
announcement from peer.  This makes the test to fail.  So far this
flakyness was observed for carp:vrrp_v4 only, but in theory it is possible
for any of the patched scenarios.

Note that this sleep does not prolong execution of the tests, as the first
jail is already configured, and if we slept before configuring the second,
we would sleep less in wait_for_carp().

(cherry picked from commit 27ff90cd3d8d2ac8198f30cbebeefb15a49d41bc)
DeltaFile
+7-0tests/sys/netinet/carp.sh
+7-01 files

FreeBSD/src 107ef0ctests/sys/netinet carp.sh

tests/carp: Rework unicast_v4

For unicast tests, it is sufficient to use wait_for_carp() to verify
the setup is sane. Additional sanity checks are not necessarily
required but can serve purpose for redundancy.

For some unclear reason routed(8) is advertising route to carp BACKUP.
That makes the test flaky. Also routed(8) is marked deprecated and may
be removed from base in the future. Let's just add static route entry
manually for additional sanity checks.

Other noticeable changes:
  1. Add atf_check to configuration steps to prevent potential failure
on setup. That helps diagnosing on failure.
  2. Shorten the names of jails to improve readability.
  3. Prefer `[ifconfig|route|sysctl] -j` over `jexec [ifconfig|route|sysctl]`
to make the lines shorter.

MFC note: At the time writing, routed(8) does not know carp addresses

    [10 lines not shown]
DeltaFile
+44-36tests/sys/netinet/carp.sh
+44-361 files

FreeBSD/src 332485atests/sys/netinet carp.sh

tests/carp: make sleep interval in the wait loop smaller

Makes tests to finish slightly faster.

(cherry picked from commit e353cbffd600ae3c00c8584dddcabf9d0ae1202a)
DeltaFile
+1-1tests/sys/netinet/carp.sh
+1-11 files

FreeBSD/src 89096d6tests/sys/netinet carp.sh

tests/carp: kill routed(8) before destroying interfaces

Otherwise routed logs a warning:

"MCAST_LEAVE_GROUP ALLROUTERS: Can't assign requested address"

that may be misinterpreted as a problem.

(cherry picked from commit 8596810d02a1e361e0312d116339aa106aca4b19)
DeltaFile
+3-0tests/sys/netinet/carp.sh
+3-01 files

Linux/linux 1bfaee9fs/overlayfs util.c

Merge tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fsverity/linux

Pull fsverity fix from Eric Biggers:
 "Fix a regression in overlayfs caused by an fsverity API change"

* tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fsverity/linux:
  ovl: fix verity lazy-load guard broken by fsverity_active() semantic change
DeltaFile
+1-1fs/overlayfs/util.c
+1-11 files

LLVM/project a2d17c5clang/test/Preprocessor predefined-arch-macros.c

clang: Fix using -march=amdgcn in some r600 run lines
DeltaFile
+2-2clang/test/Preprocessor/predefined-arch-macros.c
+2-21 files