FreeBSD/ports 0759279lang/perl5.42 version.mk pkg-plist

lang/perl5.42: update to 5.42.3

Changes:        https://metacpan.org/release/SHAY/perl-5.42.3/view/pod/perldelta.pod
Security:       CVE-2026-13221, CVE-2026-57432, CVE-2026-8376
DeltaFile
+3-3lang/perl5.42/distinfo
+4-0lang/perl5.42/pkg-plist
+1-1lang/perl5.42/version.mk
+8-43 files

FreeNAS/freenas 35c02d0src/middlewared pyproject.toml

Fix typo
DeltaFile
+1-1src/middlewared/pyproject.toml
+1-11 files

LLVM/project 4905109llvm/lib/Transforms/IPO OpenMPOpt.cpp, llvm/test/Transforms/OpenMP spmdization_kernel_env_static_loop.ll

[OpenMP] Analyze the loop-body callback of the static-loop runtime entries (#211287)

Fixes #211132. Also removes the trigger for #198621, see below.

`AAKernelInfo` treats the loop body passed to the
`__kmpc_*_static_loop_*` entries as opaque and records an unknown
parallel region for it, per the TODO at the site. Consequently
`NestedParallelism` is true for any kernel whose parallel region
contains a device workshare loop, and `MayUseNestedParallelism` is
written to the kernel environment as 1 where it should be 0.

The callback is a direct function operand at the callsite, so resolve it
and consult its `AAKernelInfo`, exactly as the `__kmpc_parallel_60`
handling already does for its parallel-region operand a few lines away.
Only record an unknown region when it does not resolve, or does reach
parallel regions. The SPMD-izability half of the TODO is left alone.

Only flang lowers device workshare loops through these entries; clang
emits `__kmpc_for_static_init_4` plus an explicit loop, which the

    [54 lines not shown]
DeltaFile
+94-0llvm/test/Transforms/OpenMP/spmdization_kernel_env_static_loop.ll
+56-11llvm/lib/Transforms/IPO/OpenMPOpt.cpp
+150-112 files

LLVM/project 8b72ae9lldb/source/Plugins/LanguageRuntime/CPlusPlus CommonABIRuntime.h CommonABIRuntime.cpp

fix: define empty functions in the header
DeltaFile
+0-21lldb/source/Plugins/LanguageRuntime/CPlusPlus/CommonABIRuntime.cpp
+9-5lldb/source/Plugins/LanguageRuntime/CPlusPlus/CommonABIRuntime.h
+9-262 files

LLVM/project 24a9427lld/ELF/Arch AArch64.cpp, lld/test/ELF aarch64-reloc-pauth-undef-weak.s aarch64-reloc-pauth-undef-weak-pie.s

`.tlsdescauthcall` -> `.tlsauthdesccall` (per documentation)
DeltaFile
+5-5lld/test/ELF/aarch64-tlsdesc-pauth.s
+1-1lld/test/ELF/aarch64-reloc-pauth-undef-weak.s
+1-1lld/test/ELF/aarch64-reloc-pauth-undef-weak-pie.s
+1-1lld/test/ELF/aarch64-reloc-pauth-undef-weak-dso.s
+1-1lld/ELF/Arch/AArch64.cpp
+9-95 files

FreeBSD/ports 0759278lang/perl5.40 version.mk pkg-plist

lang/perl5.40: update to 5.40.5

Changes:        https://metacpan.org/release/SHAY/perl-5.40.5/view/pod/perldelta.pod
Security:       CVE-2025-40909, CVE-2026-57432, CVE-2026-8376, CVE-2026-13221
DeltaFile
+3-3lang/perl5.40/distinfo
+4-0lang/perl5.40/pkg-plist
+1-1lang/perl5.40/version.mk
+8-43 files

LLVM/project 844da3dllvm/lib/Target/AArch64 AArch64InstrInfo.td AArch64AsmPrinter.cpp, llvm/lib/Target/AArch64/AsmParser AArch64AsmParser.cpp

Merge branch 'users/kovdan01/llvm-support-auth-tlsdesc-call-rel' into users/kovdan01/lld-pauth-undef-weak
DeltaFile
+5-5llvm/test/CodeGen/AArch64/ptrauth-arm64-tls-dynamics.ll
+5-5llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
+3-3llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
+2-2llvm/test/MC/AArch64/tls-auth-relocs.s
+2-2llvm/test/MC/AArch64/directives-case_insensitive.s
+2-2llvm/lib/Target/AArch64/AArch64InstrInfo.td
+19-191 files not shown
+20-207 files

LLVM/project c4be3e6llvm/lib/Target/AArch64 AArch64InstrInfo.td AArch64AsmPrinter.cpp, llvm/lib/Target/AArch64/AsmParser AArch64AsmParser.cpp

`.tlsdescauthcall` -> `.tlsauthdesccall` (per documentation)
DeltaFile
+5-5llvm/test/CodeGen/AArch64/ptrauth-arm64-tls-dynamics.ll
+5-5llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
+3-3llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
+2-2llvm/test/MC/AArch64/tls-auth-relocs.s
+2-2llvm/test/MC/AArch64/directives-case_insensitive.s
+2-2llvm/lib/Target/AArch64/AArch64InstrInfo.td
+19-191 files not shown
+20-207 files

FreeBSD/src 85b07e9contrib/elftoolchain/libelftc libelftc_dem_arm.c libelftc_dem_gnu2.c

libelftc: Const correctness for C23

On some platforms, e.g. Linux Clang 22.1.8 / glibc 2.43, strchr()
now implements the C23 behaviour where passing a const pointer to
strchr() also returns a const pointer.  This breaks libelftc during
the bootstrap build, since it assumes the return value is always
a mutable pointer.

Since the returned pointer is never modified in either case, make
it const.

MFC after:      1 week
Reviewed by:    jkoshy, markj, dim, emaste
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58497
DeltaFile
+2-3contrib/elftoolchain/libelftc/libelftc_dem_gnu2.c
+1-2contrib/elftoolchain/libelftc/libelftc_dem_arm.c
+3-52 files

LLVM/project c4203d7llvm/test/CodeGen/X86 movmsk-cmp.ll

[X86] movmsk-cmp.ll - update PR67287 test to match middle-end reduction output (#213671)

This now lowers to a vXi1 reduction (as bitcast) pattern
DeltaFile
+26-27llvm/test/CodeGen/X86/movmsk-cmp.ll
+26-271 files

FreeBSD/src 9f18614contrib/mandoc mdoc.c out.c

mandoc: Const correctness for C23

On some platforms, e.g. Linux Clang 22.1.8 / glibc 2.43, strchr()
now implements the C23 behaviour where passing a const pointer to
strchr() also returns a const pointer.  This breaks mandoc during
the bootstrap build, since it assumes the return value is always
a mutable pointer.

In read.c, make the existing temporary pointer const, and for the
mandoc_asprintf() call, add a new mutable local.

In mdoc.c and out.c, since the data is mutable and is mutated here,
remove const from the temporary pointers.

MFC after:      1 week
Reviewed by:    fuz
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58495
DeltaFile
+6-4contrib/mandoc/read.c
+2-2contrib/mandoc/out.c
+1-2contrib/mandoc/mdoc.c
+9-83 files

FreeBSD/src 1d94e2eusr.bin/m4 misc.c

m4: Const correctness for C23

On some platforms, e.g. Linux Clang 22.1.8 / glibc 2.43, strchr()
now implements the C23 behaviour where passing a const pointer to
strchr() also returns a const pointer.  This breaks m4 during the
bootstrap build, since it assumes the return value is always a
mutable pointer.

Since the returned value is never modified, simply make the
temporary const.

MFC after:      1 week
Reviewed by:    bapt, dim
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58494
DeltaFile
+1-1usr.bin/m4/misc.c
+1-11 files

FreeBSD/src 9fd8f5eusr.bin/mkimg mkimg.c

mkimg: Const correctness for C23

On some platforms, e.g. Linux Clang 22.1.8 / glibc 2.43, strchr()
now implements the C23 behaviour where passing a const pointer to
strchr() also returns a const pointer.  This breaks mkimg during
the bootstrap build, since it assumes the return value is always
a mutable pointer.

Make the existing 'sep' pointer const to fix the first case, and
for the second, introduce a new non-const pointer for strchr,
since we do modify the result in that case.

MFC after:      1 week
Reviewed by:    markj
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58493
DeltaFile
+7-7usr.bin/mkimg/mkimg.c
+7-71 files

FreeBSD/src 2296c39usr.bin/xinstall xinstall.c

xinstall: Const correctness for C23

On some platforms, e.g. Linux Clang 22.1.8 / glibc 2.43, strchr()
now implements the C23 behaviour where passing a const pointer to
strchr() also returns a const pointer.  This breaks xinstall during
the bootstrap build, since it assumes the return value is always
a mutable pointer.

As the returned pointer is never used to modify the value, fix this
by making the temporary variable const.

MFC after:      1 week
Reviewed by:    ray, markj, emaste
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58492
DeltaFile
+2-1usr.bin/xinstall/xinstall.c
+2-11 files

FreeBSD/src 78f842dusr.bin/sort sort.c

sort: Const correctness for C23

On some platforms, e.g. Linux Clang 22.1.8 / glibc 2.43, strchr()
now implements the C23 behaviour where passing a const pointer to
strchr() also returns a const pointer.  This breaks sort during
the bootstrap build, since it assumes the return value is always
a mutable pointer.

As the returned pointer is never used to modify the value, fix this
by making the temporary variable const.

MFC after:      1 week
Reviewed by:    markj
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58491
DeltaFile
+1-1usr.bin/sort/sort.c
+1-11 files

FreeBSD/src bcee560contrib/libucl/src ucl_util.c

libucl: Const correctness for C23

On some platforms, e.g. Linux Clang 22.1.8 / glibc 2.43, strchr()
now implements the C23 behaviour where passing a const pointer to
strchr() also returns a const pointer.  This breaks libucl during
the bootstrap build, since it assumes the return value is always
a mutable pointer.

Instead of assigning directly to params->prefix (which is const),
use a non-const temporary variable and assign the result after
we've done the modification.

MFC after:      1 week
Reviewed by:    bofh, bapt
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58490
DeltaFile
+4-3contrib/libucl/src/ucl_util.c
+4-31 files

FreeBSD/src cb2daf8usr.bin/rpcgen rpc_main.c rpc_svcout.c

rpcgen: Const correctness for C23

On some platforms, e.g. Linux Clang 22.1.8 / glibc 2.43, strchr()
now implements the C23 behaviour where passing a const pointer to
strchr() also returns a const pointer.  This breaks rpcgen during
the bootstrap build, since it assumes the return value is always
a mutable pointer.

For mkfile_output(), the pointed-to value is never modified, so
fix this by making the pointer const as well.

For open_log_file(), the current code modifies the supposedly const
value in-place to remove the filename suffix, which happens to work
but is wrong even in older versions of C.  Change the code to use a
printf "%.*s" format specifier to strip the suffix instead.

MFC after:      1 week
Reviewed by:    brooks
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58489
DeltaFile
+13-6usr.bin/rpcgen/rpc_svcout.c
+2-1usr.bin/rpcgen/rpc_main.c
+15-72 files

LLVM/project b50252cflang/include/flang/Parser parse-tree.h, flang/lib/Lower/OpenMP Clauses.cpp

[flang][OpenMP] Version-dependent parsing of map-type-modifier

Up until 5.2, ALWAYS, CLOSE, and PRESENT were keywords of the
map-type-modifier. Starting from 6.0 they all became their own
single-keyword modifiers. This allowed specifying them together,
unlike in the past where map-type-modifier was unique.

To avoid using a single representation of the modifiers, and be
able to validate them through non-conditional properties, the
AST was rewritten back to the older form in canonicalization
when the spec version was set to 5.2 or earlier.

Now that the parser is version-aware, it can generate the desired
AST from the start.

Additionally, extract the OMPX_HOLD modifier out of the map-type-
modifier into its own AST node regardless of version.
DeltaFile
+62-19flang/lib/Parser/openmp-parsers.cpp
+1-45flang/lib/Semantics/canonicalize-omp.cpp
+7-7flang/test/Parser/OpenMP/map-modifiers-v60.f90
+4-4flang/test/Parser/OpenMP/map-modifiers.f90
+1-2flang/include/flang/Parser/parse-tree.h
+0-1flang/lib/Lower/OpenMP/Clauses.cpp
+75-786 files

LLVM/project 4cc94f9flang/include/flang/Parser user-state.h

Update flang/include/flang/Parser/user-state.h

Co-authored-by: Michael Kruse <llvm-project at meinersbur.de>
DeltaFile
+1-1flang/include/flang/Parser/user-state.h
+1-11 files

LLVM/project 796053cflang/lib/Frontend FrontendAction.cpp

Update flang/lib/Frontend/FrontendAction.cpp

Co-authored-by: Michael Kruse <llvm-project at meinersbur.de>
DeltaFile
+1-1flang/lib/Frontend/FrontendAction.cpp
+1-11 files

LLVM/project 27171d7flang/lib/Frontend FrontendAction.cpp

format
DeltaFile
+1-2flang/lib/Frontend/FrontendAction.cpp
+1-21 files

LLVM/project 3126154flang/tools/f18-parse-demo f18-parse-demo.cpp

Fix call to Parse in f18-parse-demo
DeltaFile
+1-1flang/tools/f18-parse-demo/f18-parse-demo.cpp
+1-11 files

LLVM/project 5324964flang/lib/Frontend FrontendAction.cpp

Add ci
DeltaFile
+1-1flang/lib/Frontend/FrontendAction.cpp
+1-11 files

LLVM/project a930bbeflang/include/flang/Parser parsing.h user-state.h, flang/lib/Frontend FrontendAction.cpp ParserActions.cpp

[flang] Pass LangOptions to parser via UserState

This will help deal with syntax changes across different versions of
OpenMP. There are certain cases where being able to generate different
AST for the same source code depending on the version of the OpenMP
spec makes semantic analysis easier.
DeltaFile
+8-0flang/include/flang/Parser/user-state.h
+4-2flang/lib/Parser/parsing.cpp
+4-2flang/lib/Frontend/ParserActions.cpp
+3-1flang/lib/Frontend/FrontendAction.cpp
+3-1flang/include/flang/Parser/parsing.h
+1-1flang/tools/bbc/bbc.cpp
+23-71 files not shown
+24-87 files

FreeBSD/src f1d9886lib/libc/stdlib getopt_long.c getopt.c

libc: getopt{,_long}: Const correctness for C23

On some platforms, e.g. Linux Clang 22.1.8 / glibc 2.43, strchr()
now implements the C23 behaviour where passing a const pointer to
strchr() also returns a const pointer.  This breaks getopt during
the bootstrap build, since it assumes the return value is always
a mutable pointer.

Since the pointed-to value is never modified, fix this by making
the pointer const.

MFC after:      1 week
Reviewed by:    emaste
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58488
DeltaFile
+1-1lib/libc/stdlib/getopt_long.c
+1-1lib/libc/stdlib/getopt.c
+2-22 files

LLVM/project caa4ccbflang/docs FlangDriver.md, flang/include/flang/Tools CrossToolHelpers.h

[flang] Add HLFIR-to-FIR pass pipeline extension points

The FIR optimizer extension points (FIROptEarly, FIRInliner, FIROptLast) all
run after HLFIR has been lowered to FIR, so the HLFIR intrinsic operations
(hlfir.sum, hlfir.matmul, ...) are gone by the time they run. Transformations
that need to see those operations have nowhere to attach.

Add two extension points to createHLFIRToFIRPassPipeline:

  * HLFIROptEarly, at the start of the pipeline, before any HLFIR
    simplification or inlining.
  * HLFIROptLast, just before createLowerHLFIRIntrinsics.

Drivers register passes through registerHLFIROptEarlyEPCallbacks and
registerHLFIROptLastEPCallbacks on MLIRToLLVMPassPipelineConfig. The invoke
methods are const so they can be called on the const config the HLFIR pipeline
receives. With no callbacks registered the pipeline is unchanged.

Co-Authored-By: Claude Opus 5 <noreply at anthropic.com>
DeltaFile
+141-0flang/unittests/Optimizer/HLFIRExtensionPointsTest.cpp
+33-0flang/include/flang/Tools/CrossToolHelpers.h
+24-0flang/docs/FlangDriver.md
+8-0flang/lib/Optimizer/Passes/Pipelines.cpp
+2-0flang/unittests/Optimizer/CMakeLists.txt
+208-05 files

NetBSD/pkgsrc-wip e22b0eezoneminder COMMIT_MSG Makefile, zoneminder/files httpd-zoneminder.conf README-pkgsrc.md

zoneminder: Remove after use to update security/zoneminder
DeltaFile
+0-8,748zoneminder/PLIST
+0-393zoneminder/Makefile
+0-252zoneminder/COMMIT_MSG
+0-151zoneminder/files/README-pkgsrc.md
+0-96zoneminder/files/httpd-zoneminder.conf
+0-53zoneminder/patches/patch-scripts_zm_in
+0-9,69315 files not shown
+0-10,07021 files

FreeBSD/ports fbb8f0ffilesystems/nbt Makefile distinfo

filesystems/nbt: Update 20250506 => 20260630

This update includes several memory-access bug fixes in both the NBT
library and the file system implementations, more completed supports
for the TAG_LONG_ARRAY type in the library, revised manual pages, as
well as other minor improvements.

Commit log:
https://src.rivoreo.one/nbtfsutils/+log/c06da0c1e1b5da7140171cb5a2138d2fe1197a63/

PR:             296479
Reported by:    WHR <whr at rivoreo.one> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
MFH:            2026Q3

(cherry picked from commit 272db44cff54c75687b7defaa717c20a249a95cc)
DeltaFile
+3-3filesystems/nbt/distinfo
+2-2filesystems/nbt/Makefile
+5-52 files

FreeNAS/freenas 0e57611src/middlewared/middlewared/plugins/vm vm_lifecycle.py, src/middlewared/middlewared/pytest/unit/plugins/vm test_vm_clock_xml.py

NAS-142015 / 26.0.0-RC.1 / Apply the VM system clock setting to the generated domain (by Qubad786) (#19459)

## Problem
`pylibvirt_vm()` builds the domain configuration by unpacking
`VMEntry.model_dump()` into a plain dataclass, converting `bootloader`
and `cpu_mode` into their enums but not `time`. The API model types
`time` as a string literal, so the configuration held `'LOCAL'`/`'UTC'`
instead of a `Time` member, and the clock offset is decided by comparing
that field against `Time.LOCAL`. That comparison was always false, so
every VM was defined with `<clock offset="utc">` regardless of what the
user picked, and Windows guests — which expect a localtime RTC — ran off
by the host's UTC offset. Containers were unaffected because their
equivalent helper already does the conversion.

## Solution
Convert `time` alongside the other two enums. Every caller reaches this
through `VMEntry`, whose `Literal['LOCAL', 'UTC']` guarantees a valid
value, so the conversion cannot raise. Added a unit test covering both
offsets with and without Hyper-V enlightenments, which restores coverage

    [4 lines not shown]
DeltaFile
+65-0src/middlewared/middlewared/pytest/unit/plugins/vm/test_vm_clock_xml.py
+2-1src/middlewared/middlewared/plugins/vm/vm_lifecycle.py
+67-12 files

FreeBSD/ports 272db44filesystems/nbt Makefile distinfo

filesystems/nbt: Update 20250506 => 20260630

This update includes several memory-access bug fixes in both the NBT
library and the file system implementations, more completed supports
for the TAG_LONG_ARRAY type in the library, revised manual pages, as
well as other minor improvements.

Commit log:
https://src.rivoreo.one/nbtfsutils/+log/c06da0c1e1b5da7140171cb5a2138d2fe1197a63/

PR:             296479
Reported by:    WHR <whr at rivoreo.one> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
MFH:            2026Q3
DeltaFile
+3-3filesystems/nbt/distinfo
+2-2filesystems/nbt/Makefile
+5-52 files