NetBSD/src xF9kHDwsys/arch/riscv/conf GENERIC64

   risc-v: add rgephy(4)

   Add rgephy(4) for Allwinner D1 / Mango Pi MQ-Pro
VersionDeltaFile
1.27+2-1sys/arch/riscv/conf/GENERIC64
+2-11 files

FreeBSD/ports 7ce2f25www/iocaine distinfo Makefile.crates, www/iocaine/files iocaine.in pkg-message.in

www/iocaine: Add new port

Iocaine is the deadliest poison known to AI since it poisons AI models
by generating an infinite maze of garbage for them to consume.
WWW: https://iocaine.madhouse-project.org

PR:             287944
Reported by:    Sebastian Oswald <sko at rostwald.de>
Co-authored-by: Paul Armstrong <freebsd at otoh.org>
Tested-by:      pi, void at f-m.fm, Mark Millard <marklmi26-fbsd at yahoo.com>
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+1,045-0www/iocaine/distinfo
+519-0www/iocaine/Makefile.crates
+79-0www/iocaine/Makefile
+61-0www/iocaine/files/iocaine.in
+21-0www/iocaine/files/pkg-message.in
+18-0www/iocaine/pkg-plist
+1,743-03 files not shown
+1,758-09 files

LLVM/project fb8243fllvm/lib/Target/RISCV RISCVInstrInfoXqci.td

[RISCV] Use append TableGen feature in RISCVInstrInfoXqci.td (#199603)

This improves the readability of the file.

An AI came up with the patch which I reviewed and ensured that the tests
pass.
DeltaFile
+28-28llvm/lib/Target/RISCV/RISCVInstrInfoXqci.td
+28-281 files

FreeBSD/ports 0b30442x11-fm/xfe distinfo Makefile

x11-fm/xfe: Update to 2.1.7
DeltaFile
+3-3x11-fm/xfe/distinfo
+1-1x11-fm/xfe/Makefile
+4-42 files

LLVM/project de188bbllvm/lib/MC CMakeLists.txt

[DirectX][ObjectYAML] Fix CI build issue in DXContainerInfo.cpp (#199605)

After https://github.com/llvm/llvm-project/pull/198222, the following
error was reported in CI bots:

```
[1546/5356] Building CXX object lib/MC/CMakeFiles/LLVMMC.dir/DXContainerInfo.cpp.o
FAILED: [code=1] lib/MC/CMakeFiles/LLVMMC.dir/DXContainerInfo.cpp.o
sccache /usr/bin/g++ -DLLVM_EXPORTS -D_DEBUG -D_GLIBCXX_ASSERTIONS -D_GLIBCXX_USE_CXX11_ABI=1 -D_GNU_SOURCE -D_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_EXTENSIVE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/home/runner/work/circt/circt/build/lib/MC -I/home/runner/work/circt/circt/llvm/llvm/lib/MC -I/home/runner/work/circt/circt/build/include -I/home/runner/work/circt/circt/llvm/llvm/include -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-dangling-reference -Wno-redundant-move -Wno-pessimizing-move -Wno-array-bounds -Wno-stringop-overread -Wno-dangling-pointer -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17 -fPIC -UNDEBUG -fno-exceptions -funwind-tables -fno-rtti -MD -MT lib/MC/CMakeFiles/LLVMMC.dir/DXContainerInfo.cpp.o -MF lib/MC/CMakeFiles/LLVMMC.dir/DXContainerInfo.cpp.o.d -o lib/MC/CMakeFiles/LLVMMC.dir/DXContainerInfo.cpp.o -c /home/runner/work/circt/circt/llvm/llvm/lib/MC/DXContainerInfo.cpp
/home/runner/work/circt/circt/llvm/llvm/lib/MC/DXContainerInfo.cpp:14:10: fatal error: llvm/Support/VCSRevision.h: No such file or directory
   14 | #include "llvm/Support/VCSRevision.h"
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
[1547/5356] Building CXX object lib/MC/CMakeFiles/LLVMMC.dir/ConstantPools.cpp.o
[1548/5356] Building CXX object lib/MC/CMakeFiles/LLVMMC.dir/DXContainerRootSignature.cpp.o
[1549/5356] Building CXX object lib/MC/CMakeFiles/LLVMMC.dir/DXContainerPSVInfo.cpp.o
[1550/5356] Building CXX object lib/Bitcode/Reader/CMakeFiles/LLVMBitReader.dir/MetadataLoader.cpp.o
[1551/5356] Building CXX object lib/Bitcode/Reader/CMakeFiles/LLVMBitReader.dir/BitcodeReader.cpp.o
ninja: build stopped: subcommand failed.

    [2 lines not shown]
DeltaFile
+1-0llvm/lib/MC/CMakeLists.txt
+1-01 files

LLVM/project 44583ecmlir/lib/Dialect/X86/Transforms VectorContractToAMXDotProduct.cpp, mlir/lib/Dialect/X86/Utils X86Utils.cpp

[mlir][x86] Fix - multiple issues / F8 support for AMX dot-product lowering (#196984)

This patch fixes issues or support additional patterns for AMX
`dot-product` lowering.

1. Fix issue related to write-back to `C` matrix,
2. Supports additional lowering pattern where the cache tile sizes are:
32,32,32,
3. Online packing - loop peeling is now based on `step` size,
4. Extends support for `f8` lowering (`mx-fp8` lowering will be
supported after vector.contract has `mx` support).
DeltaFile
+514-7mlir/test/Dialect/X86/AMX/vector-contract-to-tiled-dp.mlir
+300-199mlir/lib/Dialect/X86/Transforms/VectorContractToAMXDotProduct.cpp
+3-3mlir/lib/Dialect/X86/Utils/X86Utils.cpp
+817-2093 files

LLVM/project fe3d6b0clang-tools-extra/clangd ProjectModules.cpp

[NFC] [clangd] [C++20] [Modules] Fix false duplicate module warning for equivalent paths (#199343)

When checking for multiple source files declaring the same module, the
comparison used raw string equality on file paths. This causes false
positives when the same file is represented by different but equivalent
path strings.

Use pathEqual(normalizePath(...), normalizePath(...)) instead to compare
canonical paths, consistent with how clangd handles path comparisons
elsewhere.
DeltaFile
+2-1clang-tools-extra/clangd/ProjectModules.cpp
+2-11 files

FreeBSD/ports 4287dbemisc/llama-cpp pkg-plist distinfo

misc/llama-cpp: update 9222 → 9331
DeltaFile
+9-1misc/llama-cpp/pkg-plist
+3-3misc/llama-cpp/distinfo
+1-1misc/llama-cpp/Makefile
+13-53 files

FreeBSD/ports 1f8a4admath/fricas pkg-plist distinfo

math/fricas: update 1.3.10 → 1.3.13
DeltaFile
+33-8math/fricas/pkg-plist
+3-3math/fricas/distinfo
+1-2math/fricas/Makefile
+37-133 files

FreeBSD/ports bb20d17audio/whisper.cpp Makefile, misc/ggml distinfo Makefile

misc/ggml: update 0.12.0 → 0.13.0
DeltaFile
+3-3misc/ggml/distinfo
+2-2misc/ggml/Makefile
+1-1audio/whisper.cpp/Makefile
+6-63 files

FreeBSD/ports 87d2ea0math/dbcsr Makefile pkg-plist, science/cp2k Makefile

math/dbcsr: update 2.8.0 → 2.9.1
DeltaFile
+5-3math/dbcsr/Makefile
+4-4math/dbcsr/pkg-plist
+3-3math/dbcsr/distinfo
+1-1science/cp2k/Makefile
+1-1science/latte/Makefile
+14-125 files

FreeBSD/ports cabc03dwww/cpp-httplib distinfo Makefile

www/cpp-httplib: update 0.45.1 → 0.46.0
DeltaFile
+3-3www/cpp-httplib/distinfo
+1-1www/cpp-httplib/Makefile
+4-42 files

FreeBSD/ports db7a2daaudio/whisper.cpp distinfo pkg-plist

audio/whisper.cpp: update 1.8.2-407 → 1.8.4
DeltaFile
+3-3audio/whisper.cpp/distinfo
+3-2audio/whisper.cpp/pkg-plist
+1-3audio/whisper.cpp/Makefile
+7-83 files

FreeBSD/ports 7776307science/abinit distinfo Makefile

science/abinit: update 10.6.7 → 10.8.1
DeltaFile
+3-3science/abinit/distinfo
+1-1science/abinit/Makefile
+4-42 files

FreeBSD/ports 9f85963devel/buf distinfo Makefile

devel/buf: update 1.69.0 → 1.70.0
DeltaFile
+5-5devel/buf/distinfo
+1-2devel/buf/Makefile
+6-72 files

FreeBSD/ports 21ad1aescience/sirius Makefile

science/sirius: Broken on 16
DeltaFile
+2-0science/sirius/Makefile
+2-01 files

FreeBSD/ports ad03fbcdevel/libcbor Makefile

devel/libcbor: Add make test
DeltaFile
+2-1devel/libcbor/Makefile
+2-11 files

LLVM/project 44d60bacompiler-rt/lib/sanitizer_common sanitizer_platform_limits_posix.h

sanitizer_common: Fix build on MIPS with _TIME_BITS=64 (#199590)

When we build sanitizer_common with -D_TIME_BITS=64, the assert of
struct_kernel_stat_sz fails due to the size of struct stat get different
size.
DeltaFile
+6-0compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
+6-01 files

LLVM/project 56674d6llvm/lib/Support UnicodeNameToCodepointGenerated.cpp, llvm/test/CodeGen/AArch64 bf16-v8-instructions.ll

Merge branch 'main' into users/el-ev/invalid_nul_constraint_diag
DeltaFile
+23,873-20,923llvm/lib/Support/UnicodeNameToCodepointGenerated.cpp
+8,633-8,584llvm/test/CodeGen/Thumb2/mve-clmul.ll
+12,365-0llvm/test/CodeGen/AMDGPU/llvm.amdgcn.av.load.b128.ll
+1,243-8,768llvm/test/CodeGen/X86/vector-replicaton-i1-mask.ll
+7,616-740llvm/test/CodeGen/AArch64/bf16-v8-instructions.ll
+8,195-0llvm/test/MC/AMDGPU/gfx13_asm_vop3.s
+61,925-39,0158,203 files not shown
+516,613-234,9208,209 files

NetBSD/pkgsrc-wip a1cf750rust195 Makefile distinfo, rust195/files gcc-wrap

Restore Rust-1.95: requested by he@
DeltaFile
+822-0rust195/Makefile
+215-0rust195/files/gcc-wrap
+188-0rust195/distinfo
+146-0rust195/cargo.mk
+128-0rust195/patches/patch-vendor_memchr-2.7.4_src_memchr.rs
+117-0rust195/options.mk
+1,616-085 files not shown
+4,404-091 files

LLVM/project d4550ccclang/lib/Sema OpenCLBuiltins.td, clang/test/SemaOpenCL intel-bfloat16-conversions-builtins.cl

[OpenCL] Add cl_intel_bfloat16_conversions builtins (#199422)

Add cl_intel_bfloat16_conversions declarations to OpenCLBuiltins.td
and cover the extension with a dedicated header-free SPIR test.

Specification:

https://registry.khronos.org/OpenCL/extensions/intel/cl_intel_bfloat16_conversions.html

Co-authored-by: Copilot
DeltaFile
+65-0clang/test/SemaOpenCL/intel-bfloat16-conversions-builtins.cl
+17-0clang/lib/Sema/OpenCLBuiltins.td
+82-02 files

LLVM/project cd27e2eclang/test/AST ast-dump-lambda-json.cpp ast-dump-template-json-win32-mangler-crash.cpp, lldb/tools/lldb-dap/extension package-lock.json

rebase

Created using spr 1.3.7
DeltaFile
+23,873-20,923llvm/lib/Support/UnicodeNameToCodepointGenerated.cpp
+12,365-0llvm/test/CodeGen/AMDGPU/llvm.amdgcn.av.load.b128.ll
+3,903-0llvm/test/CodeGen/NVPTX/machine-cse-predicate-inversion.ll
+2,504-1,285lldb/tools/lldb-dap/extension/package-lock.json
+0-3,387clang/test/AST/ast-dump-lambda-json.cpp
+7-3,217clang/test/AST/ast-dump-template-json-win32-mangler-crash.cpp
+42,652-28,8123,510 files not shown
+159,432-86,9803,516 files

LLVM/project a1d4f6aclang/test/AST ast-dump-lambda-json.cpp ast-dump-template-json-win32-mangler-crash.cpp, lldb/tools/lldb-dap/extension package-lock.json

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+23,873-20,923llvm/lib/Support/UnicodeNameToCodepointGenerated.cpp
+12,365-0llvm/test/CodeGen/AMDGPU/llvm.amdgcn.av.load.b128.ll
+3,903-0llvm/test/CodeGen/NVPTX/machine-cse-predicate-inversion.ll
+2,504-1,285lldb/tools/lldb-dap/extension/package-lock.json
+0-3,387clang/test/AST/ast-dump-lambda-json.cpp
+7-3,217clang/test/AST/ast-dump-template-json-win32-mangler-crash.cpp
+42,652-28,8123,510 files not shown
+159,432-86,9803,516 files

LLVM/project 9ebd3a0clang/test/AST ast-dump-lambda-json.cpp ast-dump-template-json-win32-mangler-crash.cpp, lldb/tools/lldb-dap/extension package-lock.json

rebase

Created using spr 1.3.7
DeltaFile
+23,873-20,923llvm/lib/Support/UnicodeNameToCodepointGenerated.cpp
+12,365-0llvm/test/CodeGen/AMDGPU/llvm.amdgcn.av.load.b128.ll
+3,903-0llvm/test/CodeGen/NVPTX/machine-cse-predicate-inversion.ll
+2,504-1,285lldb/tools/lldb-dap/extension/package-lock.json
+0-3,387clang/test/AST/ast-dump-lambda-json.cpp
+7-3,217clang/test/AST/ast-dump-template-json-win32-mangler-crash.cpp
+42,652-28,8123,510 files not shown
+159,432-86,9803,516 files

LLVM/project b293cf5clang/test/AST ast-dump-lambda-json.cpp ast-dump-template-json-win32-mangler-crash.cpp, lldb/tools/lldb-dap/extension package-lock.json

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+23,873-20,923llvm/lib/Support/UnicodeNameToCodepointGenerated.cpp
+12,365-0llvm/test/CodeGen/AMDGPU/llvm.amdgcn.av.load.b128.ll
+3,903-0llvm/test/CodeGen/NVPTX/machine-cse-predicate-inversion.ll
+2,504-1,285lldb/tools/lldb-dap/extension/package-lock.json
+0-3,387clang/test/AST/ast-dump-lambda-json.cpp
+7-3,217clang/test/AST/ast-dump-template-json-win32-mangler-crash.cpp
+42,652-28,8123,510 files not shown
+159,432-86,9803,516 files

FreeBSD/ports dad78feeditors/gobby Makefile

editors/gobby: Update WWW and MASTER_SITES

For MASTER_SITES, releases.0x539.de redirects directly to GitHub,
so we are downloading static source archive from GitHub now.
For WWW homepage, it's no longer alive, so replace it with up-to-date one.

Reported by:    repology
Approved by:    osa, vvd (Mentors, implicit)
MFH:            2026Q2

(cherry picked from commit bb4abd59743ea7ffcc040330bc77c5c0f0a07962)
DeltaFile
+3-2editors/gobby/Makefile
+3-21 files

FreeBSD/ports bb4abd5editors/gobby Makefile

editors/gobby: Update WWW and MASTER_SITES

For MASTER_SITES, releases.0x539.de redirects directly to GitHub,
so we are downloading static source archive from GitHub now.
For WWW homepage, it's no longer alive, so replace it with up-to-date one.

Reported by:    repology
Approved by:    osa, vvd (Mentors, implicit)
MFH:            2026Q2
DeltaFile
+3-2editors/gobby/Makefile
+3-21 files

NetBSD/pkgsrc 8juWKN5misc/py-tibs distinfo Makefile

   py-tibs: updated to 0.8.0

   0.8.0

   Backwardly incompatible changes

   * Renamed the constructor keyword from `endianness` to `byte_order` for
     `from_u`, `from_i` and `from_f`. The `Endianness` enum is unchanged.

   Added

   * Added the `MutableView` class. Views from `Mutibs` are now live mutable
     views, so interpreted writes through `m.le`, `m.lsb0`, selected fields, or
     explicit mutable views update the original `Mutibs`.
   * Added fixed-width write methods and settable interpretation properties:
     `write_u`, `write_i`, `write_f`, `write_bin`, `write_oct`, `write_hex` and
     `write_bytes`, plus settable `.u`, `.i`, `.f`, `.bin`, `.oct`, `.hex` and
     `.bytes` properties where mutation is supported.
   * Added labelled field helpers. `Tibs.field(a, b)` and `Mutibs.field(a, b)`

    [14 lines not shown]
VersionDeltaFile
1.2+4-4misc/py-tibs/distinfo
1.2+2-2misc/py-tibs/Makefile
+6-62 files

NetBSD/pkgsrc 486llTHdoc CHANGES-2026

   Updated net/qbittorrent, databases/redis
VersionDeltaFile
1.3282+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc 3iwfkOIdatabases/redis distinfo Makefile

   redis: updated to 8.8.0

   8.8.0

   Major changes compared to 8.6

   - New data structure: Array (@antirez)
   - Subkey notification for hash fields - field-level notifications
   - `INCREX`: a window counter rate limiter combining `INCR`, `INCRBY`, `INCRBYFLOAT`, bounds, and expiration (@raffertyyu + Redis team)
   - `XNACK`: a new streams command - allow consumers to explicitly release pending messages
   - `ZUNION`, `ZINTER`, `ZUNIONSTORE`, `ZINTERSTORE`: new `COUNT` aggregator
   - `JSON.SET`: new `FPHA` argument to specify the FP type for homogeneous FP arrays
   - `TS.RANGE`, `TS.REVRANGE`, `TS.MRANGE`, `TS.MREVRANGE`: multiple aggregators in a single command
   - `FT.HYBRID` `KNN` clause: new argument to request fewer candidates per shard
   - `FT.PROFILE` `HYBRID`: profiling support for `FT.HYBRID`
   - Performance improvements

   Binary distributions


    [21 lines not shown]
VersionDeltaFile
1.94+4-4databases/redis/distinfo
1.104+2-2databases/redis/Makefile
+6-62 files