FreeBSD/ports db57b41net/rustconn distinfo Makefile.crates

net/rustconn: Update to 0.17.6

ChangeLog:      https://github.com/totoshko88/RustConn/releases
Reported by:    portscout!
DeltaFile
+131-143net/rustconn/distinfo
+64-70net/rustconn/Makefile.crates
+1-1net/rustconn/Makefile
+196-2143 files

NetBSD/pkgsrc-wip 6a4b5c7rust196 options.mk distinfo

rust196: update to 1.96.1; carry over new option from main pkgsrc.
DeltaFile
+10-2rust196/options.mk
+3-3rust196/distinfo
+1-1rust196/Makefile
+14-63 files

LLVM/project 4f11992lldb/source/Plugins/Trace/intel-pt TraceIntelPTBundleSaver.cpp

[lldb] Fix build after FileSpec::GetDirectory() ConstString removal (#207073)

FileSpec::GetDirectory() now returns llvm::StringRef instead of
ConstString, so the .GetStringRef() call no longer compiles.

Regressed by f9b5264523b1 ("[lldb] Remove ConstString getters from
FileSpec", #206802).

failed with
```

/build/source/lldb/source/Plugins/Trace/intel-pt/TraceIntelPTBundleSaver.cpp:276:44: error: no member named 'GetStringRef' in 'llvm::StringRef'
  276 |         path_to_copy_module.GetDirectory().GetStringRef());
      |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
1 error generated.
```
DeltaFile
+1-2lldb/source/Plugins/Trace/intel-pt/TraceIntelPTBundleSaver.cpp
+1-21 files

OPNSense/core a730be4src/opnsense/mvc/app/controllers/OPNsense/Base ApiMutableModelControllerBase.php, src/opnsense/scripts/filter list_legacy_rules.php

php85 - some minor issues foud while testing firewall rules migration
DeltaFile
+1-1src/opnsense/mvc/app/controllers/OPNsense/Base/ApiMutableModelControllerBase.php
+1-1src/opnsense/scripts/filter/list_legacy_rules.php
+2-22 files

LLVM/project b385e9fclang/docs ReleaseNotes.md, clang/test/FixIt fixit-unicode-named-escape-sequences.c

[clang] Implement P3733R1 (#203944)

In all C++ language modes, as a DR
DeltaFile
+24,053-23,916llvm/lib/Support/UnicodeNameToCodepointGenerated.cpp
+9-8llvm/unittests/Support/UnicodeTest.cpp
+5-5clang/test/FixIt/fixit-unicode-named-escape-sequences.c
+0-7llvm/utils/UnicodeData/UnicodeNameMappingGenerator.cpp
+5-0clang/docs/ReleaseNotes.md
+1-1clang/test/Lexer/cxx-features.cpp
+24,073-23,9373 files not shown
+24,076-23,9399 files

FreeBSD/ports a53d7f8databases/goose distinfo Makefile

databases/goose: update 3.27.1 → 3.27.2
DeltaFile
+5-5databases/goose/distinfo
+1-2databases/goose/Makefile
+6-72 files

LLVM/project ce78771llvm/lib/Target/AArch64 AArch64InstrFormats.td, llvm/lib/Target/AArch64/AsmParser AArch64AsmParser.cpp

[AArch64][llvm] Add support for FEAT_HINTE for Armv9.6 onwards (#206905)

Add support for `FEAT_HINTE`, as defined in the Arm ARM M.c edition[1]

This defines the Extended Hint instruction space. `FEAT_HINTE` is
optional from Armv9.0, and mandatory from Armv9.6.

Add MC coverage for assembly, disassembly, diagnostics, generic sysreg
fallback behavior, Clang driver handling, and target parser extension
mapping.

[1] https://developer.arm.com/documentation/ddi0487/latest
DeltaFile
+56-0llvm/test/MC/AArch64/hinte.s
+27-0llvm/lib/Target/AArch64/AArch64InstrFormats.td
+18-0llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
+17-0llvm/test/MC/AArch64/hinte-diagnostics.s
+10-0llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
+6-1llvm/unittests/TargetParser/TargetParserTest.cpp
+134-14 files not shown
+149-310 files

OpenBSD/ports Md9bZeKdevel/libevent2 Makefile distinfo

   update to libevent-2.1.13
VersionDeltaFile
1.27+5-6devel/libevent2/Makefile
1.10+2-2devel/libevent2/distinfo
+7-82 files

OPNSense/core fbfac13. plist, src/opnsense/mvc/app/controllers/OPNsense/Interfaces/forms dialogAssignment.xml

Interfaces: Assignments - minor usability improvements.

* show "hint" when editing an interface without a description
* add lock toggle and set to locked by default.
* show identifier by default in grid and edit dialog

as discussed in https://github.com/opnsense/core/pull/10476
DeltaFile
+45-0src/opnsense/mvc/app/models/OPNsense/Interfaces/FieldTypes/IfDescField.php
+17-11src/opnsense/mvc/app/controllers/OPNsense/Interfaces/forms/dialogAssignment.xml
+1-8src/opnsense/mvc/app/views/OPNsense/Interface/assignment.volt
+5-1src/opnsense/mvc/app/models/OPNsense/Interfaces/NetworkInterface.xml
+4-0src/opnsense/mvc/app/models/OPNsense/Interfaces/NetworkInterface.php
+1-0plist
+73-206 files

LLVM/project 9db1a29cross-project-tests/debuginfo-tests/dexter/dex/evaluation ExpectRewriter.py Metrics.py, cross-project-tests/debuginfo-tests/dexter/dex/test_script Nodes.py

[Dexter] Add !type and !type/all nodes to test variable types (#204159)

This patch adds the second kind of variable expect, !type, which tests
the type of a variable as reported by the debugger. As with !value, this
is a string comparison of the debugger output with the script expected
value - this means that even if two types are identical (e.g. typedef),
a !type node will only match the one that the debugger displays by
default.

Script writing and aggregates work the same for !type as for !value, and
the metrics reported are largely similar, with the exception that
"unexpected", "seen", and "missing" metrics are reported separately for
values and types.
DeltaFile
+114-2cross-project-tests/debuginfo-tests/dexter/dex/test_script/Nodes.py
+71-0cross-project-tests/debuginfo-tests/dexter/feature_tests/scripts/rewriting/Inputs/rewrite_types_expected.cpp
+55-0cross-project-tests/debuginfo-tests/dexter/feature_tests/scripts/rewriting/rewrite_types.cpp
+54-0cross-project-tests/debuginfo-tests/dexter/feature_tests/scripts/evaluation/eval_types.cpp
+9-6cross-project-tests/debuginfo-tests/dexter/dex/evaluation/ExpectRewriter.py
+6-5cross-project-tests/debuginfo-tests/dexter/dex/evaluation/Metrics.py
+309-133 files not shown
+317-199 files

FreeBSD/ports ef00ec0misc/astc-encoder distinfo Makefile

misc/astc-encoder: update 5.5.0 → 5.6.0
DeltaFile
+3-3misc/astc-encoder/distinfo
+1-1misc/astc-encoder/Makefile
+4-42 files

FreeBSD/ports 30f8748textproc/cpp-peglib distinfo Makefile

textproc/cpp-peglib: update 1.12.0 → 1.13.0
DeltaFile
+3-3textproc/cpp-peglib/distinfo
+2-2textproc/cpp-peglib/Makefile
+5-52 files

FreeBSD/ports e3d43a8www Makefile, www/py-aiohttp-client-cache Makefile distinfo

www/py-aiohttp-client-cache: New port: HTTP cache for aiohttp requests

Missing dependency for OpenBB ports.

Reported by:    Antoine Brodin <antoine at freebsd.org>
DeltaFile
+24-0www/py-aiohttp-client-cache/Makefile
+3-0www/py-aiohttp-client-cache/distinfo
+1-0www/py-aiohttp-client-cache/pkg-descr
+1-0www/Makefile
+29-04 files

FreeBSD/ports 030dc26multimedia/py-ustreamer distinfo Makefile, multimedia/ustreamer distinfo Makefile

multimedia/{,py-}ustreamer: update 6.60 → 6.61
DeltaFile
+3-3multimedia/ustreamer/distinfo
+3-3multimedia/py-ustreamer/distinfo
+1-1multimedia/ustreamer/Makefile
+1-1multimedia/py-ustreamer/Makefile
+8-84 files

FreeBSD/ports 0fe6c2escience/amrex pkg-plist distinfo

science/amrex: update 26.06 → 26.07
DeltaFile
+9-7science/amrex/pkg-plist
+3-3science/amrex/distinfo
+2-3science/amrex/Makefile
+14-133 files

FreeBSD/ports a89269fmultimedia/kew distinfo Makefile

multimedia/kew: update 4.1.2 → 4.1.4
DeltaFile
+3-3multimedia/kew/distinfo
+1-1multimedia/kew/Makefile
+4-42 files

FreeBSD/ports c27b03dmisc/ollama distinfo Makefile, misc/ollama/files update-port.sh

misc/ollama: update 0.31.0 → 0.31.1
DeltaFile
+15-15misc/ollama/distinfo
+8-0misc/ollama/files/update-port.sh
+1-1misc/ollama/Makefile
+24-163 files

LLVM/project 2523d72llvm/lib/Target/ARM ARMBaseInstrInfo.cpp ARMInstrThumb.td, llvm/test/CodeGen/ARM machine-outliner-thunk-tcgpr.mir

[ARM] Change register class of tTAILJUMPr's destination (#206763)

This patch changes the register class of tTAILJUMPr's destination from
tcGPR to GPR.

tTAILJUMPr is lowered into a BX (branch-and-exchange) with a register
operand. This instruction has no restrictions about its register
operand, therefore the previous limitation to tcGPR was too tight.

The important consequence of this change is in the machine outliner for
ARM. With this change, code sequences that terminate with a tBLXr can be
outlined regardless of the register used as operand. Before, if the
register used was callee saved, that is, not in tcGPR, the outliner gave
up. The outlining process replaces the call (BLX) by a tail call (BX).

This replacement can be problematic if the callee saved registers are
not properly restored before the tail call. However, one important
detail to mention is that tTAILJUMPr is created during pseudo
instruction expansion, which in turn takes place after register

    [4 lines not shown]
DeltaFile
+38-17llvm/test/CodeGen/ARM/machine-outliner-thunk-tcgpr.mir
+11-12llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
+1-1llvm/lib/Target/ARM/ARMInstrThumb.td
+50-303 files

NetBSD/pkgsrc 1opPJftdoc CHANGES-2026

   Updated devel/mm-common, security/pinentry
VersionDeltaFile
1.4185+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc QkoBG8xsecurity/pinentry distinfo Makefile.common, security/pinentry-fltk Makefile

   pinentry: updated to 1.3.3

   Noteworthy changes in version 1.3.3 (2026-07-01)

   * w32: Modernize the dialog of the simple Pinetry for Windows Vista
     and later.
   * gtk,curses: Add --focus=ok option to CONFIRM command.
   * tty: Discard input on timeout.
   * Various build fixes.
VersionDeltaFile
1.17+1-11security/pinentry-fltk/Makefile
1.34+4-4security/pinentry/distinfo
1.23+4-2security/pinentry/Makefile.common
1.73+1-2security/pinentry-gtk2/Makefile
1.28+1-2security/pinentry-gnome3/Makefile
1.28+1-2security/pinentry-qt5/Makefile
+12-232 files not shown
+14-268 files

OpenBSD/ports uixdM8tnet/dnsdist distinfo crates.inc, net/dnsdist/patches patch-ext_protozero_include_protozero_config_hpp

   Update to dnsdist 2.1.0
VersionDeltaFile
1.37+58-72net/dnsdist/distinfo
1.2+28-35net/dnsdist/crates.inc
1.1+17-0net/dnsdist/patches/patch-ext_protozero_include_protozero_config_hpp
1.69+1-1net/dnsdist/Makefile
+104-1084 files

LLVM/project 544ec07cross-project-tests/debuginfo-tests/dexter-tests optnone-vectors-and-functions.cpp optnone-simple-functions.cpp, cross-project-tests/debuginfo-tests/dexter-tests/memvars inlining-dse.c

[Dexter] Update lldb-based dexter-tests to use script-mode

This patch replaces uses of heuristic-mode Dexter in the dexter-tests suite
with uses of the script-mode, for tests that use DAP (via lldb-dap). The
updates are largely straightforward but occasionally non-trivial, and in
some cases some slight modifications have been made to keep the "spirit" of
the test intact.
DeltaFile
+93-73cross-project-tests/debuginfo-tests/dexter-tests/optnone-vectors-and-functions.cpp
+98-51cross-project-tests/debuginfo-tests/dexter-tests/optnone-simple-functions.cpp
+68-54cross-project-tests/debuginfo-tests/dexter-tests/optnone-loops.cpp
+57-33cross-project-tests/debuginfo-tests/dexter-tests/optnone-fastmath.cpp
+30-19cross-project-tests/debuginfo-tests/dexter-tests/optnone-struct-and-methods.cpp
+19-22cross-project-tests/debuginfo-tests/dexter-tests/memvars/inlining-dse.c
+365-25221 files not shown
+669-39227 files

LLVM/project 1825a91cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb LLDB.py

Remove all tags that LLDB may add
DeltaFile
+5-2cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/LLDB.py
+5-21 files

LLVM/project bf524bfcross-project-tests/debuginfo-tests/dexter/dex/evaluation Metrics.py

Add irretrievable metric
DeltaFile
+5-0cross-project-tests/debuginfo-tests/dexter/dex/evaluation/Metrics.py
+5-01 files

LLVM/project 1a99099cross-project-tests/debuginfo-tests/dexter Script.md

order->at_least
DeltaFile
+1-1cross-project-tests/debuginfo-tests/dexter/Script.md
+1-11 files

LLVM/project 4deef35cross-project-tests/debuginfo-tests/dexter Script.md, cross-project-tests/debuginfo-tests/dexter-tests global-constant.cpp

review comments
DeltaFile
+2-1cross-project-tests/debuginfo-tests/dexter-tests/global-constant.cpp
+2-0cross-project-tests/debuginfo-tests/dexter/Script.md
+4-12 files

LLVM/project 5ac26fdcross-project-tests/debuginfo-tests/dexter-tests optnone-loops.cpp optnone-fastmath.cpp, cross-project-tests/debuginfo-tests/dexter-tests/memvars ctrl-flow.c loop.c

Apply clang-format within reason
DeltaFile
+9-15cross-project-tests/debuginfo-tests/dexter-tests/optnone-loops.cpp
+5-5cross-project-tests/debuginfo-tests/dexter-tests/optnone-fastmath.cpp
+3-3cross-project-tests/debuginfo-tests/dexter-tests/optnone-struct-and-methods.cpp
+2-2cross-project-tests/debuginfo-tests/dexter-tests/memvars/ctrl-flow.c
+2-2cross-project-tests/debuginfo-tests/dexter-tests/memvars/loop.c
+2-2cross-project-tests/debuginfo-tests/dexter-tests/memvars/inlining.c
+23-297 files not shown
+29-3813 files

LLVM/project e4f0ddccross-project-tests/debuginfo-tests/dexter README.md Heuristic.md

[Dexter] Document the structured script model

This patch adds documentation for the script model to the Dexter README,
shunting heuristic-mode information into a separate doc, creating a new
doc for script-mode, and linking to both (with a brief summary of the
differences) from the base README.
DeltaFile
+6-232cross-project-tests/debuginfo-tests/dexter/README.md
+231-0cross-project-tests/debuginfo-tests/dexter/Heuristic.md
+213-0cross-project-tests/debuginfo-tests/dexter/Script.md
+450-2323 files

LLVM/project 33e2d35cross-project-tests/debuginfo-tests/dexter-tests optnone-vectors-and-functions.cpp, cross-project-tests/debuginfo-tests/dexter/dex/debugger/visualstudio VisualStudio.py

[Dexter] Switch to using script-mode by default

This patch changes the default mode of Dexter from heuristic-mode to
script-mode. The --use-script argument is replaced with --use-heuristic,
some comments/docs/error messages are updated accordingly, and tests have
their flags switched accordingly.
DeltaFile
+2-6cross-project-tests/debuginfo-tests/dexter/dex/debugger/visualstudio/VisualStudio.py
+3-4cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/view.cpp
+3-3cross-project-tests/debuginfo-tests/dexter/dex/tools/test/Tool.py
+2-2cross-project-tests/debuginfo-tests/dexter-tests/optnone-vectors-and-functions.cpp
+2-2cross-project-tests/debuginfo-tests/dexter/dex/tools/TestToolBase.py
+2-2cross-project-tests/debuginfo-tests/dexter/feature_tests/scripts/evaluation/eval_sublist_aggregates.cpp
+14-19168 files not shown
+188-208174 files

LLVM/project de04b0across-project-tests/debuginfo-tests/dexter/dex/debugger/lldb LLDB.py, cross-project-tests/debuginfo-tests/dexter/dex/evaluation Metrics.py

format
DeltaFile
+6-2cross-project-tests/debuginfo-tests/dexter/dex/evaluation/Metrics.py
+1-1cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/LLDB.py
+7-32 files