FreeBSD/ports 3cc2ef3security/py-dirhash Makefile

security/py-dirhash: Fix build

Reported by:    pkg-fallout
DeltaFile
+1-0security/py-dirhash/Makefile
+1-01 files

FreeBSD/ports 4244a64www/py-cachelib Makefile

www/py-cachelib: Fix build

PR:             pkg-fallout
DeltaFile
+1-0www/py-cachelib/Makefile
+1-01 files

FreeBSD/ports b105300astro/py-indiweb distinfo Makefile

astro/py-indiweb: Update to 1.1.0

ChangeLog at:   https://github.com/knro/indiwebmanager/releases/tag/v1.1.0
DeltaFile
+7-3astro/py-indiweb/Makefile
+3-3astro/py-indiweb/distinfo
+10-62 files

LLVM/project ad5c4a2clang/test/Analysis/Scalable/source-edit-generation write-failure.cpp coexistence.cpp, clang/test/Analysis/Scalable/source-edit-generation/Plugins/TestTransformationPlugin TestTransformation.cpp

[SSAF] Fix stage-2 clang build error on TestTransformationPlugin

The plugin code defines the extern variable
SSAFTestTransformationAnchorSource, which is supposed to be used to
force static linking, so not needed here.

The variable definition should undoubtedly be removed, as doing so
solves the build issue locally. The explanation below regarding why
this variable causes the issue was provided by Claude. I repeatedly
asked Claude questions, and he revised his reasoning several times
until it became consistent. However, we should still take the
following explanation with a grain of salt:

ASan created a private alias symbol for the extern variable
SSAFTestTransformationAnchorSource. The linker, when in
'-flat_namespace' mode, treated the symbol as a name-based bind, which
later failed to be resolved through name searching by the loader.

rdar://185749574

    [2 lines not shown]
DeltaFile
+0-8clang/test/Analysis/Scalable/source-edit-generation/Plugins/TestTransformationPlugin/TestTransformation.cpp
+0-3clang/test/Analysis/Scalable/source-edit-generation/happy-path.cpp
+0-2clang/test/Analysis/Scalable/source-edit-generation/write-failure.cpp
+0-2clang/test/Analysis/Scalable/source-edit-generation/coexistence.cpp
+0-154 files

FreeBSD/ports e66ef70mail/protonmail-bridge Makefile distinfo, mail/protonmail-bridge/files patch-vendor_modules.txt

mail/protonmail-bridge: Update to 3.26.0

Changelog: https://github.com/ProtonMail/proton-bridge/blob/v3.26.0/Changelog.md

Reported by:    portscout
DeltaFile
+5-5mail/protonmail-bridge/distinfo
+3-3mail/protonmail-bridge/Makefile
+2-2mail/protonmail-bridge/files/patch-vendor_modules.txt
+10-103 files

LLVM/project 979b722mlir/include/mlir/Dialect/OpenACC OpenACCOps.td, mlir/include/mlir/Dialect/WasmSSA/IR WasmSSAOps.td

[mlir][IR] Require inherent symbol attributes for Symbol operations (#218920)

Require SymbolTable operations to implement SymbolOpInterface and store
symbol names and visibility as inherent attributes.

Add missing symbol properties/interfaces to GPU, OpenACC, OpenMP, EmitC,
and Toy operations, and update affected tests and the GPU Python
builder.

Assisted-by: Codex
DeltaFile
+32-66mlir/lib/IR/SymbolTable.cpp
+71-15mlir/include/mlir/Dialect/WasmSSA/IR/WasmSSAOps.td
+26-45mlir/include/mlir/IR/SymbolInterfaces.td
+54-13mlir/include/mlir/IR/SymbolTable.h
+40-15mlir/lib/Dialect/SPIRV/IR/SPIRVOps.cpp
+32-18mlir/include/mlir/Dialect/OpenACC/OpenACCOps.td
+255-17295 files not shown
+719-481101 files

FreeBSD/ports af852d5net/waypipe Makefile distinfo

net/waypipe: update to 0.11.2

Changes:        https://gitlab.freedesktop.org/mstoeckl/waypipe/-/releases/v0.11.2
Reported by:    GitLab (notify releases)

(cherry picked from commit d4c0f319bf29ad0167c41f31872ec3d3ae9fdf88)
DeltaFile
+3-3net/waypipe/distinfo
+1-1net/waypipe/Makefile
+4-42 files

FreeBSD/ports fdebcb9x11-wm/labwc Makefile distinfo

x11-wm/labwc: update to 0.20.2

Changes:        https://github.com/labwc/labwc/releases/tag/0.20.2
Reported by:    GitHub (watch releases)

(cherry picked from commit ea4fe8aa88ca9514411835007cb50f54a066a934)
DeltaFile
+3-3x11-wm/labwc/distinfo
+2-1x11-wm/labwc/Makefile
+5-42 files

FreeBSD/ports 0f34e7emultimedia/ab-av1 Makefile Makefile.crates

multimedia/ab-av1: update to 0.11.7

Changes:        https://github.com/alexheretic/ab-av1/releases/tag/v0.11.7
Reported by:    GitHub (watch releases)

(cherry picked from commit 578dcc0522b5281feb83b28805c5d7747b1b14f7)
DeltaFile
+9-9multimedia/ab-av1/distinfo
+3-3multimedia/ab-av1/Makefile.crates
+1-1multimedia/ab-av1/Makefile
+13-133 files

LLVM/project 4357422llvm/lib/Transforms/Vectorize VPlanRecipes.cpp, llvm/test/Transforms/LoopVectorize/RISCV partial-reduce-dot-product.ll partial-reduce.ll

[LV] Support EVL for partial reduction and VPExpressionRecipe. (#205741)

This patch adds the support for partial reduction with EVL tail-folding
by not creating a new VPExpressionEVLRecipes but just changing the last
expressionRecipes from VPReductionRecipe to VPReductionEVLRecipe.

Currently, all partial reductions will be converted to
VPExpressionRecipe
when construction. So this patch also supports the VPExpressionRecipe
for EVL.
DeltaFile
+950-0llvm/test/Transforms/LoopVectorize/VPlan/RISCV/reductions-evl.ll
+858-0llvm/test/Transforms/LoopVectorize/RISCV/partial-reduce-with-predicate.ll
+197-0llvm/test/Transforms/LoopVectorize/RISCV/partial-reduce.ll
+52-19llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+68-0llvm/test/Transforms/LoopVectorize/VPlan/RISCV/partial-reduce-dot-product.ll
+20-20llvm/test/Transforms/LoopVectorize/RISCV/partial-reduce-dot-product.ll
+2,145-393 files not shown
+2,197-539 files

FreeBSD/ports c904f77graphics/mesa-devel Makefile distinfo, graphics/mesa-devel/files patch-suffix

graphics/mesa-devel: update to 26.2.b.2282

Changes:        https://gitlab.freedesktop.org/mesa/mesa/-/compare/c2070149bc9...d45779b345c
DeltaFile
+3-3graphics/mesa-devel/files/patch-suffix
+3-3graphics/mesa-devel/distinfo
+2-2graphics/mesa-devel/Makefile
+8-83 files

FreeBSD/ports 983fc3bmultimedia/aom Makefile distinfo

multimedia/aom: update to 3.15.0

Changes:        https://aomedia.googlesource.com/aom/+log/v3.14.1..v3.15.0
Reported by:    Repology, portscout
DeltaFile
+3-3multimedia/aom/distinfo
+1-2multimedia/aom/Makefile
+4-52 files

FreeBSD/ports ea4fe8ax11-wm/labwc Makefile distinfo

x11-wm/labwc: update to 0.20.2

Changes:        https://github.com/labwc/labwc/releases/tag/0.20.2
Reported by:    GitHub (watch releases)
DeltaFile
+3-3x11-wm/labwc/distinfo
+2-1x11-wm/labwc/Makefile
+5-42 files

FreeBSD/ports c5cb697multimedia/libvpx Makefile pkg-plist, multimedia/libvpx/files patch-configure

multimedia/libvpx: update 1.17.0

Changes:        https://chromium.googlesource.com/webm/libvpx/+log/v1.16.0..v1.17.0
Reported by:    Repology, portscout
DeltaFile
+7-7multimedia/libvpx/files/patch-configure
+3-3multimedia/libvpx/distinfo
+2-2multimedia/libvpx/pkg-plist
+1-1multimedia/libvpx/Makefile
+13-134 files

FreeBSD/ports d4c0f31net/waypipe Makefile distinfo

net/waypipe: update to 0.11.2

Changes:        https://gitlab.freedesktop.org/mstoeckl/waypipe/-/releases/v0.11.2
Reported by:    GitLab (notify releases)
DeltaFile
+3-3net/waypipe/distinfo
+1-1net/waypipe/Makefile
+4-42 files

FreeBSD/ports 851727abenchmarks/clpeak Makefile distinfo

benchmarks/clpeak: update to 2.1.3

Changes:        https://github.com/krrishnarraj/clpeak/releases/tag/2.1.2
Changes:        https://github.com/krrishnarraj/clpeak/releases/tag/2.1.3
Reported by:    GitHub (watch releases)
DeltaFile
+3-3benchmarks/clpeak/distinfo
+1-1benchmarks/clpeak/Makefile
+4-42 files

FreeBSD/ports 578dcc0multimedia/ab-av1 Makefile Makefile.crates

multimedia/ab-av1: update to 0.11.7

Changes:        https://github.com/alexheretic/ab-av1/releases/tag/v0.11.7
Reported by:    GitHub (watch releases)
DeltaFile
+9-9multimedia/ab-av1/distinfo
+3-3multimedia/ab-av1/Makefile.crates
+1-1multimedia/ab-av1/Makefile
+13-133 files

LLVM/project 499e1fbbolt/lib/Core BinaryFunction.cpp, bolt/test/RISCV weak-undefined-tail-call.s

[BOLT][RISCV] Avoid evaluating indirect branches as direct branches (#218088)

The RISC-V branch evaluator can resolve JALR when the base register
state is known. In particular, jalr zero, zero, 0 evaluates to address
zero even though it remains an indirect branch.

Do not send indirect branches through the direct branch symbolization
path. Leave them to the existing indirect branch handling instead.

Add a regression test modeling a tail call to an undefined weak symbol
relaxed by GNU ld.
DeltaFile
+30-0bolt/test/RISCV/weak-undefined-tail-call.s
+2-1bolt/lib/Core/BinaryFunction.cpp
+32-12 files

FreeBSD/ports ab4a273mail/py-resend Makefile distinfo

mail/py-resend: Update to 2.42.0

Changelog: https://github.com/resend/resend-python/releases/tag/v2.41.0

Reported by:    Repology
DeltaFile
+3-3mail/py-resend/distinfo
+1-1mail/py-resend/Makefile
+4-42 files

LLVM/project 5fcbb2allvm/lib/Target/AMDGPU SILoadStoreOptimizer.cpp AMDGPU.td, llvm/test/CodeGen/AMDGPU ds_write2.ll ds_read2-gfx1250.ll

[AMDGPU] Disable unaligned 2addr LDS operations in strict mode (#219004)
DeltaFile
+326-161llvm/test/CodeGen/AMDGPU/ds_read2-gfx1250.ll
+149-75llvm/test/CodeGen/AMDGPU/ds_write2.ll
+12-2llvm/lib/Target/AMDGPU/DSInstructions.td
+8-0llvm/lib/Target/AMDGPU/AMDGPU.td
+6-1llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
+501-2395 files

LLVM/project 4832c44llvm/test/tools/UpdateTestChecks/update_test_checks dot_value_in_metadata_string.test

Drop extra blank line
DeltaFile
+0-1llvm/test/tools/UpdateTestChecks/update_test_checks/dot_value_in_metadata_string.test
+0-11 files

LLVM/project 7f707b7llvm/test/tools/UpdateTestChecks/update_test_checks dot_value_in_metadata_string.test

Update test checks to save on a copy
DeltaFile
+3-2llvm/test/tools/UpdateTestChecks/update_test_checks/dot_value_in_metadata_string.test
+3-21 files

FreeBSD/ports 1e0e96csysutils/mkr Makefile distinfo

sysutils/mkr: Update to 0.66.0

Changelog: https://github.com/mackerelio/mkr/blob/v0.66.0/CHANGELOG.md

Reported by:    portscout
DeltaFile
+5-5sysutils/mkr/distinfo
+1-2sysutils/mkr/Makefile
+6-72 files

LLVM/project a10e7d3clang/test/CodeGen/AArch64/neon intrinsics.c

[CIR][AARCH64] Fix neon conversion test (#219069)

This fixes the neon intrinsics test, which has been failing since a
recent change to introduce more conversion handling. The test had an
inadvertantly repeated CIR check.
DeltaFile
+1-1clang/test/CodeGen/AArch64/neon/intrinsics.c
+1-11 files

HardenedBSD/src 2adad9bsys/dev/usb/controller xhci.c, usr.bin/sockstat sockstat.1 main.c

Merge remote-tracking branch 'rad/hardened/current/master' into hardened/current/pledge
DeltaFile
+69-70usr.sbin/bhyve/pci_emul.c
+47-3usr.bin/sockstat/main.c
+18-5sys/dev/usb/controller/xhci.c
+15-2usr.bin/sockstat/sockstat.1
+6-7usr.sbin/bhyve/pci_passthru.c
+2-5usr.sbin/bhyve/pci_fbuf.c
+157-9212 files not shown
+181-10618 files

HardenedBSD/src c2c4d20sys/dev/usb/controller xhci.c, usr.bin/sockstat sockstat.1 main.c

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+69-70usr.sbin/bhyve/pci_emul.c
+47-3usr.bin/sockstat/main.c
+18-5sys/dev/usb/controller/xhci.c
+15-2usr.bin/sockstat/sockstat.1
+6-7usr.sbin/bhyve/pci_passthru.c
+2-5usr.sbin/bhyve/pci_fbuf.c
+157-9212 files not shown
+181-10618 files

HardenedBSD/ports 7fad5ecdevel/tuicr distinfo, multimedia/jmref Makefile

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+927-331net/rsync/files/extra-patch-file-flags.diff
+148-0security/vuxml/vuln/2026.xml
+0-118multimedia/jmref/files/patch-lencod_inc_defines.h
+0-67net/rsync/files/patch-testsuite_xattrs.test
+25-25devel/tuicr/distinfo
+0-43multimedia/jmref/Makefile
+1,100-58482 files not shown
+1,406-89288 files

LLVM/project 97c6103llvm/lib/Target/AMDGPU SIISelLowering.cpp, llvm/test/CodeGen/AMDGPU llvm.amdgcn.cluster.load.async.to.lds.ll llvm.amdgcn.cluster.load.ll

[AMDGPU] Downgrade cluster loads in strict mode (#218999)
DeltaFile
+703-168llvm/test/CodeGen/AMDGPU/llvm.amdgcn.cluster.load.ll
+527-71llvm/test/CodeGen/AMDGPU/llvm.amdgcn.cluster.load.async.to.lds.ll
+27-0llvm/lib/Target/AMDGPU/SIISelLowering.cpp
+1,257-2393 files

HardenedBSD/ports 5a5e4c0misc/crush Makefile distinfo, misc/crush/files extra-patch-disable-command-blocking

misc/crush: Update to 0.91.2

Changelog: https://github.com/charmbracelet/crush/releases/tag/v0.91.2

Reported by:    GitHub (watch releases)
DeltaFile
+5-5misc/crush/distinfo
+1-1misc/crush/files/extra-patch-disable-command-blocking
+1-1misc/crush/Makefile
+7-73 files

FreeBSD/ports 5a5e4c0misc/crush Makefile distinfo, misc/crush/files extra-patch-disable-command-blocking

misc/crush: Update to 0.91.2

Changelog: https://github.com/charmbracelet/crush/releases/tag/v0.91.2

Reported by:    GitHub (watch releases)
DeltaFile
+5-5misc/crush/distinfo
+1-1misc/crush/files/extra-patch-disable-command-blocking
+1-1misc/crush/Makefile
+7-73 files