NetBSD/pkgsrc-wip ef247abvictorialogs-vlagent Makefile, victorialogs-vlogscli Makefile

victorialogs-*: use PKGBASE

Factor out the name of the program by using PKGBASE.
More resistant to copypastos for packaging of other VictoriaLogs
components.
DeltaFile
+2-2victorialogs-vlogscli/Makefile
+2-2victorialogs-vlagent/Makefile
+4-42 files

NetBSD/pkgsrc-wip 8c6fba9victorialogs DESCR

victorialogs: Describe what victoria-logs is
DeltaFile
+1-1victorialogs/DESCR
+1-11 files

LLVM/project d14a4f3clang/lib/CodeGen/Targets Sparc.cpp, clang/test/CodeGen/Sparc sparcv9-vaarg.c

[Sparc][clang] `_Complex char` in c-variadic call is right-adjusted (#215015)

Aggregates are left-adjusted, but GCC right-adjusts complex values
within the 8-byte slot

https://godbolt.org/z/as3PevMGd

```c
#include <stdarg.h>

_Complex char complex_char_sink;

void get_complex_char(va_list *args) {
  complex_char_sink = va_arg(*args, _Complex char);
}

struct ManualComplexChar { char re; char im };

struct ManualComplexChar manual_complex_char_sink;

    [29 lines not shown]
DeltaFile
+8-7clang/test/CodeGen/Sparc/sparcv9-vaarg.c
+4-1clang/lib/CodeGen/Targets/Sparc.cpp
+12-82 files

NetBSD/pkgsrc-wip f0c45c4victorialogs DESCR, victorialogs-vlagent DESCR

victorialogs: Extend description

Based on README.md.
DeltaFile
+4-2victorialogs/DESCR
+4-2victorialogs-vlogscli/DESCR
+4-2victorialogs-vlagent/DESCR
+12-63 files

LLVM/project 6355d80clang/lib/CodeGen BackendUtil.cpp, llvm/include/llvm/Analysis RuntimeLibcallInfo.h

CodeGen: Remove TargetOptions::FloatABIType

This is now fully replaced with the "float-abi" module flag.
If the module flag is not present, the default is computed
from the triple. Consumers are updated to read the module flag.

RuntimeLibraryAnalysis now defers analysis until run() on a Module,
instead of during the pass constructor as before. This requires copying
all of the remaining relevant TargetOptions so they are available
when the module is seen.

Unfortunately, ARM still depends on TargetOptions for determining
the float-abi. -target-abi=aapcs16 still changes the default float-abi,
but an explicit module flag wins.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+45-0llvm/test/LTO/ARM/float-abi-module-flag.ll
+19-17llvm/include/llvm/Analysis/RuntimeLibcallInfo.h
+15-20llvm/lib/Target/ARM/ARMTargetMachine.cpp
+28-0llvm/test/Transforms/Util/DeclareRuntimeLibcalls/float-abi-module-flag.ll
+5-18llvm/lib/Analysis/RuntimeLibcallInfo.cpp
+3-14clang/lib/CodeGen/BackendUtil.cpp
+115-6923 files not shown
+174-12629 files

LLVM/project 2fac20dllvm/lib/CodeGen CommandFlags.cpp

Remove opt description change
DeltaFile
+1-3llvm/lib/CodeGen/CommandFlags.cpp
+1-31 files

LLVM/project 697babbllvm/lib/CodeGen CommandFlags.cpp, llvm/test/CodeGen/ARM float-abi-synthesize-flag.ll

Error on -float-abi conflicting with the "float-abi" module flag
DeltaFile
+17-5llvm/lib/CodeGen/CommandFlags.cpp
+6-2llvm/test/CodeGen/ARM/float-abi-synthesize-flag.ll
+23-72 files

NetBSD/pkgsrc-wip 981d170victorialogs Makefile.common

victorialogs: vlagent uses Makefile.common too
DeltaFile
+1-0victorialogs/Makefile.common
+1-01 files

NetBSD/pkgsrc-wip 3e9ea48victorialogs-vlagent PLIST DESCR

victorialogs-vlagent: Import vlagent-1.52.0

VictoriaLogs is open source user-friendly database for logs from
VictoriaMetrics.

This package contains vlagent, an agent for collecting logs from
various sources and storing them in VictoriaLogs.
DeltaFile
+13-0victorialogs-vlagent/Makefile
+5-0victorialogs-vlagent/DESCR
+2-0victorialogs-vlagent/PLIST
+20-03 files

LLVM/project f532c2dflang/lib/Optimizer/CodeGen BoxedProcedure.cpp, flang/test/Fir boxproc-execstack-module-flag.fir

[CodeGen] Take the executable stack from a module flag (#215152)

AsmPrinter marked `.note.GNU-stack` executable whenever the module had a
use of `llvm.init.trampoline`. This was not compliant with the
documentation for the function, which causes regressions in Julia.
Instead read a new `"executable-stack"` module flag, so that the request
comes from the frontend that emitted the code rather than from scanning
for an intrinsic and auto-magically (and wrongly) guessing. Update the
documentation to be even more clear about this implementation's
expectations (which matches gcc's abilities for the same).

Frontends generating code that needs an executable stack now have to set
the flag for that purpose. For example, flang will do so from
BoxedProcedurePass when it emits a stack based trampoline; the
`-fsafe-trampoline` runtime pool does not need one (nor was the custom
runtime intrinsics really necessary for `-fsafe-trampoline`, since the
existing intrinsic was already defined to support that use case too).

Fixes a regression caused by #151754, which introduced new behavior onto

    [4 lines not shown]
DeltaFile
+113-0flang/test/Fir/boxproc-execstack-module-flag.fir
+46-1flang/lib/Optimizer/CodeGen/BoxedProcedure.cpp
+29-0llvm/test/CodeGen/X86/execstack-module-flag.ll
+18-4llvm/docs/LangRef.md
+8-7llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+4-4llvm/test/CodeGen/RISCV/rv64-trampoline.ll
+218-164 files not shown
+229-1910 files

LLVM/project 58e4198lldb/source/Commands CommandObjectCommands.cpp, lldb/test/API/commands/command/script/add TestAddParsedCommand.py test_commands.py

[lldb] Fix crash when adding a python ParsedCommand (#215807)

The expected result of `ParsedCommand.get_args_definition` is a List of
Lists and should not crash when it is not the case.
DeltaFile
+13-0lldb/test/API/commands/command/script/add/test_commands.py
+5-0lldb/test/API/commands/command/script/add/TestAddParsedCommand.py
+1-0lldb/source/Commands/CommandObjectCommands.cpp
+19-03 files

OPNSense/src 49721cdlib/libpfctl libpfctl.c, sbin/pfctl pf_print_state.c

pf: rule label patch was merged from a wrong version

PR: https://forum.opnsense.org/index.php?topic=52351.0
DeltaFile
+1-1sbin/pfctl/pf_print_state.c
+1-1lib/libpfctl/libpfctl.c
+2-22 files

FreeBSD/src b54dcb8lib/libc/tests/gen limits_test.c

libc/tests: Add assertions for BOOL_WIDTH, BOOL_MAX, and BITINT_MAXWIDTH

Reviewed by:    fuz
Approved by:    fuz (mentor)
MFC after:      1 month
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2352
DeltaFile
+6-0lib/libc/tests/gen/limits_test.c
+6-01 files

FreeBSD/src ca1c1ecsys/powerpc/include _limits.h

sys/limits.h: Fix typo

Reviewed by:    fuz
Approved by:    fuz (mentor)
MFC after:      1 month
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2352
DeltaFile
+1-1sys/powerpc/include/_limits.h
+1-11 files

FreeBSD/src 1f09e35include limits.h, sys/sys syslimits.h limits.h

sys/limits.h: Add BOOL_MAX, BITINT_MAXWIDTH, and C23 feature test macro

Add BOOL_MAX and BITINT_MAXWIDTH macros for C23 compliance, and
define the __STDC_VERSION_LIMITS_H__ feature test macro now that
the header fully conforms to C23.

Reviewed by:    fuz
Approved by:    fuz (mentor)
MFC after:      1 month
Pull Request:   https://github.com/freebsd/freebsd-src/pull/2352
DeltaFile
+7-0sys/sys/limits.h
+3-3include/limits.h
+2-1sys/sys/syslimits.h
+12-43 files

LLVM/project ab49292llvm/lib/Target/SPIRV SPIRVNonSemanticDebugHandler.cpp, llvm/test/CodeGen/SPIRV/debug-info debug-line-shared.ll debug-no-line.ll

Add support for NSDI DebugLine and DebugNoLine.
DeltaFile
+138-0llvm/lib/Target/SPIRV/SPIRVNonSemanticDebugHandler.cpp
+83-0llvm/test/CodeGen/SPIRV/debug-info/debug-line-calls.ll
+68-0llvm/test/CodeGen/SPIRV/debug-info/debug-line.ll
+62-0llvm/test/CodeGen/SPIRV/debug-info/debug-line-block.ll
+59-0llvm/test/CodeGen/SPIRV/debug-info/debug-no-line.ll
+55-0llvm/test/CodeGen/SPIRV/debug-info/debug-line-shared.ll
+465-04 files not shown
+501-110 files

NetBSD/pkgsrc-wip f66b575py-mkdocs-material TODO

py-mkdocs-material: Add reference to CVE-2026-73295
DeltaFile
+2-0py-mkdocs-material/TODO
+2-01 files

NetBSD/pkgsrc-wip a998e05victorialogs-vlogscli DESCR

victorialogs-vlogscli: Improve description

Explain what vlogscli is. Based on
<https://docs.victoriametrics.com/victorialogs/querying/vlogscli/>.
DeltaFile
+2-1victorialogs-vlogscli/DESCR
+2-11 files

FreeBSD/ports 0c62bc0net/rustconn Makefile Makefile.crates

net/rustconn: Update to 0.19.22

ChangeLog:

- https://github.com/totoshko88/RustConn/releases/tag/v0.19.19
- https://github.com/totoshko88/RustConn/releases/tag/v0.19.20
- https://github.com/totoshko88/RustConn/releases/tag/v0.19.21
- https://github.com/totoshko88/RustConn/releases/tag/v0.19.22

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+65-63net/rustconn/distinfo
+31-30net/rustconn/Makefile.crates
+1-1net/rustconn/Makefile
+97-943 files

OPNSense/plugins e181969sysutils/git-backup/src/opnsense/mvc/app/library/OPNsense/Backup Git.php

sysutils/git-backup - fix invalid quoting to check for directory, causing excessive init calls. closes https://github.com/opnsense/plugins/issues/5630
DeltaFile
+1-1sysutils/git-backup/src/opnsense/mvc/app/library/OPNsense/Backup/Git.php
+1-11 files

NetBSD/pkgsrc 5Wxk0khdoc TODO CHANGES-2026

   Updated net/unbound, net/wireshark
VersionDeltaFile
1.5252+3-1doc/CHANGES-2026
1.27741+1-2doc/TODO
+4-32 files

NetBSD/pkgsrc 7i4x6z9net/wireshark Makefile PLIST

   wireshark: updated to 4.6.8

   4.6.8

   The following bugs have been fixed:

   Fuzz job crash: randpkt-2026-05-22-14496207576.pcap. Issue 21266.

   Wireshark Version 4.6.6 - File Capture Properties is excessively slow and hangs Wireshark on Windows. Issue 21337.

   TCP Preference 'Analyze TCP sequence numbers' SEGFAULTs when toggled. Issue 21380.

   Wireshark misdecodes S-NSSAI location validity information IE (5G NAS) Issue 21411.

   Wireshark misdecodes NSAG information IE (5G NAS) Issue 21412.

   Fuzz job UTF-8 encoding issue: fuzz-2026-07-17-15393056954.pcap. Issue 21419.

   Wireshark misdecodes UE security capability IE (5G NAS) Issue 21431.

    [36 lines not shown]
VersionDeltaFile
1.194+4-4net/wireshark/distinfo
1.113+3-3net/wireshark/PLIST
1.353+2-3net/wireshark/Makefile
+9-103 files

NetBSD/pkgsrc 3plM2YKnet/unbound distinfo Makefile, net/unbound/patches patch-configure

   unbound: updated to 1.26.0

   1.26.0

   Features

   Update icannbundle.pem certificates in unbound-anchor. It has the public keys for 2009 to 2029 and for 2025 to 2045.
   Fix to add `max-transfer-size` and `max-transfer-time` that limit auth-zone and rpz transfer amount and time taken. Default is disabled. This hardens against unbounded transfers. Thanks to Qifan Zhang, Palo Alto Networks, for the report.
   Merge 1087: Overload `local_data_remove` to support removing specific records.
   Merge 1433 from jisakiel: Add new static zone type block_aaaa to suppress AAAA queries.
   Fix 1477: respip + dns64: dns64 uses A records modified by respip instead of original A records. Adds local-zone types block_a_wdata and block_aaaa_wdata, that are like block_a and block_aaaa, and uses local-data if present.
VersionDeltaFile
1.137+16-17net/unbound/Makefile
1.9+13-4net/unbound/patches/patch-configure
1.92+5-5net/unbound/distinfo
+34-263 files

LLVM/project 0048a9cllvm/lib/Target/SPIRV SPIRVNonSemanticDebugHandler.cpp, llvm/test/CodeGen/SPIRV/debug-info debug-line-shared.ll debug-no-line.ll

Add support for NSDI DebugLine and DebugNoLine.
DeltaFile
+141-0llvm/lib/Target/SPIRV/SPIRVNonSemanticDebugHandler.cpp
+83-0llvm/test/CodeGen/SPIRV/debug-info/debug-line-calls.ll
+68-0llvm/test/CodeGen/SPIRV/debug-info/debug-line.ll
+62-0llvm/test/CodeGen/SPIRV/debug-info/debug-line-block.ll
+59-0llvm/test/CodeGen/SPIRV/debug-info/debug-no-line.ll
+55-0llvm/test/CodeGen/SPIRV/debug-info/debug-line-shared.ll
+468-04 files not shown
+505-110 files

LLVM/project 77c8ecdoffload/plugins-nextgen/common/include APIHelpers.h, offload/plugins-nextgen/level_zero/dynamic_l0 L0DynWrapper.cpp

[offload] Fix compatibility for level_zero 25.22.33944- #214215 (#215977)

This PR reapplies https://github.com/llvm/llvm-project/pull/214215. I
incorrectly checked `if (Result->Code == OL_ERRC_UNSUPPORTED)` without
checking if `Results != nullptr`. I didn't realize it failed when I ran
it locally, the segmentation fault was silent for some reason.
DeltaFile
+36-0offload/plugins-nextgen/level_zero/dynamic_l0/L0DynWrapper.cpp
+25-0offload/plugins-nextgen/common/include/APIHelpers.h
+18-0offload/plugins-nextgen/level_zero/dynamic_l0/level_zero/ze_api.h
+7-10offload/plugins-nextgen/level_zero/include/L0CmdListManager.h
+16-1offload/unittests/OffloadAPI/queue/olLaunchHostFunction.cpp
+0-14offload/plugins-nextgen/level_zero/include/L0Context.h
+102-254 files not shown
+117-3910 files

LLVM/project 44cba4cllvm/lib/Target/AArch64 AArch64ISelLowering.cpp, llvm/test/CodeGen/AArch64 sve-index-const-step-vector.ll sve-fixed-length-build-vector.ll

[AArch64] Restrict SVE index to profitable BUILD_VECTOR sequences (#215250)

We were previously arbitrarily using the SVE index instruction for all
BUILD_VECTOR arithmetic sequences even when it's not profitable to do
so. According to the software optimisation guides all variants of index
that take a scalar register as input are slower than just loading a
literal. Furthermore, by taking this shortcut so early during
LowerBUILD_VECTOR we miss out on more profitable opportunities as seen
by the changes in sve-fixed-length-build-vector.ll.
DeltaFile
+6-12llvm/test/CodeGen/AArch64/sve-fixed-length-build-vector.ll
+6-10llvm/test/CodeGen/AArch64/sve-index-const-step-vector.ll
+10-2llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+22-243 files

LLVM/project 71d986bllvm/lib/CodeGen/SelectionDAG LegalizeFloatTypes.cpp

DAG: Use LibcallImpl overload of makeLibCall (#215987)

We already have the LibcallImpl here, so use it instead
of letting makeLibCall re-check the active impl.
DeltaFile
+4-4llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
+4-41 files

LLVM/project 42fb827llvm/include/llvm/IR RuntimeLibcalls.td, llvm/test/CodeGen/AArch64 ldexp-f128.ll exp10-f128.ll

RuntimeLibcalls: Fix AArch64 wrongly typed long-double libcalls

Respect the triple's LongDoubleFormat.

AArch64SystemLibrary added the fp128-typed frexpl/ldexpl and exp10l without a
long-double-format guard, so triples where long double is IEEE double
(Darwin, Windows, Android) were emitting l suffixed calls with the wrong
type.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+24-0llvm/test/CodeGen/AArch64/frexp-f128.ll
+19-0llvm/test/CodeGen/AArch64/ldexp-f128.ll
+19-0llvm/test/CodeGen/AArch64/exp10-f128.ll
+12-2llvm/include/llvm/IR/RuntimeLibcalls.td
+74-24 files

FreeBSD/ports 606453cdevel/py-pygobject Makefile, devel/pygobject-common Makefile

devel/*pygobject*: install missed header (+)

Install missed pygobject-types.h
It needed to unbreak consumers, e.g. multimedia/py-gstreamer1

In file included from ../gi/overrides/gstanalyticsmodule.c:27:
/usr/local/include/pygobject-3.0/pygobject.h:23:10: fatal error: 'pygobject-types.h' file not found
   23 | #include <pygobject-types.h>
      |          ^~~~~~~~~~~~~~~~~~~
1 error generated.

Reported by:    bulk -t
DeltaFile
+3-1devel/py-pygobject/Makefile
+1-0devel/pygobject-common/Makefile
+4-12 files

LLVM/project 681b73cllvm/lib/Transforms/Vectorize LoopVectorize.cpp, llvm/test/Transforms/LoopVectorize histograms.ll

[LV] Don't treat the pointer operand of histograms as scalar uses (#215769)
DeltaFile
+7-6llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+1-6llvm/test/Transforms/LoopVectorize/histograms.ll
+1-6llvm/test/Transforms/LoopVectorize/AArch64/sve2-histcnt-epilogue.ll
+9-183 files