FreeBSD/ports 9ceb626x11-drivers/xf86-input-elographics pkg-descr distinfo

x11-drivers/xf86-input-elographics: Update to 1.4.4

Update COMMENT, WWW and pkg-descr.

https://lists.x.org/archives/xorg-announce/2022-December/003289.html
https://lists.x.org/archives/xorg-announce/2024-February/003459.html

PR:             297255
Approved by:    x11 (arrowd)
Approved by:    fluffy (mentor)
DeltaFile
+4-7x11-drivers/xf86-input-elographics/Makefile
+3-3x11-drivers/xf86-input-elographics/distinfo
+3-1x11-drivers/xf86-input-elographics/pkg-descr
+10-113 files

FreeBSD/ports e67fed6net/rustconn Makefile Makefile.crates

net/rustconn: Update to 0.19.11

ChangeLog:

- https://github.com/totoshko88/RustConn/releases#release-v0.19.8
- https://github.com/totoshko88/RustConn/releases#release-v0.19.9
- https://github.com/totoshko88/RustConn/releases#release-v0.19.10
- https://github.com/totoshko88/RustConn/releases#release-v0.19.11

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+9-9net/rustconn/distinfo
+3-3net/rustconn/Makefile.crates
+1-1net/rustconn/Makefile
+13-133 files

FreeBSD/ports bac9344graphics/nvidia-drm-61-kmod-devel distinfo, graphics/nvidia-drm-612-kmod-devel distinfo

x11/nvidia-driver-devel, x11/nvidia-kmod-devel, x11/linux-nvidia-libs-devel, graphics/nvidia-drm*-kmod-devel: Update to 610.57.04

Update to latest New Feature Branch of drivers 610.57.04:
https://www.nvidia.com/en-us/drivers/details/274515/

Linux counterparts for x11/linux-nvidia-libs:
https://www.nvidia.com/en-us/drivers/details/274513/

PR:             297266
Differential Revision:  https://reviews.freebsd.org/D58640
DeltaFile
+3-3x11/nvidia-driver-devel/distinfo
+3-3x11/linux-nvidia-libs-devel/distinfo
+3-3graphics/nvidia-drm-latest-kmod-devel/distinfo
+3-3graphics/nvidia-drm-66-kmod-devel/distinfo
+3-3graphics/nvidia-drm-612-kmod-devel/distinfo
+3-3graphics/nvidia-drm-61-kmod-devel/distinfo
+18-1810 files not shown
+30-3016 files

FreeBSD/ports 11c3b27graphics/nvidia-drm-66-kmod distinfo, graphics/nvidia-drm-latest-kmod distinfo

x11/nvidia-driver, x11/nvidia-kmod, x11/linux-nvidia-libs, graphics/nvidia-drm*-kmod, x11/nvidia-settings, x11/nvidia-xconfig: Update to 595.91.07

Update to latest Production Branch of drivers 595.91.07:
https://www.nvidia.com/en-us/drivers/details/277702/

Linux counterparts for x11/linux-nvidia-libs:
https://www.nvidia.com/en-us/drivers/details/277699/

PR:             297265
Differential Revision:  https://reviews.freebsd.org/D58639
DeltaFile
+3-3x11/nvidia-xconfig/distinfo
+3-3x11/nvidia-settings/distinfo
+3-3x11/nvidia-driver/distinfo
+3-3x11/linux-nvidia-libs/distinfo
+3-3graphics/nvidia-drm-latest-kmod/distinfo
+3-3graphics/nvidia-drm-66-kmod/distinfo
+18-1811 files not shown
+35-3517 files

LLVM/project 958a9bbclang/include/clang/Basic arm_neon.td arm_immcheck_incl.td, clang/lib/Sema SemaARM.cpp

[Clang][ARM] Fix immediate range for NEON widening left-shifts (#212459)

The ACLE specifies the C intrinsic 'vshll_n to have a valid immediate
range size of [0..eltsize] but it has a range of [0..((eltsize*2) - 1)].
Update the range check to match the specified behavior

---------

Co-authored-by: Lukacma <Marian.Lukac at arm.com>
DeltaFile
+217-18llvm/test/CodeGen/AArch64/neon-shift-left-long.ll
+22-21clang/include/clang/Basic/arm_immcheck_incl.td
+25-18clang/test/Sema/aarch64-neon-immediate-ranges/vector-shift-left.c
+5-6clang/include/clang/Basic/arm_neon.td
+4-0clang/lib/Sema/SemaARM.cpp
+273-635 files

LLVM/project d4ca2e5llvm/lib/Target/SPIRV SPIRVPostLegalizer.cpp, llvm/test/CodeGen/SPIRV/hlsl-intrinsics atan2_mat.ll

[SPIR-V] Preserve float types through wide float shuffles and atan2 legalization (#213785)

fixes https://github.com/llvm/llvm-project/issues/213783

Propagate result types through G_SHUFFLE_VECTOR and G_FATAN2 during
post-legalizer type deduction. This prevents wide float vectors from
producing integer-typed OpCompositeExtract instructions.

Add generic float shuffle and wide atan2 regression coverage.

assisted by Copilot (GPT-5.6-Sol)
DeltaFile
+17-0llvm/test/CodeGen/SPIRV/legalization/vector-legalization-shader.ll
+9-5llvm/test/CodeGen/SPIRV/hlsl-intrinsics/atan2_mat.ll
+2-0llvm/lib/Target/SPIRV/SPIRVPostLegalizer.cpp
+28-53 files

LLVM/project 3d1a37fllvm/lib/Target/X86/MCTargetDesc X86InstComments.cpp, llvm/test/MC/X86 symbolic-fpclass-imm.s

[X86] Don't assume the FPCLASS category mask is a literal (#213171)

`llvm-mc` asserts on a FPCLASS category mask given as a symbol:

```asm
vfpclassps $f0, %zmm1, %k1
```
```
Assertion failed: isImm() && "This is not an immediate", MCInst.h:85
```

`printFPCLASSComments` reads the last operand with `getImm()` without
checking it is one. The value is only known at link time, so there is no
category to describe; return early and print no comment.

Note this is a comment printer, so encoding is unaffected.
`--filetype=obj` already succeeds today and emits a placeholder
immediate plus an `R_X86_64_8` relocation, which is correct. The issues
describe this as producing a wrong encoding in release builds, which I

    [7 lines not shown]
DeltaFile
+19-0llvm/test/MC/X86/symbolic-fpclass-imm.s
+5-0llvm/lib/Target/X86/MCTargetDesc/X86InstComments.cpp
+24-02 files

LLVM/project e5cd456flang/include/flang/Optimizer/Transforms Passes.td, flang/test/Transforms vscale-attr.fir

[flang] Add LLVM dialect dependency to VScaleAttr (#213931)

`VScaleAttr` creates an LLVM `VScaleRangeAttr`, but did not declare the
LLVM dialect as a pass dependency. This aborts when the input does not
otherwise load LLVM.

Declare the dependency and remove the unused FIR-typed argument from the
existing test. Parsing `!fir.ref` loads `FIROpsDialect`, which loads
`LLVMDialect` as a dependency and previously masked the missing pass
dependency.

Signed-off-by: Keshav Vinayak Jha <keshavvinayakjha at gmail.com>
DeltaFile
+1-1flang/test/Transforms/vscale-attr.fir
+1-0flang/include/flang/Optimizer/Transforms/Passes.td
+2-12 files

LLVM/project c1e828fllvm/test/Analysis/CostModel/AArch64 ctpop.ll ctlz.ll

[AArch64] Update cttz and ctlz cost model test. NFC (#213999)

This updates the tests to match ctpop, how we test other operations.
Some extra
type coverage and cssc is added.
DeltaFile
+66-200llvm/test/Analysis/CostModel/AArch64/cttz.ll
+61-196llvm/test/Analysis/CostModel/AArch64/ctlz.ll
+3-3llvm/test/Analysis/CostModel/AArch64/ctpop.ll
+130-3993 files

OpenBSD/ports xbAwcRUwayland Makefile

   + awww
VersionDeltaFile
1.40+1-0wayland/Makefile
+1-01 files

OpenBSD/ports tEKtVLNwayland/awww Makefile crates.inc, wayland/awww/patches patch-doc_gen_sh

   Initial revision
VersionDeltaFile
1.1+366-0wayland/awww/distinfo
1.1+182-0wayland/awww/crates.inc
1.1+48-0wayland/awww/Makefile
1.1+20-0wayland/awww/pkg/PLIST
1.1+17-0wayland/awww/patches/patch-doc_gen_sh
1.1+9-0wayland/awww/pkg/DESCR
+642-06 files not shown
+642-012 files

LLVM/project 3c0badfllvm/test/CodeGen/AMDGPU buffer-fat-pointer-atomicrmw-fmin.ll buffer-fat-pointer-atomicrmw-fadd.ll

Rebase

Created using spr 1.3.7
DeltaFile
+3,809-3,814llvm/test/CodeGen/AMDGPU/flat-atomicrmw-fmin.ll
+3,809-3,814llvm/test/CodeGen/AMDGPU/flat-atomicrmw-fmax.ll
+3,465-3,511llvm/test/CodeGen/AMDGPU/global-atomicrmw-fmin.ll
+3,465-3,511llvm/test/CodeGen/AMDGPU/global-atomicrmw-fmax.ll
+3,299-3,240llvm/test/CodeGen/AMDGPU/buffer-fat-pointer-atomicrmw-fadd.ll
+2,594-2,524llvm/test/CodeGen/AMDGPU/buffer-fat-pointer-atomicrmw-fmin.ll
+20,441-20,4142,485 files not shown
+154,056-90,0332,491 files

FreeBSD/ports 4e5eafdmail/courier-imap Makefile distinfo

mail/courier-imap: Update to 6.0.6
DeltaFile
+3-3mail/courier-imap/distinfo
+1-1mail/courier-imap/Makefile
+4-42 files

FreeBSD/ports 42c1c82security/courier-authlib Makefile distinfo

security/courier-authlib: Update to 0.73.2
DeltaFile
+3-3security/courier-authlib/distinfo
+1-1security/courier-authlib/Makefile
+4-42 files

FreeBSD/ports b277df3textproc/ripgrep Makefile Makefile.crates

textproc/ripgrep: Update 15.1.0 => 15.2.0

This release fixes a number of bugs related to gitignore matching as well as
some performance improvements in directory tree traversal.

While here, strip installed binary to satisfy stage-qa.

Changelog:
https://github.com/BurntSushi/ripgrep/releases/tag/15.2.0

PR:             297272
Reported by:    Petteri Valkonen <petteri.valkonen at iki.fi> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
MFH:            2026Q3

(cherry picked from commit 5ee5377e1506c9972bf0498f65d0c59d25fa0056)
DeltaFile
+65-69textproc/ripgrep/distinfo
+31-33textproc/ripgrep/Makefile.crates
+2-2textproc/ripgrep/Makefile
+98-1043 files

FreeBSD/ports 5ee5377textproc/ripgrep Makefile Makefile.crates

textproc/ripgrep: Update 15.1.0 => 15.2.0

This release fixes a number of bugs related to gitignore matching as well as
some performance improvements in directory tree traversal.

While here, strip installed binary to satisfy stage-qa.

Changelog:
https://github.com/BurntSushi/ripgrep/releases/tag/15.2.0

PR:             297272
Reported by:    Petteri Valkonen <petteri.valkonen at iki.fi> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
MFH:            2026Q3
DeltaFile
+65-69textproc/ripgrep/distinfo
+31-33textproc/ripgrep/Makefile.crates
+2-2textproc/ripgrep/Makefile
+98-1043 files

OpenBSD/ports 8sjTVvVlang/erlang/27 Makefile distinfo, lang/erlang/28 Makefile distinfo

   lang/erlang: Update to 27.3.4.16, 28.5.0.5 and 29.0.5
VersionDeltaFile
1.6+4-4lang/erlang/29/distinfo
1.21+4-4lang/erlang/28/distinfo
1.29+4-4lang/erlang/27/distinfo
1.25+3-4lang/erlang/28/Makefile
1.7+3-3lang/erlang/29/Makefile
1.35+3-3lang/erlang/27/Makefile
+21-226 files

LLVM/project 0160d12llvm/test/Transforms/SLPVectorizer/RISCV vec3-base.ll

[SLP][NFC]Remove undef mentions from test, NFC



Reviewers: 

Pull Request: https://github.com/llvm/llvm-project/pull/213992
DeltaFile
+2-2llvm/test/Transforms/SLPVectorizer/RISCV/vec3-base.ll
+2-21 files

OpenBSD/ports cfiMGtzwayland/mango Makefile distinfo, wayland/mango/patches patch-src_dispatch_bind_define_h

   wayland/mango: Update to 0.15.6
VersionDeltaFile
1.9+2-9wayland/mango/patches/patch-src_dispatch_bind_define_h
1.13+2-2wayland/mango/distinfo
1.14+1-1wayland/mango/Makefile
+5-123 files

OpenBSD/ports weoptANsysutils/chezmoi Makefile modules.inc

   sysutils/chezmoi: Update to 2.72.0
VersionDeltaFile
1.20+154-166sysutils/chezmoi/distinfo
1.21+46-50sysutils/chezmoi/modules.inc
1.23+1-1sysutils/chezmoi/Makefile
+201-2173 files

LLVM/project 32f3ae6clang/test/ClangScanDeps canonicalize-macros-multiarch.c

[Clang] Restrict ClangScanDeps darwin-specific test not to run in cross-compile (#213884)

The test added in 316a29603228c5d5000e0ddf8dfba2a494ac7ee9 fails when
run on MacOS but targeting Linux as a cross compiler.
DeltaFile
+1-1clang/test/ClangScanDeps/canonicalize-macros-multiarch.c
+1-11 files

OPNSense/src d7eefbesys/dev/igc if_igc.c

igc: stability improvements

Always disable PCIe ASPM for i226 type cards to improve stability and wire sysctl calls to iflib_request_reset instead of igc_if_init as this will stall the drivers RX path.
DeltaFile
+32-4sys/dev/igc/if_igc.c
+32-41 files

FreeBSD/ports 02f037cbenchmarks/hipercontracer pkg-plist Makefile

benchmarks/hipercontracer: Update 2.2.6 => 2.2.8

Changelog:
https://github.com/dreibh/hipercontracer/blob/hipercontracer-2.2.8/ChangeLog

Commit log:
https://github.com/dreibh/hipercontracer/compare/hipercontracer-2.2.6...hipercontracer-2.2.8

PR:             297270
Reported by:    Thomas Dreibholz <thomas.dreibholz at gmail.com> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+2-4benchmarks/hipercontracer/Makefile
+3-3benchmarks/hipercontracer/distinfo
+0-1benchmarks/hipercontracer/pkg-plist
+5-83 files

OPNSense/src ea5c302sys/dev/pci pcireg.h

pci: Add L1 PM definitions

Add register/bit definitions for the L1 PM substates capability
(PCIZ_L1PM) to pcireg.h.

Signed-off-by: Michael Adler <madler at tapil.com>
DeltaFile
+14-0sys/dev/pci/pcireg.h
+14-01 files

NetBSD/pkgsrc-wip 2dac8b4pharo-vm12 DESCR PLIST, pharo-vm12/patches patch-cmake_OpenBSD.cmake patch-src_unix_debugUnix.c

pharo-vm12: Add pharo-vm12-12.0.3-beta

This repository contains the code of the Pharo Virtual Machine. This
implementation started as a fork of OpenSmalltalk-VM. The current
project would not have been possible without all their previous work.

The current implementation has the following core features:

- an indirect threaded bytecode compiler using GNU extensions
- a generational scavenger garbage collector: a semi-space + nursery
  for the young generation, and a mark-compact collector for the old
  generation
- a space for permanent objects that do not need to be scanned by the
  GC
- a baseline JIT compiler that
  - translates primitive operations using IR templates
  - translates bytecode methods using a simple abstract interpretation
    approach to reduce memory pressure (fewer loads/stores)
- FFI through the well-known libFFI, and support for non-blocking FFI

    [3 lines not shown]
DeltaFile
+63-0pharo-vm12/Makefile
+52-0pharo-vm12/patches/patch-CMakeLists.txt
+50-0pharo-vm12/patches/patch-src_unix_debugUnix.c
+26-0pharo-vm12/patches/patch-cmake_OpenBSD.cmake
+23-0pharo-vm12/PLIST
+20-0pharo-vm12/DESCR
+234-09 files not shown
+342-015 files

NetBSD/pkgsrc-wip 8b96391klayout Makefile distinfo, klayout/patches patch-src_klayout.pri patch-src_tl_tl_tlTimer.cc

klayout: Update to 0.30.10

written patches for NetBSD, but have not tested it much.
DeltaFile
+56-0klayout/patches/patch-src_tl_tl_tlTimer.cc
+28-1klayout/PLIST
+16-0klayout/patches/patch-src_klayout.pri
+5-3klayout/distinfo
+1-1klayout/Makefile
+106-55 files

NetBSD/pkgsrc-wip 0f66179. Makefile, gmsh distinfo DESCR

gmsh: Add gmsh-4.15.2

Gmsh is an open source 3D finite element mesh generator with a
built-in CAD engine and post-processor. Its design goal is to provide
a fast, light and user-friendly meshing tool with parametric input and
flexible visualization capabilities. Gmsh is built around four modules
(geometry, mesh, solver and post-processing), which can be controlled
with the graphical user interface, from the command line, using text
files written in Gmsh's own scripting language (.geo files), or
through the C++, C, Python, Julia and Fortran application programming
interface.
DeltaFile
+413-0gmsh/PLIST
+24-0gmsh/Makefile
+9-0gmsh/DESCR
+5-0gmsh/distinfo
+1-0Makefile
+452-05 files

NetBSD/pkgsrc-wip 6f8f1c9kicad distinfo COMMIT_MSG, kicad-footprints PLIST

kicad-*: Update to 10.0.5

KiCad 10.0.5 (2026-07-22)

The 10.0.5 stable version contains critical bug fixes and other minor
improvements since the previous release.
A list of all of the fixed issues since the 10.0.5 release can be
found on the KiCad 10.0.5 milestone page.

KiCad 10.0.4 (2026-06-21)

The 10.0.4 stable version contains critical bug fixes and other minor
improvements since the previous release.
A list of all of the fixed issues since the 10.0.4 release can be
found on the KiCad 10.0.4 milestone page.
DeltaFile
+209-2kicad/patches/patch-thirdparty_thread-pool_bs__thread__pool.hpp
+18-4kicad-footprints/PLIST
+17-1kicad/COMMIT_MSG
+5-5kicad/distinfo
+7-0kicad-packages3d/PLIST
+3-3kicad-templates/distinfo
+259-1514 files not shown
+280-3520 files

OPNSense/src 3105bb0sys/dev/pci pcireg.h

pci: Add L1 PM definitions

Add register/bit definitions for the L1 PM substates capability
(PCIZ_L1PM) to pcireg.h.

Signed-off-by: Michael Adler <madler at tapil.com>
DeltaFile
+14-0sys/dev/pci/pcireg.h
+14-01 files

LLVM/project 8cd7452mlir/lib/Target/SPIRV/Deserialization Deserializer.cpp, mlir/lib/Target/SPIRV/Serialization Serializer.cpp

[mlir][SPIR-V] Handle Volatile decoration in (de)serialization (#212951)
DeltaFile
+7-0mlir/test/Target/SPIRV/decorations.mlir
+1-0mlir/lib/Target/SPIRV/Serialization/Serializer.cpp
+1-0mlir/lib/Target/SPIRV/Deserialization/Deserializer.cpp
+9-03 files