FreeBSD/ports 475bfe6emulators/wine Makefile, emulators/wine/files wine-wow64.sh

emulators/wine: Set 32-bit lib path for WoW

This avoids failures like

  wine: could not load ntdll.so: Shared object "libhwloc.so.15" not found,
  required by "ntdll.so"

PR:             293179
Submitted by:   Zane C. Bowers-Hadley <vvelox at vvelox.net>
Reviewed by:    Alexander Vereeken <Alexander88207 at protonmail.com>
DeltaFile
+3-0emulators/wine/files/wine-wow64.sh
+1-0emulators/wine/Makefile
+4-02 files

LLVM/project f3a8165llvm/lib/Transforms/Vectorize VPlanTransforms.cpp VPlan.cpp

[VPlan] Add VPSymbolicValue for UF. (NFC)

Add a symbolic unroll factor (UF) to VPlan similar to VF & VFxUF that
gets replaced with the concrete UF during plan execution, similar to how VF
is used for the vectorization factor. This is a preparatory change that
allows transforms to use the symbolic UF before the concrete UF is
determined.

Note that the old getUF that returns the concrete UF after unrolling has
been renamed to getConcreteUF.

Split off from the re-commit of 8d29d093096
(https://github.com/llvm/llvm-project/pull/149706) as suggested.
DeltaFile
+13-10llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+11-2llvm/lib/Transforms/Vectorize/VPlan.cpp
+8-1llvm/lib/Transforms/Vectorize/VPlan.h
+4-3llvm/lib/Transforms/Vectorize/VPlanTransforms.h
+1-1llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+1-1llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+38-186 files

LLVM/project ca9d07ellvm/lib/Target/AArch64 AArch64ISelLowering.cpp, llvm/test/CodeGen/AArch64 faddv.ll

[AArch64] Decompose FADD reductions with known zero elements

FADDV is matched into FADDPv4f32 + FADDPv2f32p but this can be relaxed
when one element (usually the 4th) or more are known to be zero.

Before:
movi d1, #0000000000000000
mov v0.s[3], v1.s[0]
faddp v0.4s, v0.4s, v0.4s
faddp s0, v0.2s

After:
mov s1, v0.s[2]
faddp s0, v0.2s
fadd s0, s0, s1
DeltaFile
+256-0llvm/test/CodeGen/AArch64/faddv.ll
+101-0llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+357-02 files

LLVM/project c0c2e38mlir/include/mlir/Interfaces DataLayoutInterfaces.td DataLayoutInterfaces.h

[MLIR] Generate DataLayoutDialectInterface using ODS (#181217)

This PR converts DataLayoutDialectInterface to a ODS dialect
interface.
DeltaFile
+60-0mlir/include/mlir/Interfaces/DataLayoutInterfaces.td
+1-46mlir/include/mlir/Interfaces/DataLayoutInterfaces.h
+1-0mlir/include/mlir/Interfaces/CMakeLists.txt
+62-463 files

OPNSense/plugins cd23399security/q-feeds-connector/src/opnsense/mvc/app/controllers/OPNsense/QFeeds/forms settings.xml, security/q-feeds-connector/src/opnsense/mvc/app/models/OPNsense/QFeeds Connector.xml

Security: Q-Feeds Connect - add new options as available in integrated blocklists, closes https://github.com/opnsense/plugins/issues/5197

This adds allowlists (regex patterns), source_nets Q-Feeds applies on, address to return and optional NXDOMAIN responses.

Please note this version is only compatible with current community versions, business edition installs will have to wait for 26.4.
DeltaFile
+44-6security/q-feeds-connector/src/opnsense/scripts/unbound/blocklists/qfeeds_bl.py
+38-0security/q-feeds-connector/src/opnsense/mvc/app/controllers/OPNsense/QFeeds/forms/settings.xml
+16-0security/q-feeds-connector/src/opnsense/mvc/app/models/OPNsense/QFeeds/Connector.xml
+7-0security/q-feeds-connector/src/opnsense/service/templates/OPNsense/QFeeds/qfeeds-blocklists.conf
+7-0security/q-feeds-connector/src/opnsense/mvc/app/views/OPNsense/QFeeds/index.volt
+112-65 files

OpenBSD/ports i4FdMKFnet/zabbix distinfo Makefile, net/zabbix/patches patch-configure

   update to 7.0.23
VersionDeltaFile
1.48+2-2net/zabbix/patches/patch-configure
1.94+2-2net/zabbix/distinfo
1.236+1-1net/zabbix/Makefile
+5-53 files

LLVM/project f26e859llvm/lib/Transforms/Vectorize VPlanTransforms.cpp VPlanConstruction.cpp

[VPlan] Use VPlan::getConstantInt in a few more cases (NFC).

VPlan::getConstantInt() allows for slightly more compact creation of
VPIRValues wrapping ConstantInts.
DeltaFile
+8-12llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+1-2llvm/lib/Transforms/Vectorize/VPlanConstruction.cpp
+9-142 files

LLVM/project de9ef4cmlir/include/mlir/IR BuiltinAttributes.td BuiltinAttributes.h, mlir/lib/AsmParser AttributeParser.cpp

[mlir][IR] Separate `DenseStringElementsAttr` from `DenseElementsAttr`
DeltaFile
+93-17mlir/include/mlir/IR/BuiltinAttributes.td
+25-45mlir/lib/IR/BuiltinAttributes.cpp
+24-13mlir/unittests/IR/AttributeTest.cpp
+7-30mlir/include/mlir/IR/BuiltinAttributes.h
+26-10mlir/lib/AsmParser/AttributeParser.cpp
+14-8mlir/lib/CAPI/IR/BuiltinAttributes.cpp
+189-1233 files not shown
+192-1309 files

LLVM/project 638224bmlir/include/mlir/IR BuiltinAttributes.td BuiltinAttributes.h, mlir/lib/AsmParser AttributeParser.cpp

[mlir][IR] Separate `DenseStringElementsAttr` from `DenseElementsAttr`
DeltaFile
+93-17mlir/include/mlir/IR/BuiltinAttributes.td
+25-45mlir/lib/IR/BuiltinAttributes.cpp
+27-12mlir/unittests/IR/AttributeTest.cpp
+7-30mlir/include/mlir/IR/BuiltinAttributes.h
+27-10mlir/lib/AsmParser/AttributeParser.cpp
+14-8mlir/lib/CAPI/IR/BuiltinAttributes.cpp
+193-1223 files not shown
+198-1299 files

FreeBSD/ports d7f9992games/chessx Makefile, games/chessx/files patch-chessx.pro

games/chessx: Improve port

- After remove ".if ${COMPILER_TYPE} == clang":
  * remove ".include <bsd.port.pre.mk>";
  * replace ".include <bsd.port.post.mk>" with ".include <bsd.port.mk>".
- Remove the useless block from the patch that adds one blank line.

PR:             292841
Approved by:    Alexey Vyskubov <alexey at pentode.fi> (maintainer, timeout 2 weeks)
DeltaFile
+1-9games/chessx/files/patch-chessx.pro
+1-3games/chessx/Makefile
+2-122 files

LLVM/project a108b9emlir/include/mlir/IR BuiltinTypeInterfaces.td BuiltinAttributes.td, mlir/lib/AsmParser AttributeParser.cpp

[mlir][WIP] `DenseElementsAttr` generalized

getter / iterator via interface

extraTraitClassDeclaration to provide default FloatType impls

address comments

simplify parser
DeltaFile
+124-1mlir/lib/AsmParser/AttributeParser.cpp
+25-92mlir/lib/IR/BuiltinAttributes.cpp
+87-0mlir/lib/IR/BuiltinTypes.cpp
+83-0mlir/test/IR/dense-elements-type-interface.mlir
+74-1mlir/include/mlir/IR/BuiltinTypeInterfaces.td
+32-13mlir/include/mlir/IR/BuiltinAttributes.td
+425-1078 files not shown
+579-11914 files

FreeBSD/ports 24631ccgraphics/openusd Makefile

graphics/openusd: Adjust PORTNAME and CATEGORIES after moving

PR:             292497
Approved by:    yuri (maintainer, timeout 1 month)
DeltaFile
+2-2graphics/openusd/Makefile
+2-21 files

NetBSD/pkgsrc t2uO6ebdoc CHANGES-2026 TODO

   Updated devel/py-line_profiler, devel/py-trio
VersionDeltaFile
1.1113+3-1doc/CHANGES-2026
1.26800+1-2doc/TODO
+4-32 files

FreeBSD/ports 47a07f9graphics/openusd pkg-plist, graphics/openusd/files patch-pxr_base_arch_fileSystem.cpp patch-pxr_base_arch_debugger.cpp

misc/usd: Move to graphics/openusd

Rename to match upstream naming and moved to a more appropriate category

PR:             292497
Approved by:    yuri (maintainer, timeout 1 month)
DeltaFile
+1,945-0graphics/openusd/pkg-plist
+0-1,945misc/usd/pkg-plist
+0-142misc/usd/files/patch-pxr_base_arch_fileSystem.cpp
+142-0graphics/openusd/files/patch-pxr_base_arch_fileSystem.cpp
+83-0graphics/openusd/files/patch-pxr_base_arch_debugger.cpp
+0-83misc/usd/files/patch-pxr_base_arch_debugger.cpp
+2,170-2,170149 files not shown
+3,230-3,229155 files

NetBSD/pkgsrc fwTU4MRdevel/py-trio distinfo PLIST

   py-trio: updated to 0.33.0

   trio 0.33.0 (2026-02-14)

   Bugfixes

   - Start supporting Android's new ``"android"`` `sys.platform`.

   Deprecations and removals

   - Both :class:`trio.testing.RaisesGroup` and :class:`trio.testing.Matcher` have been deprecated. Pytest alternatives ``pytest.RaisesGroup`` and ``pytest.RaisesExc`` (respectively) are considered correct replacement.
VersionDeltaFile
1.21+4-4devel/py-trio/distinfo
1.16+1-4devel/py-trio/PLIST
1.28+2-2devel/py-trio/Makefile
+7-103 files

NetBSD/pkgsrc LJct9Rqdevel/py-line_profiler PLIST Makefile

   py-line_profiler: updated to 5.0.1

   5.0.1

   * FIX: Prevented duplicate or inconsistent profiler output under Python 3.14 when multiprocessing is used.
   * ENH: Add %%lprun_all for more beginner-friendly profiling in IPython/Jupyter
   * FIX: mitigate speed regressions introduced in 5.0.0
   * ENH: Added capability to combine profiling data both programmatically (``LineStats.__add__()``) and via the CLI (``python -m line_profiler``)
   * FIX: search function in online documentation
   * FIX: ref-count leaks
   * FIX: mitigate speed regressions introduced in 5.0.0
   * FIX: Use import system to locate module file run by ``kernprof -m``
   * FIX: Fixed build on Windows-ARM64 and now building wheels therefor in CI
   * FIX: Move away from older, (temporarily-)deprecated ``importlib.resources`` APIs in ``line_profiler.toml_config``
   * CHANGE: remove default alphabetical sorting of profiled functions
VersionDeltaFile
1.10+6-5devel/py-line_profiler/PLIST
1.23+5-5devel/py-line_profiler/Makefile
1.12+4-4devel/py-line_profiler/distinfo
+15-143 files

LLVM/project 47abe86clang/lib/Analysis CFG.cpp, clang/test/Analysis cfg-assignment-eval-order.cpp missing-bind-temporary.cpp

[clang][CFG] Sequence RHS before LHS for overloaded assignment operators in CFG to match C++17 rules (#181113)

Fixes #180521
DeltaFile
+55-0clang/test/Analysis/cfg-assignment-eval-order.cpp
+34-2clang/lib/Analysis/CFG.cpp
+17-17clang/test/Analysis/missing-bind-temporary.cpp
+4-4clang/test/Analysis/scopes-cfg-output.cpp
+110-234 files

NetBSD/pkgsrc tfFRxRrdoc CHANGES-2026

   doc: Updated sysutils/detox to 3.0.1
VersionDeltaFile
1.1112+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc EZQesplsysutils/detox PLIST distinfo

   detox: update to 3.0.1.

   Provided by Bartosz Kuzma in PR 60006.

   3.0.1 - 2025-08-10
   Fixed

       Increased timeout on unit tests. #129

   3.0.0 - 2025-08-03
   Misc

       Merged changes from v2.0.1 and v2.0.2.

   3.0.0-beta2 - 2024-04-05
   Added

       Re-added fraction slash (0x2044) to the unicode translation table. #106


    [111 lines not shown]
VersionDeltaFile
1.5+9-4sysutils/detox/PLIST
1.10+4-4sysutils/detox/distinfo
1.14+2-2sysutils/detox/Makefile
+15-103 files

FreeBSD/ports 539c00ddevel/protobuf-java distinfo Makefile

devel/protobuf-java: Update 4.33.2 => 4.33.5

Changelog:
https://github.com/protocolbuffers/protobuf/releases/tag/v33.3
https://github.com/protocolbuffers/protobuf/releases/tag/v33.4
https://github.com/protocolbuffers/protobuf/releases/tag/v33.5

PR:     293184
DeltaFile
+3-3devel/protobuf-java/distinfo
+1-1devel/protobuf-java/Makefile
+4-42 files

NetBSD/pkgsrc P37221ydoc CHANGES-2026

   doc: Updated net/darkstat to 3.0.722
VersionDeltaFile
1.1111+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc qJLxGxMnet/darkstat Makefile distinfo

   darkstat: update to 3.0.722.

   Provided by Bartosz Kuzma in PR 60005.

   v3.0.722 (20 Oct 2025)
           - Add support for multiple -l args (thanks to catap)

   v3.0.721 (12 Jan 2022)
           - Replace xxd with hex-ify to reduce build dependencies.

   v3.0.720 (10 Jan 2022)
           - Improve graphs on mobile (thanks to Dallen Wilson).
           - Add favicon, improve CSS (thanks to Daniel Aleksandersen).
           - Export host statistics in Prometheus format on /metrics
             (thanks to flowblok).
           - Move to github.
VersionDeltaFile
1.20+9-5net/darkstat/Makefile
1.18+4-4net/darkstat/distinfo
+13-92 files

NetBSD/pkgsrc FUsdwsFdoc CHANGES-2026 TODO

   Updated archivers/py-zopfli, math/py-xarray
VersionDeltaFile
1.1110+3-1doc/CHANGES-2026
1.26799+1-2doc/TODO
+4-32 files

NetBSD/pkgsrc v8Cxfximath/py-xarray distinfo Makefile

   py-xarray: updated to 2026.2.0

   2026.2.0

   Add empty whats-new section for v2026.02.0
   Add a suggestion for how to resolve chunk manager not available error
   DOC: Fix broken link in gallery
   DOC: Various Numpydoc fixes
   DOC: Correct some wording mistakes in xarray documentation
   DOC: Fix "latest" version displayed on landing page
   Fix silent data corruption when writing dask arrays to sharded zarr stores
   Slightly Amend Zarr Encoding Specification Doc 8749
   DOC: Options A and A -> Options A and B
   Fix .plot error when using positional args with col and row
   Add a fast path that doesn't include normalized chunks in tokenize
   DOC: Fix link
   create issue if nightly wheel upload fails
   Support negative step in normalize_indexer
   Allow 1D coords in NDPointIndex

    [16 lines not shown]
VersionDeltaFile
1.31+4-4math/py-xarray/distinfo
1.42+2-2math/py-xarray/Makefile
+6-62 files

NetBSD/pkgsrc RvmdCzmarchivers/py-zopfli distinfo Makefile

   py-zopfli: updated to 0.4.1

   0.4.1
   The upstream google/zopfli repo is archived, so we switched the submodule to
   the fonttools fork which includes a fix for unaligned memory access that caused
   SIGBUS on strict-alignment architectures such as SPARC
VersionDeltaFile
1.7+4-4archivers/py-zopfli/distinfo
1.13+3-3archivers/py-zopfli/Makefile
+7-72 files

FreeBSD/ports 179d4f1net-im/conduit distinfo Makefile

net-im/conduit: Update to 0.10.12

PR:             293171
DeltaFile
+3-3net-im/conduit/distinfo
+1-3net-im/conduit/Makefile
+4-62 files

FreeBSD/ports 857a033ports-mgmt/pkg-devel distinfo Makefile

ports-mgmt/pkg-devel: 2.5.99.3

revert extract optimization
DeltaFile
+3-3ports-mgmt/pkg-devel/distinfo
+2-2ports-mgmt/pkg-devel/Makefile
+5-52 files

pkgng/pkgng 1d75060. NEWS auto.def

2.5.99.3
DeltaFile
+5-0NEWS
+1-1auto.def
+6-12 files

NetBSD/pkgsrc YE8AiW7doc CHANGES-2026

   Updated databases/py-pypika, www/py-jupyterlab
VersionDeltaFile
1.1109+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc JtuY5Kcwww/py-jupyterlab PLIST distinfo

   py-jupyterlab: updated to 4.5.4

   4.5.4

   Bugs fixed

   Avoid using system clipboard in Notebook widget
   Update CodeMirror versions, fixing a few selection issues
   Fix debugger variable panel to render value 0 properly
   Consider both the content type and pattern match in DocumentRegistry.getFileTypeForModel()
   false in saveAs to avoid fetching file body

   Maintenance and upkeep improvements

   Bump Lumino packages to the 2026.2.5 release, fixing iframe resizing

   Documentation improvements

   Clarify notebook and cell metadata API changes in JupyterLab 4

    [3 lines not shown]
VersionDeltaFile
1.16+80-80www/py-jupyterlab/PLIST
1.15+4-4www/py-jupyterlab/distinfo
1.23+2-2www/py-jupyterlab/Makefile
+86-863 files