FreeBSD/ports c00218cnet-mgmt/netbox Makefile

net-mgmt/netbox: Relax version requirements after fab1d136695c

* www/py-gunicorn was updated to the 24.x release series, adjust the
  version requirements accordingly.

* Test suite and run time tests seem fine.
DeltaFile
+1-1net-mgmt/netbox/Makefile
+1-11 files

LLVM/project fe71ea4mlir/lib/Dialect/XeGPU/Transforms XeGPUBlocking.cpp, mlir/test/Dialect/XeGPU xegpu-blocking.mlir

[MLIR][XeGPU] Preserve Leading dimension when blocking rank-sensitive operations (#177489)

This PR preserves leading dimensions for
xegpu.load_matrix/store_matrix/atomic_rmw/convert_layout, and vector
operations which have impact on shapes:
broadcast/multi-reduction/shape_cast/transpose.
Rank-sensitive operations are operations whose semantics depend on the
tensor rank (and consequently its shape), and therefore must not alter
the input tile rank or shape, such as by dropping leading dimensions.
DeltaFile
+18-13mlir/lib/Dialect/XeGPU/Transforms/XeGPUBlocking.cpp
+3-3mlir/test/Dialect/XeGPU/xegpu-blocking.mlir
+21-162 files

FreeBSD/src f0ecf35release/tools vmimage.subr

vmimage.subr: Install pkg on pkgbase images

When building VM and Cloud images with a packaged base system, install
the pkg package; this makes it possible for the base system to be
updated without installing pkg from the FreeBSD-ports repository.

Sponsored by:   Amazon
DeltaFile
+3-0release/tools/vmimage.subr
+3-01 files

FreeBSD/src ec2b3d7stand/fdt fdt_loader_cmd.c

loader: Only warn for !FDT && !ACPI take two

For unclear reasons, we used to print two warnings about not having a
DTB: First,
        printf("No valid device tree blob found!\n");
and immediately later a second,
        printf("WARNING! Trying to fire up the kernel, but no "
            "device tree blob found!\n");

A previous commit silenced the second warning in the event that the
acpi.revision environment variable was set, on the theory that systems
which have ACPI might not need a DTB; this commit silences the first
of the two warnings under the same condition.

Reviewed by:    andrew
Fixes:  3989a3d81701 ("loader: Only warn when we have neither FDT nor ACPI")
Sponsored by:   Amazon
Differential Revision:  https://reviews.freebsd.org/D54772
DeltaFile
+1-1stand/fdt/fdt_loader_cmd.c
+1-11 files

FreeBSD/ports 0c3b544devel/R-cran-kit distinfo Makefile

devel/R-cran-kit: Update to 0.0.21

ChangeLog: https://cran.r-project.org/web/packages/kit/news/news.html
DeltaFile
+3-3devel/R-cran-kit/distinfo
+1-1devel/R-cran-kit/Makefile
+4-42 files

LLVM/project 460e19bllvm/lib/Target/SystemZ SystemZISelLowering.cpp

SystemZ: Use correctly offset MachinePointerInfo in CC lowering

Previously this was just using the original base address as
the pointer info.
DeltaFile
+5-3llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
+5-31 files

DragonFlyBSD/src 7b8d312sys/dev/disk/ahci ahci.c ahci_dragonfly.c

ahci - Improve SATA port link state sysctl output.

This should now always print a meaningful state, instead of outputting
"unknown" in any case where there is no device, no established
communication with the device, or the phy is disabled.

The case "no communication" is relevant, since this can probably occur
in practice on notebooks where an optical drive may be disabled in the BIOS
settings. Or it can probably occur when a disk drive is plugged into a SATA
port, without connecting a power cable.
DeltaFile
+10-0sys/dev/disk/ahci/ahci.c
+3-2sys/dev/disk/ahci/ahci_dragonfly.c
+13-22 files

LLVM/project 1892d27clang/test/CIR/CodeGen/CUDA kernel-stub-name.cu

make test include cleaner
DeltaFile
+2-2clang/test/CIR/CodeGen/CUDA/kernel-stub-name.cu
+2-21 files

FreeBSD/ports dde7e1bgames/libretro-shaders-slang pkg-plist distinfo

games/libretro-shaders-slang: Update g20251223 => g20260122

Commitlog:
https://github.com/libretro/slang-shaders/compare/2707c34...a38704e

PR:     292687
DeltaFile
+117-24games/libretro-shaders-slang/pkg-plist
+3-3games/libretro-shaders-slang/distinfo
+2-2games/libretro-shaders-slang/Makefile
+122-293 files

pfSense/pfsense d5a951esrc/usr/local/www firewall_aliases_edit.php firewall_schedule_edit.php

Avoid double-decoding/encoding config nodes

Follow up to 16d579280c2960469f9b711e155217b40b03e54b.
DeltaFile
+1-1src/usr/local/www/firewall_aliases_edit.php
+1-1src/usr/local/www/firewall_schedule_edit.php
+1-1src/usr/local/www/interfaces_groups_edit.php
+1-1src/usr/local/www/interfaces_qinq_edit.php
+1-1src/usr/local/www/services_igmpproxy_edit.php
+1-1src/usr/local/www/status_dhcpv6_leases.php
+6-61 files not shown
+7-77 files

pfSense/pfsense aabf2c6src/etc/inc xmlparse.inc

Apply XML1 change to cData_attr()

Follow up to 16d579280c2960469f9b711e155217b40b03e54b.
DeltaFile
+2-2src/etc/inc/xmlparse.inc
+2-21 files

LLVM/project 51d5865llvm/test/TableGen MacroFusion.td ResolveSchedClass.td, llvm/utils/TableGen SubtargetEmitter.cpp

TableGen: Emit subtarget generated methods as final (#177781)

DeltaFile
+9-9llvm/utils/TableGen/SubtargetEmitter.cpp
+1-1llvm/test/TableGen/MacroFusion.td
+1-1llvm/test/TableGen/ResolveSchedClass.td
+11-113 files

LLVM/project 2f1b1f3flang/lib/Lower/OpenMP ClauseProcessor.cpp, flang/test/Lower/OpenMP declare-simd.f90

[flang][mlir][OpenMP] Support inbranch and notinbranch clause (#177310)

Support inbranch and notinbranch clause for OpenMP declare simd
directive.
DeltaFile
+44-0mlir/include/mlir/Dialect/OpenMP/OpenMPClauses.td
+37-0mlir/test/Dialect/OpenMP/ops.mlir
+27-2flang/test/Lower/OpenMP/declare-simd.f90
+18-0flang/lib/Lower/OpenMP/ClauseProcessor.cpp
+6-3mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp
+7-0mlir/test/Dialect/OpenMP/invalid.mlir
+139-53 files not shown
+145-69 files

FreeBSD/ports a14817dtextproc/meld pkg-plist Makefile

textproc/meld: update to 3.22.3

Reviewed by:            vishwin
Approved by:            gnome (maintainer), lwhsu (mentor)
Signed-off-by:          Siva Mahadevan <siva at FreeBSD.org>
Sponsored by:           The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D54736
DeltaFile
+47-46textproc/meld/pkg-plist
+4-4textproc/meld/Makefile
+3-3textproc/meld/distinfo
+54-533 files

FreeBSD/src 7101676sys/compat/linuxkpi/common/include/linux seq_buf.h, sys/compat/linuxkpi/common/src linux_seq_buf.c

linuxkpi: Implement <linux/seq_buf.h>

It is a wrapper above a `char *` to track the overall available space in
the buffer as well as the used space. This wrapper does not manage
memory allocation.

The DRM generic code started to use this in Linux 6.10.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D54488
DeltaFile
+73-0sys/compat/linuxkpi/common/include/linux/seq_buf.h
+64-0sys/compat/linuxkpi/common/src/linux_seq_buf.c
+2-0sys/conf/files
+1-0sys/modules/linuxkpi/Makefile
+140-04 files

LLVM/project 3c3aec2llvm/test/Instrumentation/HWAddressSanitizer use-after-scope.ll

update

Created using spr 1.3.6
DeltaFile
+404-0llvm/test/Instrumentation/HWAddressSanitizer/use-after-scope.ll
+404-01 files

LLVM/project 0c6a094llvm/test/Instrumentation/HWAddressSanitizer use-after-scope.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.6

[skip ci]
DeltaFile
+403-0llvm/test/Instrumentation/HWAddressSanitizer/use-after-scope.ll
+403-01 files

LLVM/project 8e1733cllvm/test/Instrumentation/HWAddressSanitizer use-after-scope.ll

add test

Created using spr 1.3.6
DeltaFile
+403-0llvm/test/Instrumentation/HWAddressSanitizer/use-after-scope.ll
+403-01 files

FreeBSD/ports df238fbx11-fonts/opensans-ttf Makefile pkg-plist

x11-fonts/opensans-ttf: Update 20180831 => 3.003, switch upstream, take maintainership

- Change upstream to https://github.com/googlefonts/opensans.
- Make portclippy happy.
- Finish renaming x11-fonts/open-sans → x11/opensans-ttf.

PR:             291692
Approved by:    Florian Limberger <flo at snakeoilproductions.net> (former maintainer, innactive since 2021-01-05)
DeltaFile
+15-15x11-fonts/opensans-ttf/Makefile
+12-5x11-fonts/opensans-ttf/pkg-plist
+3-5x11-fonts/opensans-ttf/distinfo
+30-253 files

FreeBSD/ports 67b65a0x11-fonts/open-sans Makefile pkg-plist, x11-fonts/opensans-ttf Makefile pkg-plist

x11-fonts/open-sans: Rename to x11/opensans-ttf to match upstream naming before update

PR:             291692
Approved by:    Florian Limberger <flo at snakeoilproductions.net> (maintainer, timeout > 1 month)
DeltaFile
+29-0x11-fonts/opensans-ttf/Makefile
+0-29x11-fonts/open-sans/Makefile
+0-13x11-fonts/open-sans/pkg-plist
+13-0x11-fonts/opensans-ttf/pkg-plist
+0-5x11-fonts/open-sans/distinfo
+5-0x11-fonts/opensans-ttf/distinfo
+47-474 files not shown
+52-5110 files

LLVM/project f703a61clang/lib/CIR/CodeGen CIRGenModule.cpp CIRGenFunction.cpp, clang/test/CIR/CodeGen/CUDA kernel-stub-name.cu

[CIR][CUDA] Upstream device stub mangling
DeltaFile
+74-0clang/test/CIR/CodeGen/inputs/cuda.h
+22-0clang/test/CIR/CodeGen/CUDA/kernel-stub-name.cu
+8-2clang/lib/CIR/CodeGen/CIRGenModule.cpp
+3-1clang/lib/CIR/CodeGen/CIRGenFunction.cpp
+107-34 files

FreeBSD/ports 8f2b040security/suricata distinfo Makefile

security/suricata: Update version 8.0.2=>8.0.3

Changelog: https://forum.suricata.io/t/suricata-8-0-3-and-7-0-14-released/6161
DeltaFile
+3-3security/suricata/distinfo
+1-2security/suricata/Makefile
+4-52 files

FreeBSD/ports 3e7cc80security/snort3 distinfo pkg-plist

security/snort3: Update version 3.10.1.0=>3.10.2.0

Changelog: https://github.com/snort3/snort3/releases/tag/3.10.2.0
DeltaFile
+3-3security/snort3/distinfo
+5-0security/snort3/pkg-plist
+1-1security/snort3/Makefile
+9-43 files

FreeBSD/ports fab1d13www/py-gunicorn Makefile distinfo

www/py-gunicorn: Update version 23.0.0=>24.0.0

Changelog: https://github.com/benoitc/gunicorn/releases/tag/24.0.0
DeltaFile
+5-2www/py-gunicorn/Makefile
+3-3www/py-gunicorn/distinfo
+8-52 files

FreeBSD/ports cf896b5sysutils/opentofu distinfo Makefile

sysutils/opentofu: Update version 1.11.3=>1.11.4

Changelog: https://github.com/opentofu/opentofu/releases/tag/v1.11.4
DeltaFile
+5-5sysutils/opentofu/distinfo
+1-2sysutils/opentofu/Makefile
+6-72 files

FreeBSD/ports 084d805sysutils/consul distinfo Makefile

sysutils/consul: Update version 1.22.2=>1.22.3

Changelog: https://github.com/hashicorp/consul/releases/tag/v1.22.3
DeltaFile
+15-15sysutils/consul/distinfo
+3-4sysutils/consul/Makefile
+18-192 files

FreeBSD/ports 9e37371security/rekor distinfo Makefile

security/rekor: Update version 1.4.3=>1.5.0

Changelog: https://github.com/sigstore/rekor/releases/tag/v1.5.0
DeltaFile
+5-5security/rekor/distinfo
+2-3security/rekor/Makefile
+7-82 files

FreeBSD/ports f00c598textproc/consul-template distinfo Makefile

textproc/consul-template: Update version 0.41.3=>0.41.4

Changelog: https://github.com/hashicorp/consul-template/releases/tag/v0.41.4
DeltaFile
+5-5textproc/consul-template/distinfo
+1-2textproc/consul-template/Makefile
+6-72 files

FreeBSD/ports 7741ff6security/osslsigncode distinfo Makefile

security/osslsigncode: Update version 2.10=>2.11

Changelog: https://github.com/mtrojnar/osslsigncode/releases/tag/2.11
DeltaFile
+3-3security/osslsigncode/distinfo
+1-1security/osslsigncode/Makefile
+4-42 files

FreeBSD/ports 18f8c49devel/py-tox distinfo Makefile

devel/py-tox: Update version 4.34.0=>4.34.1

Changelog: https://github.com/tox-dev/tox/releases/tag/4.34.1
DeltaFile
+3-3devel/py-tox/distinfo
+1-1devel/py-tox/Makefile
+4-42 files