FreeBSD/ports 2a6a1f7net/v2ray distinfo Makefile

net/v2ray: Update 5.41.0 => 5.42.0

Changelogs:
* https://github.com/v2fly/v2ray-core/releases/tag/v5.42.0
* https://github.com/v2fly/v2ray-core/compare/v5.41.0...v5.42.0

Approved by:            db@, yuri@ (Mentors, implicit)
Differential Revision:  https://reviews.freebsd.org/D54262
DeltaFile
+5-5net/v2ray/distinfo
+1-2net/v2ray/Makefile
+6-72 files

FreeBSD/ports e94b64esysutils/usermin Makefile, sysutils/usermin/files patch-setup.sh

sysutils/usermin: Fix interactive prompts during install

Replace read statements with auto-answers in setup.sh patch to prevent
the installer from blocking on stdin for config_dir, var_dir, and perl
path inputs.
DeltaFile
+31-4sysutils/usermin/files/patch-setup.sh
+1-0sysutils/usermin/Makefile
+32-42 files

FreeNAS/freenas 84ef500tests/unit test_zfsacl.py

NAS-138343 / 26.04 / Add functional unit tests for nfsv4 acl chown (#17915)

This commit adds a unit test for chown behavior on nfsv4 acltype
datasets.
DeltaFile
+113-0tests/unit/test_zfsacl.py
+113-01 files

LLVM/project 8e90208mlir/lib/Dialect/Vector/Transforms VectorMaskElimination.cpp, mlir/test/Dialect/Vector eliminate-masks.mlir

[mlir][vector] Skip vector mask elimination for funcs without body (#173330)

DeltaFile
+6-0mlir/test/Dialect/Vector/eliminate-masks.mlir
+4-0mlir/lib/Dialect/Vector/Transforms/VectorMaskElimination.cpp
+10-02 files

LLVM/project d1b4408llvm/test/Transforms/InstCombine simplify-demanded-fpclass-sqrt.ll

InstCombine: Add baseline tests for sqrt SimplifyDemandedFPClass
DeltaFile
+206-0llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-sqrt.ll
+206-01 files

LLVM/project bdecb5dllvm/include/llvm/Support KnownFPClass.h, llvm/lib/Analysis ValueTracking.cpp

InstCombine: Implement SimplifyDemandedFPClass for sqrt
DeltaFile
+31-0llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+10-19llvm/lib/Analysis/ValueTracking.cpp
+24-0llvm/lib/Support/KnownFPClass.cpp
+7-11llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-sqrt.ll
+4-0llvm/include/llvm/Support/KnownFPClass.h
+76-305 files

LLVM/project 9df16eallvm/lib/Transforms/InstCombine InstCombineSimplifyDemanded.cpp, llvm/test/Transforms/InstCombine simplify-demanded-fpclass-minimum.ll simplify-demanded-fpclass-maximum.ll

InstCombine: Introduce nsz flag on minimum/maximum in SimplifyDemandedFPClass

Alive isn't particularly happy with this in the case where
one of the inputs could be zero, but I think
it's wrong: https://alive2.llvm.org/ce/z/dF7V6k

nsz shouldn't permit introducing a -0 result where
there wasn't one in the input here.
DeltaFile
+30-30llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-minimum.ll
+30-30llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-maximum.ll
+18-2llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+78-623 files

LLVM/project ce1a943llvm/include/llvm/ADT FloatingPointMode.h, llvm/include/llvm/Support KnownFPClass.h

InstCombine: Handle log/log2/log10 in SimplifyDemandedFPClass
DeltaFile
+16-30llvm/lib/Analysis/ValueTracking.cpp
+37-0llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+9-18llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-log.ll
+17-0llvm/lib/Support/KnownFPClass.cpp
+5-0llvm/include/llvm/ADT/FloatingPointMode.h
+4-0llvm/include/llvm/Support/KnownFPClass.h
+88-486 files

LLVM/project 7deebfallvm/include/llvm/Support KnownFPClass.h, llvm/lib/Analysis ValueTracking.cpp

InstCombine: Handle minimum/maximum in SimplifyDemandedFPClass
DeltaFile
+114-1llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+26-87llvm/lib/Analysis/ValueTracking.cpp
+37-56llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-maximum.ll
+92-0llvm/lib/Support/KnownFPClass.cpp
+33-48llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-minimum.ll
+14-0llvm/include/llvm/Support/KnownFPClass.h
+316-1926 files

LLVM/project 65337dellvm/test/Transforms/InstCombine simplify-demanded-fpclass-log.ll

InstCombine: Add baseline test for SimplifyDemandedFPClass log handling
DeltaFile
+268-0llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-log.ll
+268-01 files

LLVM/project 77c871fllvm/test/Transforms/InstCombine simplify-demanded-fpclass-maximum.ll simplify-demanded-fpclass-minimum.ll

InstCombine: Add baseline tests for minimum/maximum SimplifyDemandedFPClass handling
DeltaFile
+1,250-0llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-maximum.ll
+1,250-0llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-minimum.ll
+2,500-02 files

LLVM/project 83c4abdllvm/include/llvm/Support KnownFPClass.h, llvm/lib/Analysis ValueTracking.cpp

InstCombine: Handle fmul in SimplifyDemandedFPClass
DeltaFile
+122-1llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+46-39llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-fmul.ll
+18-63llvm/lib/Analysis/ValueTracking.cpp
+59-0llvm/lib/Support/KnownFPClass.cpp
+29-0llvm/include/llvm/Support/KnownFPClass.h
+1-2llvm/test/Transforms/InstCombine/simplify-demanded-fpclass.ll
+275-1056 files

LLVM/project 28318a0llvm/test/Transforms/InstCombine simplify-demanded-fpclass-fmul.ll

InstCombine: Add baseline tests for fmul SimplifyDemandedFPClass handling
DeltaFile
+792-0llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-fmul.ll
+792-01 files

LLVM/project 6d31e7eclang/include/clang/AST TypeBase.h

[NFC][Clang][HLSL] Minor fixes to SpirvOperand (#172782)

Static analysis flagged this as not applying rule of three properly. The
code was trying to do the right thing but basically they are effectively
all defaulted, so we make it explicit.
DeltaFile
+2-3clang/include/clang/AST/TypeBase.h
+2-31 files

LLVM/project 8ea8f68llvm/lib/CodeGen/SelectionDAG SelectionDAGBuilder.cpp, llvm/test/CodeGen/Generic selectiondag-dbgvalue-null-crash.ll

Revert "[SelectionDAG] Fix null pointer dereference in resolveDanglingDebugInfo" (#173925)

Reverts llvm/llvm-project#173500.

Test fails depending on the host system.
DeltaFile
+0-34llvm/test/CodeGen/Generic/selectiondag-dbgvalue-null-crash.ll
+1-1llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+1-352 files

OpenBSD/ports ZreprwUdevel/maven distinfo Makefile, devel/maven/pkg PLIST

   devel/maven: update to 3.9.12
VersionDeltaFile
1.21+29-29devel/maven/pkg/PLIST
1.19+2-2devel/maven/distinfo
1.47+1-2devel/maven/Makefile
+32-333 files

LLVM/project 6009607llvm/lib/CodeGen/SelectionDAG StatepointLowering.cpp, llvm/test/CodeGen/AMDGPU llvm.deoptimize.ll

DAG: Check if deoptimize call is available before emitting it (#170940)

DeltaFile
+10-2llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
+2-6llvm/test/CodeGen/AMDGPU/llvm.deoptimize.ll
+12-82 files

NetBSD/pkgsrc-wip 5ce5c98. TODO, rumdl distinfo Makefile

rumdl: update to 0.0.206
DeltaFile
+3-3rumdl/distinfo
+1-1rumdl/Makefile
+0-1TODO
+4-53 files

FreeBSD/ports c0435c7net-mgmt/victoria-logs distinfo Makefile

net-mgmt/victoria-logs: upgrade to 1.43.1
DeltaFile
+5-5net-mgmt/victoria-logs/distinfo
+1-1net-mgmt/victoria-logs/Makefile
+6-62 files

NetBSD/pkgsrc U4P9gXPdoc CHANGES-2025

   Add missed "databases/mongodb4 to 4.4.30" update
VersionDeltaFile
1.7479+2-1doc/CHANGES-2025
+2-11 files

FreeBSD/ports 5d76f53databases/xtrabackup84 distinfo Makefile

databases/xtrabackup84: upgrade to 8.4.0-5
DeltaFile
+3-3databases/xtrabackup84/distinfo
+1-1databases/xtrabackup84/Makefile
+4-42 files

FreeBSD/src 8e95158share/man/man5 src.conf.5, tools/build/options WITH_REPRODUCIBLE_PATHS

Fix typo in tools/build/options/WITH_REPRODUCIBLE_PATHS

Fixes:          faeaa25f5624
DeltaFile
+4-4share/man/man5/src.conf.5
+3-3tools/build/options/WITH_REPRODUCIBLE_PATHS
+7-72 files

LLVM/project 88aca29llvm/test/tools/llvm-mca/RISCV/Andes45 rvv-arithmetic.s rvv-fp.s

Merge branch 'main' into unroll-dont-copy-latch-loop-id
DeltaFile
+6,837-0llvm/test/tools/llvm-mca/RISCV/Andes45/rvv-arithmetic.s
+5,616-0llvm/test/tools/llvm-mca/RISCV/Andes45/rvv-fp.s
+4,742-0llvm/test/tools/llvm-mca/RISCV/Andes45/rvv-vlseg-vsseg.s
+4,345-0llvm/test/tools/llvm-mca/RISCV/Andes45/rvv-bitwise.s
+3,521-0llvm/test/tools/llvm-mca/RISCV/Andes45/rvv-permutation.s
+3,001-0llvm/test/tools/llvm-mca/RISCV/Andes45/rvv-mul-div.s
+28,062-0969 files not shown
+72,324-10,107975 files

LLVM/project 6d1083bllvm/lib/CodeGen/SelectionDAG SelectionDAGBuilder.cpp, llvm/test/CodeGen/Generic selectiondag-dbgvalue-null-crash.ll

Revert "[SelectionDAG] Fix null pointer dereference in resolveDanglingDebugIn…"

This reverts commit 7a3bbf724dc65ca959714bfd66b5e7ebf8c4e091.
DeltaFile
+0-34llvm/test/CodeGen/Generic/selectiondag-dbgvalue-null-crash.ll
+1-1llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+1-352 files

FreeBSD/ports 6de9509www/squid Makefile pkg-plist, www/squid/files patch-configure 900.squid-rotate-log.in

www/squid: Update 6.14 => 7.3

Changelogs:
https://github.com/squid-cache/squid/releases/tag/SQUID_7_0_1
https://github.com/squid-cache/squid/releases/tag/SQUID_7_0_2
https://github.com/squid-cache/squid/releases/tag/SQUID_7_1
https://github.com/squid-cache/squid/releases/tag/SQUID_7_2
https://github.com/squid-cache/squid/releases/tag/SQUID_7_3

PR:     290630
DeltaFile
+22-35www/squid/Makefile
+42-4www/squid/files/patch-configure
+26-0www/squid/files/900.squid-rotate-log.in
+7-10www/squid/files/squid.in
+1-9www/squid/pkg-plist
+3-3www/squid/distinfo
+101-616 files

OpenBSD/src N0G56IXsys/arch/arm64/dev smmu_acpi.c

   Ampere Altra ACPI IORT table does not define SPIs for the different IRQ
   types.  Instead I assume we'll have to make use of MSIs, which I'll yet
   have to implement.

   It's not much of a problem though because these interrupts are mostly used
   in case something goes wrong, e.g. due to an invalid access; if everything
   is working fine, we don't need interrupts right now.

   Unfortunately though we bailed out at an unfortunate moment:  After we had
   already initialized the SMMU to intercept, but before the driver is hooked
   up as IOMMU, thus not mapping anything but the SMMU enforcing boundaries.

   For now we can simply log that the interrupts are not there and proceed.
   Note that SMMU on ACPI isn't enabled by default yet anyway.
VersionDeltaFile
1.13+9-9sys/arch/arm64/dev/smmu_acpi.c
+9-91 files

LLVM/project 2bca734llvm/lib/CodeGen/SelectionDAG StatepointLowering.cpp, llvm/test/CodeGen/AMDGPU llvm.deoptimize.ll

DAG: Check if deoptimize call is available before emitting it
DeltaFile
+10-2llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
+2-6llvm/test/CodeGen/AMDGPU/llvm.deoptimize.ll
+12-82 files

LLVM/project ab9a9bcbolt/lib/Passes PAuthGadgetScanner.cpp, llvm/lib/Target/AVR AVRInstrInfo.td

Rebase

Created using spr 1.3.7
DeltaFile
+489-0llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-exp.ll
+352-69llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+243-83llvm/test/Transforms/SLPVectorizer/X86/c-ray.ll
+171-111bolt/lib/Passes/PAuthGadgetScanner.cpp
+129-121llvm/lib/Target/AVR/AVRInstrInfo.td
+189-0llvm/lib/Target/SPIRV/SPIRVCombinerHelper.cpp
+1,573-384282 files not shown
+6,121-2,084288 files

OpenBSD/src b9RuNGusys/arch/arm64/dev smmu_acpi.c

   If SMMUv3's COHACC override flag is set in the IORT, we can force the SMMU's
   DMA tag to be coherent.  This tag is used for its command and event queues.
VersionDeltaFile
1.12+8-2sys/arch/arm64/dev/smmu_acpi.c
+8-21 files

FreeNAS/freenas 5712bd3src/middlewared/middlewared/plugins account.py, tests/api2 test_account.py

Enforce root user group memberships.
The root user is allowed to be a member of builtin_administrators only.

(cherry picked from commit 429c8e8e7e1d26c6e4bf4f3b842732441b489911)
DeltaFile
+93-0tests/api2/test_account.py
+46-0src/middlewared/middlewared/plugins/account.py
+139-02 files