FreeBSD/ports bf02ab3games/openrct2 distinfo Makefile

games/openrct2: update to 0.4.30

Changelog:      https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.4.30
DeltaFile
+3-3games/openrct2/distinfo
+1-1games/openrct2/Makefile
+4-42 files

LLVM/project bb1f220mlir/lib/Conversion/TosaToLinalg TosaToLinalg.cpp, mlir/test/Conversion/TosaToLinalg tosa-to-linalg.mlir

[mlir][tosa] Fix negate lowering to skip no-op casts (#173299)

Fix TOSA negate lowering to avoid emitting same-width
`ExtSIOp`/`TruncIOp`, which the arith verifier now rejects. Behavior is
unchanged. We only skip no-op casts when operand and intermediate widths
already match. Adds a regression test ensuring the lowering for integer
negates doesn't produce verifier-invalid casts.
DeltaFile
+13-7mlir/lib/Conversion/TosaToLinalg/TosaToLinalg.cpp
+10-0mlir/test/Conversion/TosaToLinalg/tosa-to-linalg.mlir
+23-72 files

LLVM/project 8fd85ballvm/lib/Analysis ScalarEvolution.cpp, llvm/lib/CodeGen CodeGenPrepare.cpp

[LLVM] Temporarily allow implicit truncation in some places

Split out from https://github.com/llvm/llvm-project/pull/171456.

This explicitly allows implicit truncation in a number of places,
prior to switching the default. This limits the scope of the
initial change.
DeltaFile
+16-7llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
+4-1llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
+4-1llvm/lib/Target/SPIRV/SPIRVGlobalRegistry.cpp
+4-1llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
+4-1llvm/lib/CodeGen/CodeGenPrepare.cpp
+4-1llvm/lib/Analysis/ScalarEvolution.cpp
+36-121 files not shown
+39-137 files

NetBSD/pkgsrc zPVgseytextproc/discount Makefile

   discount: force unsigned chars on NetBSD

   Fixes p5-Text-Markdown-Discount.

   Bump PKGREVISION.
VersionDeltaFile
1.22+4-2textproc/discount/Makefile
+4-21 files

OPNSense/core b608065src/etc/inc interfaces.inc

interface: POC for multi-dhcp6c support

I'm not entirely sure why we settled for a single deamon of
dhcp6c back in the day, but there are certianly downsides to
it and I don't see something that wasn't fixed in the meantime
that makes this not work.

At the moment this splits off dhcp6c only but we need to
change the daemon's print a bit to avoid complaining about
"other" devices since the situation to ignore a non-listening
interface is normal and not "ignoring" something obvious as
the INFO log message suggests.

rtsold still needs to be split to allow for HUP reload of
a single interface instead of forcing a restart of all
DHCPv6 WAN clients at the same time.
DeltaFile
+25-38src/etc/inc/interfaces.inc
+25-381 files

LLVM/project 30a1ffbllvm/lib/Analysis ValueTracking.cpp, llvm/test/Transforms/InstSimplify ptrtoaddr.ll

[ValueTracking] Support ptrtoaddr in inequality implication (#173362)

`ptrtoaddr(p1) - ptrtoaddr(p2) == non-zero` implies `p1 != p2`, same as
for ptrtoint.
DeltaFile
+57-0llvm/test/Transforms/InstSimplify/ptrtoaddr.ll
+6-5llvm/lib/Analysis/ValueTracking.cpp
+63-52 files

LLVM/project e65317allvm/lib/Analysis ValueTracking.cpp, llvm/test/Analysis/ScalarEvolution ptrtoaddr-i32-index-width.ll ptrtoaddr.ll

[ValueTracking] Support ptrtoaddr in computeKnownBits() (#173358)

ptrtoaddr can be handled the same as ptrtoint here. The pointer known
bits cover the full pointer width, and ptrtoaddr either passes those
through directly or truncates to the address size.
DeltaFile
+50-0llvm/test/Transforms/InstCombine/ptrtoaddr.ll
+1-1llvm/test/Analysis/ScalarEvolution/ptrtoaddr-i32-index-width.ll
+1-1llvm/test/Analysis/ScalarEvolution/ptrtoaddr.ll
+1-0llvm/lib/Analysis/ValueTracking.cpp
+53-24 files

FreeBSD/ports 0efa90cmisc/onnxruntime Makefile, misc/onnxruntime/files patch-onnxruntime_core_mlas_lib_qlmul.cpp patch-onnxruntime_core_mlas_lib_power_qgemm__kernel__power10.cpp

misc/onnxruntime: fix build on powerpc64le

/wrkdirs/usr/ports/misc/onnxruntime/work/onnxruntime-1.23.2/onnxruntime/core/mlas/lib/platform.cpp:636:18: error: use of undeclared identifier 'AT_HWCAP2'
  636 |     elf_aux_info(AT_HWCAP2, &hwcap2, sizeof(hwcap2));
      |                  ^
/wrkdirs/usr/ports/misc/onnxruntime/work/onnxruntime-1.23.2/onnxruntime/core/mlas/lib/platform.cpp:638:39: error: use of undeclared identifier 'PPC_FEATURE2_ARCH_3_00'
  638 |     bool HasP9Instructions = hwcap2 & PPC_FEATURE2_ARCH_3_00;
      |                                       ^
2 errors generated.
/wrkdirs/usr/ports/misc/onnxruntime/work/.build/_deps/eigen3-src/unsupported/Eigen/CXX11/../../../Eigen/src/Core/arch/AltiVec/PacketMath.h:119:35: error: 'vec_lvsl' is deprecated: use assignment for unaligned little endian loads/s
tores [-Werror,-Wdeprecated-declarations]
  119 | static Packet16uc p16uc_FORWARD = vec_lvsl(0, (float*)0);
      |                                   ^
/usr/lib/clang/19/include/altivec.h:4610:20: note: 'vec_lvsl' has been explicitly marked deprecated here
 4610 |     __attribute__((__deprecated__("use assignment for unaligned little endian \
      |                    ^
1 error generated.
/wrkdirs/usr/ports/misc/onnxruntime/work/onnxruntime-1.23.2/onnxruntime/core/mlas/lib/power/qgemm_kernel_power10.cpp:880:70: error: expected a type
  880 |     __vector signed int columnsum = *reinterpret_cast<const __vector int32_t *>(&ColumnSumBuffer[pos]);

    [19 lines not shown]
DeltaFile
+20-0misc/onnxruntime/files/patch-onnxruntime_core_mlas_lib_qlmul.cpp
+19-0misc/onnxruntime/files/patch-onnxruntime_core_mlas_lib_power_qgemm__kernel__power10.cpp
+12-0misc/onnxruntime/files/patch-onnxruntime_core_mlas_lib_platform.cpp
+1-0misc/onnxruntime/Makefile
+52-04 files

FreeBSD/ports 31c0272sysutils/cpuid distinfo Makefile

sysutils/cpuid: update to 20250513

PR:     291934
DeltaFile
+3-3sysutils/cpuid/distinfo
+1-1sysutils/cpuid/Makefile
+4-42 files

OPNSense/plugins be46e83net/frr pkg-descr Makefile

Bump version and changelog
DeltaFile
+4-0net/frr/pkg-descr
+1-1net/frr/Makefile
+5-12 files

OpenBSD/src LJU4iiUusr.bin/tmux screen-write.c

   Redraw pane borders when entering or leaving alternate screen, from Mike
   Jonkmans in GitHub issue 4788.
VersionDeltaFile
1.244+7-3usr.bin/tmux/screen-write.c
+7-31 files

OPNSense/plugins e5bbdafnet/frr/src/opnsense/service/conf/actions.d actions_quagga.conf

net/frr: Prevent errors in diagnostics view when a frr daemon is not started
DeltaFile
+23-0net/frr/src/opnsense/service/conf/actions.d/actions_quagga.conf
+23-01 files

OpenBSD/src Iixsy37usr.bin/tmux format.c

   Do not use client if there isn't one, GitHub issue 4789.
VersionDeltaFile
1.341+4-2usr.bin/tmux/format.c
+4-21 files

FreeBSD/ports a210bf3x11/hyprpaper Makefile distinfo

x11/hyprpaper: Update to 0.8.1

Changelog:
- https://github.com/hyprwm/hyprpaper/releases/tag/v0.8.0
- https://github.com/hyprwm/hyprpaper/releases/tag/v0.8.1

Reported by:    GitHub (watch releases)
DeltaFile
+10-8x11/hyprpaper/Makefile
+3-3x11/hyprpaper/distinfo
+13-112 files

FreeBSD/ports 163cf64x11-wm/hyprland pkg-plist Makefile, x11-wm/hyprland/files patch-start_src_core_Instance.cpp patch-hyprtester_clients_child-window.cpp

x11-wm/hyprland: Update to 0.53.1

While here, adjust dependency so that libinotify is required only when
system does not yet implement native inotify functions.

Changelog:
- https://github.com/hyprwm/Hyprland/releases/tag/v0.53.0
- https://github.com/hyprwm/Hyprland/releases/tag/v0.53.1

Reported by:    GitHub (watch releases)
DeltaFile
+39-18x11-wm/hyprland/pkg-plist
+41-0x11-wm/hyprland/files/patch-start_src_core_Instance.cpp
+12-8x11-wm/hyprland/Makefile
+17-0x11-wm/hyprland/files/patch-hyprtester_clients_child-window.cpp
+17-0x11-wm/hyprland/files/patch-hyprtester_src_tests_clients_child-window.cpp
+0-11x11-wm/hyprland/files/patch-hyprctl_main.cpp
+126-377 files not shown
+178-4213 files

LLVM/project aa13ebcllvm/test/CodeGen/RISCV/rvv vfmadd-sdnode.ll fixed-vectors-vfwmacc.ll

[llvm][RISCV] Support fma codegen for zvfbfa (#172949)

This patch supports codegen for both widen and non-widen fma.
DeltaFile
+514-477llvm/test/CodeGen/RISCV/rvv/vfmadd-sdnode.ll
+969-4llvm/test/CodeGen/RISCV/rvv/fixed-vectors-vfwmacc.ll
+932-8llvm/test/CodeGen/RISCV/rvv/vfwmacc-sdnode.ll
+682-4llvm/test/CodeGen/RISCV/rvv/vfnmadd-sdnode.ll
+621-8llvm/test/CodeGen/RISCV/rvv/vfmsub-sdnode.ll
+613-4llvm/test/CodeGen/RISCV/rvv/vfnmsub-sdnode.ll
+4,331-5057 files not shown
+5,406-54013 files

FreeBSD/ports 4606da1devel/libpff Makefile

devel/libpff: fix staging with python 3.12

PR:             285957
DeltaFile
+1-0devel/libpff/Makefile
+1-01 files

LLVM/project 3ae7b94llvm/lib/Transforms/Vectorize VectorCombine.cpp

review: split nested loop & enhance pattern match
DeltaFile
+39-34llvm/lib/Transforms/Vectorize/VectorCombine.cpp
+39-341 files

LLVM/project 212527cflang/include/flang/Optimizer/Dialect FIROps.td, flang/lib/Optimizer/CodeGen CodeGen.cpp

[Flang] Add FIR and LLVM lowering support for prefetch directive (#167272)

Implementation details:
* Add PrefetchOp in FirOps
* Handle PrefetchOp in FIR Lowering and also pass required default
values
* Handle PrefetchOp in CodeGen.cpp
* Add required tests
DeltaFile
+78-0flang/lib/Optimizer/Dialect/FIROps.cpp
+73-0flang/test/Lower/HLFIR/prefetch.f90
+39-0flang/test/Integration/prefetch.f90
+29-9flang/lib/Optimizer/CodeGen/CodeGen.cpp
+37-0flang/include/flang/Optimizer/Dialect/FIROps.td
+25-0flang/test/Fir/prefetch.fir
+281-91 files not shown
+299-107 files

FreeBSD/ports 795caabjapanese/cskk distinfo Makefile.crates

japanese/cskk: Update to 3.2.1

Changelog: https://github.com/naokiri/cskk/releases/tag/v3.2.1

PR:             292180
Reported by:    SyoBoN <syobon at syobon.net> (maintainer)
DeltaFile
+35-31japanese/cskk/distinfo
+16-14japanese/cskk/Makefile.crates
+6-0japanese/cskk/pkg-plist
+1-2japanese/cskk/Makefile
+58-474 files

FreeNAS/freenas d8caacdsrc/middlewared/middlewared/migration 0006_system_cert.py, src/middlewared/middlewared/plugins/crypto_ __init__.py certificates.py

Fix more usages
DeltaFile
+3-3src/middlewared/middlewared/migration/0006_system_cert.py
+2-2src/middlewared/middlewared/plugins/crypto_/__init__.py
+2-2src/middlewared/middlewared/plugins/crypto_/certificates.py
+3-1src/middlewared/middlewared/plugins/crypto_/renew_certs.py
+10-84 files

FreeNAS/freenas 7195854src/middlewared/middlewared/etc_files/local/nginx nginx.conf.mako

Fix nginx cert usage
DeltaFile
+3-1src/middlewared/middlewared/etc_files/local/nginx/nginx.conf.mako
+3-11 files

LLVM/project 464d7cbclang/lib/CodeGen CGStmt.cpp

-EnableSingleByteCoverage
DeltaFile
+0-4clang/lib/CodeGen/CGStmt.cpp
+0-41 files

FreeBSD/ports 7ff60b7net-p2p/jackett distinfo Makefile.nuget, net-p2p/jackett/files jackett.in

net-p2p/jackett: Update to 0.24.704

While here, added the --NoUpdates flag to the RC script so the app
does not check for a non-existent automatic update.

Changes: https://github.com/Jackett/Jackett/compare/v0.24.196...v0.24.704

PR:             291442
Reported by:    Matt <lazeraman at gmail.com>
Approved by:    Ralf van der Enden <tremere at cainites.net> (maintainer, timeout 4 weeks)
DeltaFile
+175-33net-p2p/jackett/distinfo
+95-23net-p2p/jackett/Makefile.nuget
+20-18net-p2p/jackett/pkg-plist
+1-1net-p2p/jackett/files/jackett.in
+1-1net-p2p/jackett/Makefile
+292-765 files

FreeNAS/freenas bba7fe7src/middlewared/middlewared/api/v26_04_0 system_general.py, src/middlewared/middlewared/plugins/system_general update.py

Return cert id instead of full cert object in system general config
DeltaFile
+1-4src/middlewared/middlewared/plugins/system_general/update.py
+1-1src/middlewared/middlewared/api/v26_04_0/system_general.py
+2-52 files

OpenBSD/ports ikEY681wayland/wlroots Makefile, wayland/wlroots/pkg DESCR

   Fix a typo and a spacing issue in DESCR
VersionDeltaFile
1.2+2-2wayland/wlroots/pkg/DESCR
1.16+1-0wayland/wlroots/Makefile
+3-22 files

LLVM/project 727212fllvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, llvm/test/CodeGen/SPIRV/extensions/SPV_INTEL_long_composites long-spec-const-composite.ll

Merge branch 'users/chapuni/cov/merge/merge-mcdc' into users/chapuni/cov/merge/trunk
DeltaFile
+241,284-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+95,651-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+65,599-0llvm/test/CodeGen/SPIRV/extensions/SPV_INTEL_long_composites/long-spec-const-composite.ll
+53,948-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+49,842-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.896bit.ll
+45,725-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.832bit.ll
+552,049-069,578 files not shown
+9,098,573-2,975,49669,584 files

LLVM/project 9e673e8llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, llvm/test/CodeGen/SPIRV/extensions/SPV_INTEL_long_composites long-spec-const-composite.ll

Merge branch 'users/chapuni/cov/merge/merge-mcdc-base' into users/chapuni/cov/merge/merge-mcdc

Conflicts:
        llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
DeltaFile
+241,284-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+95,651-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+65,599-0llvm/test/CodeGen/SPIRV/extensions/SPV_INTEL_long_composites/long-spec-const-composite.ll
+53,948-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+49,842-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.896bit.ll
+45,725-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.832bit.ll
+552,049-069,578 files not shown
+9,098,573-2,975,49669,584 files

OpenBSD/ports sb2bnAUsecurity/rust-openssl-tests distinfo crates.inc, security/rust-openssl-tests/pkg PLIST

   Update to rust-openssl-tests 20250105
VersionDeltaFile
1.146+30-3security/rust-openssl-tests/pkg/PLIST
1.204+8-8security/rust-openssl-tests/distinfo
1.166+3-3security/rust-openssl-tests/crates.inc
1.212+2-2security/rust-openssl-tests/Makefile
+43-164 files

LLVM/project 27e8ac0llvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, llvm/test/CodeGen/SPIRV/extensions/SPV_INTEL_long_composites long-spec-const-composite.ll

Merge branches 'users/chapuni/cov/merge/strategy' and 'users/chapuni/cov/merge/mcdcsort' into users/chapuni/cov/merge/merge-mcdc-base
DeltaFile
+241,284-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+95,651-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+65,599-0llvm/test/CodeGen/SPIRV/extensions/SPV_INTEL_long_composites/long-spec-const-composite.ll
+53,948-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.960bit.ll
+49,842-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.896bit.ll
+45,725-0llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.832bit.ll
+552,049-069,578 files not shown
+9,098,575-2,975,49869,584 files