FreeBSD/ports fef24c8misc/quantum++ Makefile distinfo

misc/quantum++: update 7.0.0 → 7.0.1

Reported by:    portscout
DeltaFile
+5-4misc/quantum++/Makefile
+3-3misc/quantum++/distinfo
+8-72 files

FreeBSD/ports 0bf95ebmath Makefile, math/eigen5 pkg-plist Makefile

math/eigen5: New port: Lightweight library for vector and matrix math

math/eigen3 is obviously 2 major version numbers behind.
The misc/quantum++ port needs eigen-5.x

It might or might not be better to update math/eigen to 5.x - I am not
sure. Let's have math/eigen5 for now for ports that need it.
DeltaFile
+608-0math/eigen5/pkg-plist
+46-0math/eigen5/Makefile
+3-0math/eigen5/distinfo
+2-0math/eigen5/pkg-descr
+1-0math/Makefile
+660-05 files

FreeBSD/ports fe205dflang/prql distinfo Makefile

lang/prql: update 0.13.10 → 0.13.11

Reported by:    portscout
DeltaFile
+335-255lang/prql/distinfo
+168-128lang/prql/Makefile
+503-3832 files

FreeBSD/ports 6480a07graphics/py-kornia distinfo Makefile

graphics/py-kornia: update 0.7.4 → 0.8.2

Reported by:    portscout
DeltaFile
+3-3graphics/py-kornia/distinfo
+2-2graphics/py-kornia/Makefile
+5-52 files

FreeBSD/ports 0d83776misc/py-comfyui-workflow-templates distinfo Makefile

misc/py-comfyui-workflow-templates: update 0.9.26 → 0.9.28
DeltaFile
+3-3misc/py-comfyui-workflow-templates/distinfo
+1-1misc/py-comfyui-workflow-templates/Makefile
+4-42 files

FreeBSD/ports 5fcbceamisc/py-comfyui-workflow-templates-media-video distinfo Makefile

misc/py-comfyui-workflow-templates-media-video: update 0.3.62 → 0.3.63
DeltaFile
+3-3misc/py-comfyui-workflow-templates-media-video/distinfo
+1-1misc/py-comfyui-workflow-templates-media-video/Makefile
+4-42 files

FreeBSD/ports b15d428misc/comfyui pkg-plist Makefile

misc/comfyui: update 0.17.2 → 0.18.0
DeltaFile
+8-0misc/comfyui/pkg-plist
+4-4misc/comfyui/Makefile
+3-3misc/comfyui/distinfo
+15-73 files

FreeBSD/ports a1935cbmisc/py-comfyui-workflow-templates-core distinfo Makefile

misc/py-comfyui-workflow-templates-core: update 0.3.173 → 0.3.175
DeltaFile
+3-3misc/py-comfyui-workflow-templates-core/distinfo
+1-1misc/py-comfyui-workflow-templates-core/Makefile
+4-42 files

FreeBSD/ports 700d202misc/py-comfyui-workflow-templates-media-other distinfo Makefile

misc/py-comfyui-workflow-templates-media-other: update 0.3.146 → 0.3.148
DeltaFile
+3-3misc/py-comfyui-workflow-templates-media-other/distinfo
+1-1misc/py-comfyui-workflow-templates-media-other/Makefile
+4-42 files

NetBSD/pkgsrc-wip cccf326pdfrip distinfo cargo-depends.mk, pdfrip/patches patch-Cargo.lock patch-src_core_engine.rs

pdfrip: Update to 3.0.0.
DeltaFile
+0-1,110pdfrip/patches/patch-Cargo.lock
+306-204pdfrip/distinfo
+101-66pdfrip/cargo-depends.mk
+0-18pdfrip/patches/patch-src_core_engine.rs
+0-15pdfrip/patches/patch-Cargo.toml
+1-1pdfrip/Makefile
+408-1,4146 files

FreeBSD/ports 86491afx11/xfce4-terminal Makefile, x11/xfce4-terminal/files patch-revert-mmb-handling patch-terminal_terminal-widget.c

x11/xfce4-terminal: Import middle mouse paste fix from upstream

Replace custom revert with upstream provided patch.

Related upstream bug report: https://gitlab.xfce.org/apps/xfce4-terminal/-/issues/385

Obtained from:  https://gitlab.xfce.org/apps/xfce4-terminal/-/commit/765c984f680469f32cd30fe5cea63fa3af6fc1df
DeltaFile
+0-51x11/xfce4-terminal/files/patch-revert-mmb-handling
+37-0x11/xfce4-terminal/files/patch-terminal_terminal-widget.c
+1-1x11/xfce4-terminal/Makefile
+38-523 files

LLVM/project df9eb79clang/lib/CodeGen CodeGenTypes.cpp, clang/test/CodeGen builtins-extended-image.c builtins-image-load.c

[Clang][AMDGPU] Lower `__amdgpu_texture_t` to `<8 x i32>` instead of ptr adrspace(0) (#187774)

Fix the IR lowering for `__amdgpu_texture_t` to generate a single
256-bit load instead of a double indirection through a flat pointer.

Previously, `__amdgpu_texture_t` was lowered to `ptr addrspace(0)`
(64-bit flat pointer), which caused the double load and indirection.
With the same reproducer like #187697.

```c
#define TSHARP __constant uint *

// Old tsharp handling:
// #define LOAD_TSHARP(I) *(__constant uint8 *)I

#define LOAD_TSHARP(I) *(__constant __amdgpu_texture_t *)I

float4 test_image_load_1D(TSHARP i, int c) {
  return __builtin_amdgcn_image_load_1d_v4f32_i32(15, c, LOAD_TSHARP(i), 0, 0);

    [24 lines not shown]
DeltaFile
+220-264clang/test/CodeGen/builtins-extended-image.c
+210-252clang/test/CodeGen/builtins-image-load.c
+140-168clang/test/CodeGen/builtins-image-store.c
+5-5clang/test/CodeGen/amdgpu-image-rsrc-type-debug-info.c
+7-2clang/lib/CodeGen/CodeGenTypes.cpp
+582-6915 files

LLVM/project d818fa4mlir/python/mlir/dialects ext.py, mlir/test/python/dialects ext.py transform_op_interface.py

[MLIR][Python] Make init parameters follow the field definition order (#186574)

Currently, Python-defined operations automatically generate an
`__init__` function to serve as the operation builder. Previously, the
parameters of this `__init__` function followed a fairly complex set of
rules. For example:

* All result fields were moved to the front to align with other op
builders.
* Fields of `Optional` type were automatically moved to the end and
treated as keyword parameters.
* If the types of all result fields could be inferred automatically,
then all result fields were removed from the parameter list.
* Other than that, the parameter order followed the field definition
order.

These rules may seem reasonable, and they have worked well in practice,
but they have one major drawback: users cannot easily tell what the
actual `__init__` parameter list will look like when writing code,

    [28 lines not shown]
DeltaFile
+111-48mlir/python/mlir/dialects/ext.py
+72-31mlir/test/python/dialects/ext.py
+8-8mlir/test/python/dialects/transform_op_interface.py
+3-3mlir/test/python/integration/dialects/bf.py
+194-904 files

NetBSD/src vN2uZkcshare/man/man4 ddb.4

   ddb(4): improve markup readability for the list of commands

   Add empty (single dot) lines around commands to make them more visible
   in the man page source.  Split long chains of Ij Kl Mn Op into
   multiple source lines with Xo/Xc.  While here mark up literal comma in
   commands with Cm to make it more visible in the PostScript output.
VersionDeltaFile
1.206+239-33share/man/man4/ddb.4
+239-331 files

LLVM/project 93d256bllvm/lib/DebugInfo/PDB/Native TpiStreamBuilder.cpp, llvm/test/DebugInfo/PDB pdbdump-mergetypes.test

[llvm-pdbutil] Hash type records in yaml2pdb (#187593)

The TPI and IPI streams didn't include a hash map for the generated
types, because the types never got hashes. A hash map is necessary to
resolve forward references when dumping the PDB (checks for
`TpiStream::supportsTypeLookup` which checks the hash map).

With this PR, the hashes are generated. There's no good test that we do
this for the IPI stream as well, because it doesn't have forward
references.
DeltaFile
+64-0llvm/test/tools/llvm-pdbutil/Inputs/forward-refs2.yaml
+63-0llvm/test/tools/llvm-pdbutil/Inputs/forward-refs1.yaml
+35-0llvm/test/tools/llvm-pdbutil/merged-forward-refs.test
+9-4llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
+2-5llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
+2-2llvm/test/DebugInfo/PDB/pdbdump-mergetypes.test
+175-111 files not shown
+176-137 files

LLVM/project c1df693llvm/lib/CodeGen/SelectionDAG TargetLowering.cpp, llvm/test/CodeGen/RISCV urem-lkk.ll

[TargetLowering] Use legally typed shifts to split chunks in expandDIVREMByConstant. (#187567)

This replaces LegalVT with HiLoVT and LegalWidth with HBitWidth as
they are the same for all current uses.
    
Then we rewrite the shifts to operate on LL and LH.
    
There's a slight regression on RISC-V due to different node creation
order leading to different DAG combine order. I have other refactoring
I'd like to explore then I may try to fix that.
DeltaFile
+48-36llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+13-11llvm/test/CodeGen/RISCV/urem-lkk.ll
+61-472 files

FreeBSD/ports 5c8958dgames/greed Makefile, games/greed/files patch-greed.adoc

games/greed: Clean adoc tags in README installed file

Reported by:    diizzy
DeltaFile
+52-0games/greed/files/patch-greed.adoc
+1-0games/greed/Makefile
+53-02 files

NetBSD/pkgsrc Jte2nYPdoc CHANGES-2026

   doc: Updated www/chromium to 146.0.7680.153
VersionDeltaFile
1.1808+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc LGHGaZxwww/chromium distinfo Makefile, www/chromium/patches patch-chrome_browser_ui_views_frame_multi__contents__view__drop__target__controller.h

   www/chromium: update to 146.0.7680.153

   * 146.0.7680.153
   This update includes 26 security fixes. Please see the
   Chrome Security Page for more information.
   [TBD][475877320] Critical CVE-2026-4439: Out of bounds memory access
   in WebGL. Reported by Goodluck on 2026-01-15
   [TBD][485935305] Critical CVE-2026-4440: Out of bounds read and write
   in WebGL. Reported by c6eed09fc8b174b0f3eebedcceb1e792 on 2026-02-20
   [TBD][489381399] Critical CVE-2026-4441: Use after free in Base.
   Reported by Google on 2026-03-03
   [TBD][484751092] High CVE-2026-4442: Heap buffer overflow in CSS.
   Reported by Syn4pse on 2026-02-16
   [TBD][485292589] High CVE-2026-4443: Heap buffer overflow in WebAudio.
   Reported by c6eed09fc8b174b0f3eebedcceb1e792 on 2026-02-18
   [TBD][486349161] High CVE-2026-4444: Stack buffer overflow in WebRTC.
   Reported by c6eed09fc8b174b0f3eebedcceb1e792 on 2026-02-21
   [TBD][486421953] High CVE-2026-4445: Use after free in WebRTC.
   Reported by c6eed09fc8b174b0f3eebedcceb1e792 on 2026-02-22

    [40 lines not shown]
VersionDeltaFile
1.34+6-7www/chromium/distinfo
1.48+1-1www/chromium/Makefile
1.2+1-1www/chromium/patches/patch-chrome_browser_ui_views_frame_multi__contents__view__drop__target__controller.h
+8-93 files

FreeBSD/src 4b29bf7release/tools vmimage.subr

Revert "vmimage.subr: pkg autoremove after pkg install"

This reverts commit 6a13aeac3c1f98db7cf156f24a4d6bc8d3c321f6.

The "bogus dependencies being installed" issue was traced down to pkg
confusion surrounding libclang_rt.asan-i386.so linking to a 32-bit
libgcc_s.so.1, and a more minimal workaround of "install clibs-lib32"
has been applied, so this hack is no longer required.

MFC after:      3 days
Sponsored by:   Amazon
DeltaFile
+0-7release/tools/vmimage.subr
+0-71 files

FreeBSD/src 1186997release/tools ec2.conf

EC2: Remove stale comment

MFC after:      3 days
Sponsored by:   Amazon
DeltaFile
+0-4release/tools/ec2.conf
+0-41 files

FreeBSD/src cfe0b7drelease/tools ec2-builder.conf ec2-small.conf

EC2: Add clibs-lib32 pkg to small/builder images

The FreeBSD-clang package on amd64 contains libclang_rt.asan-i386.so,
which links to the 32-bit version of libgcc_s.so.1.  It is not clear
if that file belongs in FreeBSD-clang or if it should be placed into
a different package.

For unknown reasons, pkg *sometimes* recognizes this and decides that
it needs to install a package to supply libgcc_s.so.1:32.

In particular, when we initially install the VM with 'pkg install
[long list of FreeBSD-* packages]', pkg does not recognize that it
wants this; but the *next* time 'pkg install' runs, it decides that
it needs libgcc_s.so.1:32 -- even though that particular library is
not needed by the particular package we're trying to install -- and
goes looking for it... and ends up picking gcc12-devel as a provider.

Later in the EC2 image building process, we run 'pkg autoremove' (which
was added during 15.0 to get rid of the "bogus dependencies" which were

    [19 lines not shown]
DeltaFile
+1-0release/tools/ec2-builder.conf
+1-0release/tools/ec2-small.conf
+2-02 files

FreeBSD/ports 8713bd8lang/rust distinfo Makefile

Revert "lang/rust: fix build with LLVM 22 (PORT_LLVM option)"

This reverts commit 91d047221724449855d84465d8ca53bdddb9fcc2.

This patch was not approved.
This patch interferes with pending rust update (pr 293615)
There was no rush to push this patch since there is a pending rust update (pr 293615)
It breaks lang/rust-nightly
DeltaFile
+1-3lang/rust/distinfo
+0-3lang/rust/Makefile
+1-62 files

FreeBSD/ports 28f7f3dsysutils/py-dbuild Makefile

sysutils/py-dbuild: Add man page

PR:             293952
Reported by:    ahze at ahze.net
DeltaFile
+5-0sysutils/py-dbuild/Makefile
+5-01 files

NetBSD/pkgsrc-wip c1d4049mtr-graph distinfo Makefile

mtr-graph(mtr085): update to 0.85.247
DeltaFile
+3-3mtr-graph/distinfo
+2-2mtr-graph/Makefile
+5-52 files

FreeBSD/ports b820c6esysutils/go-ntfy distinfo Makefile

sysutils/go-ntfy: Update to 2.19.2

ChangeLog:
https://github.com/binwiederhier/ntfy/blob/v2.19.2/docs/releases.md

Reported by:    mm@ (email)
DeltaFile
+7-7sysutils/go-ntfy/distinfo
+2-2sysutils/go-ntfy/Makefile
+9-92 files

OpenBSD/ports GtNkNs8lang/ghc distinfo Makefile

   Rebuild lang/ghc bootstrap on Mar 14 7.9 snapshot

   OK kili@
VersionDeltaFile
1.84+10-10lang/ghc/distinfo
1.236+2-2lang/ghc/Makefile
+12-122 files

FreeBSD/ports 657939dnet/liblinphone distinfo Makefile

net/liblinphone: Update version 5.4.72=>5.4.100

Changelog: https://gitlab.linphone.org/BC/public/liblinphone/-/tags/5.4.100
DeltaFile
+3-3net/liblinphone/distinfo
+1-1net/liblinphone/Makefile
+4-42 files

FreeBSD/ports f7f0917net/belle-sip distinfo Makefile

net/belle-sip: Update version 5.4.72=>5.4.100

Changelog: https://gitlab.linphone.org/BC/public/belle-sip/-/tags/5.4.100
DeltaFile
+3-3net/belle-sip/distinfo
+1-2net/belle-sip/Makefile
+4-52 files

FreeBSD/ports d629a26net/mediastreamer distinfo Makefile

net/mediastreamer: Update version 5.4.72=>5.4.100

Changelog: https://gitlab.linphone.org/BC/public/mediastreamer2/-/tags/5.4.100
DeltaFile
+3-3net/mediastreamer/distinfo
+1-2net/mediastreamer/Makefile
+4-52 files