LLVM/project b68b823llvm/lib/Target/Mips MipsInstrInfo.td, llvm/lib/Target/Mips/AsmParser MipsAsmParser.cpp

[Mips] Fix Clang crashes when assembling MIPS64r6 LDPC with non-8-byte-aligned offset (#204320)

Fix #184959.
DeltaFile
+4-1llvm/lib/Target/Mips/MipsInstrInfo.td
+3-0llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
+1-0llvm/test/MC/Mips/mips64r6/invalid.s
+8-13 files

FreeBSD/ports 8851f4fmath/octave-forge-datatypes distinfo Makefile

math/octave-forge-datatypes: Update to 1.2.5.
DeltaFile
+3-3math/octave-forge-datatypes/distinfo
+1-1math/octave-forge-datatypes/Makefile
+4-42 files

LLVM/project f571abaclang/include/clang/Basic riscv_sifive_vector.td, clang/test/CodeGen/RISCV/rvv-intrinsics-sifive/non-policy/non-overloaded sf_mm_e4m3_e4m3.c sf_mm_e4m3_e5m2.c

[llvm][RISCV] Revise xsfmm intrinsic interface. (#201527)

This patch does 2 things:
1. Change matmul interface to use newly defined OFP8 RVV types.
2. change all of matmul overloaded interfaces to only keep only widen
information and eliminate types information.
DeltaFile
+13-11clang/test/Sema/sifive-xsfmm.c
+7-6clang/include/clang/Basic/riscv_sifive_vector.td
+6-5clang/test/CodeGen/RISCV/rvv-intrinsics-sifive/non-policy/non-overloaded/sf_mm_e4m3_e4m3.c
+6-5clang/test/CodeGen/RISCV/rvv-intrinsics-sifive/non-policy/non-overloaded/sf_mm_e4m3_e5m2.c
+6-5clang/test/CodeGen/RISCV/rvv-intrinsics-sifive/non-policy/non-overloaded/sf_mm_e5m2_e4m3.c
+6-5clang/test/CodeGen/RISCV/rvv-intrinsics-sifive/non-policy/non-overloaded/sf_mm_e5m2_e5m2.c
+44-3712 files not shown
+95-6818 files

LLVM/project fc7bcd0clang/lib/CodeGen/Targets RISCV.cpp, clang/test/CodeGen/RISCV riscv-vector-callingconv-llvm-ir.c riscv-vector-callingconv-llvm-ir.cpp

[clang][RISCV] Handle VLS CC on unsupported primitive type in aggregate type (#203898)

We handled this for pure vector type before but missed the aggregate
types, this patch try to apply same mechanism on them where unsupported
vector types are converted to same size i8 vector types.
DeltaFile
+55-32clang/lib/CodeGen/Targets/RISCV.cpp
+23-0clang/test/CodeGen/RISCV/riscv-vector-callingconv-llvm-ir.c
+23-0clang/test/CodeGen/RISCV/riscv-vector-callingconv-llvm-ir.cpp
+101-323 files

OpenBSD/ports ZIkkqR6games/vegastrike/engine Makefile, games/vegastrike/engine/patches patch-CMakeLists_txt patch-src_gfx_aligned_h

   games/vegastrike: unbreak and migrate to Python 3
VersionDeltaFile
1.1+5,786-0games/vegastrike/utcs/pkg/PLIST
1.1+56-0games/vegastrike/engine/patches/patch-CMakeLists_txt
1.21+15-40games/vegastrike/engine/Makefile
1.1+50-0games/vegastrike/engine/patches/patch-src_gfx_aligned_h
1.1+38-0games/vegastrike/utcs/Makefile
1.4+10-25games/vegastrike/engine/patches/patch-src_cmd_unit_generic_cpp
+5,955-6551 files not shown
+6,043-12057 files

NetBSD/pkgsrc fK7YLizdoc CHANGES-2026

   doc: Updated comms/asterisk22 to 22.10.0
VersionDeltaFile
1.3854+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc kdpzUMMcomms/asterisk22 distinfo Makefile, comms/asterisk22/patches patch-build__tools_make__xml__documentation

   Update to asterisk 22.10.0:

   ## Change Log for Release asterisk-22.10.0

   ### Links:

    - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-22.10.0.html)
    - [GitHub Diff](https://github.com/asterisk/asterisk/compare/22.9.0...22.10.0)

   ### Summary:

   - Commits: 53
   - Commit Authors: 24
   - Issues Resolved: 43
   - Security Advisories Resolved: 0

   ### User Notes:

   - #### res ari: Add attachable states to Channels and Bridges

    [221 lines not shown]
VersionDeltaFile
1.10+14-14comms/asterisk22/distinfo
1.4+5-5comms/asterisk22/patches/patch-build__tools_make__xml__documentation
1.23+5-4comms/asterisk22/Makefile
1.9+6-1comms/asterisk22/PLIST
+30-244 files

FreeBSD/ports 872444a. MOVED, misc Makefile

misc/air: Removed because the upstream has disappeared
DeltaFile
+0-427misc/air/distinfo
+0-251misc/air/Makefile
+0-4misc/air/pkg-descr
+1-0MOVED
+0-1misc/Makefile
+1-6835 files

FreeBSD/ports 2f3da96. MOVED

MOVED: Correction
DeltaFile
+1-1MOVED
+1-11 files

LLVM/project 75fbd79lld/MachO ICF.cpp, lld/test/MachO icf-safe-data-addrsig.s

[lld-macho] Relax safe ICF's keepUnique for ld64-coalesced data sections (#193125)

#188400 regressed data-section folding under --icf=safe{,_thunks}:
no-addrsig fallback, and over-broad compiler-emitted addrsig entries
covering data symbols, both caused markSymAsAddrSig to set keepUnique on
data sections, after which foldIdenticalSections refused to fold them.

ld64 coalesces __cfstring, __objc_classrefs and __objc_selrefs
unconditionally regardless of addrsig, so ignore keepUnique for them as
a workaround for the imprecise addrsig payload.
DeltaFile
+105-0lld/test/MachO/icf-safe-data-addrsig.s
+22-11lld/MachO/ICF.cpp
+127-112 files

FreeBSD/ports 23e3e0adatabases Makefile, databases/py-apache-arrow pkg-plist Makefile

py-apache-arrow: Remove in favor of databases/py-pyarrow
DeltaFile
+0-878databases/py-apache-arrow/pkg-plist
+0-43databases/py-apache-arrow/Makefile
+0-11databases/py-apache-arrow/files/patch-pyproject.toml
+0-5databases/py-apache-arrow/pkg-descr
+0-3databases/py-apache-arrow/distinfo
+0-1databases/Makefile
+0-9411 files not shown
+1-9417 files

LLVM/project bc047d4orc-rt/include/orc-rt ScopeExit.h, orc-rt/lib/executor AllocAction.cpp

[orc-rt]R Align scope-exit with LLVM (rename to scope_exit, use CTAD) (#205020)

This renames the orc_rt::detail::ScopeExitRunner class to
orc_rt::scope_exit and adds a class template argument deduction guide.
DeltaFile
+9-19orc-rt/include/orc-rt/ScopeExit.h
+4-4orc-rt/unittests/ScopeExitTest.cpp
+1-1orc-rt/lib/executor/AllocAction.cpp
+14-243 files

NetBSD/src NPNr4Y7doc CHANGES, sys/dev/acpi acpi.c

   Hyper-V passes bootstrap entropy to guests via the ACPI OEM0 table.  Use it.

   We verify that the OEM0 table has the correct Microsoft IDs, skip the header,
   feed the remaining contents to the kernel entropy pool, and wipe them in-place
   to prevent later extraction via /dev/acpi (e.g. with acpidump).  This interface
   doesn't seem to be documented but we handle it the same way Microsoft's own
   Linux driver does.
VersionDeltaFile
1.305+30-3sys/dev/acpi/acpi.c
1.3275+3-1doc/CHANGES
+33-42 files

FreeBSD/ports 8016ca1devel/py-miniKanren Makefile

devel/py-miniKanren: Fix build, rename python module to camelcase

Reported by:    fallout
DeltaFile
+2-1devel/py-miniKanren/Makefile
+2-11 files

FreeBSD/ports c8ed6cadevel/py-pytest-mpl Makefile, devel/py-pytest-mpl/files patch-pyproject.toml

devel/py-pytest-mpl: Fix build

Reported by:    fallout
DeltaFile
+21-0devel/py-pytest-mpl/files/patch-pyproject.toml
+2-1devel/py-pytest-mpl/Makefile
+23-12 files

FreeBSD/ports b7da725net/k6 distinfo Makefile

net/k6: Update to 2.0.0

ChangeLog:
https://github.com/grafana/k6/releases/tag/v2.0.0
DeltaFile
+5-5net/k6/distinfo
+4-5net/k6/Makefile
+9-102 files

FreeBSD/ports 7ac81admath/lean4/files patch-stage0_src_runtime_object.cpp

math/lean4: Fix build on 16

Reported by:    fallout
DeltaFile
+15-0math/lean4/files/patch-stage0_src_runtime_object.cpp
+15-01 files

FreeBSD/ports fb65de0net/ipinfo-cli distinfo Makefile

net/ipinfo-cli: Update to 3.3.2

ChangeLog:
https://github.com/ipinfo/cli/releases/tag/ipinfo-3.3.2
DeltaFile
+5-5net/ipinfo-cli/distinfo
+2-3net/ipinfo-cli/Makefile
+7-82 files

NetBSD/pkgsrc VCgLXccdoc CHANGES-2026

   doc: freeze has ended for 2026Q2
VersionDeltaFile
1.3853+2-1doc/CHANGES-2026
+2-11 files

FreeBSD/ports 1492239net/nekobox distinfo Makefile

net/nekobox: update 5.11.22 → 5.11.23
DeltaFile
+3-3net/nekobox/distinfo
+1-1net/nekobox/Makefile
+4-42 files

FreeBSD/ports 9ed818acad/nvc Makefile distinfo

cad/nvc: update 1.21.0 → 1.21.1
DeltaFile
+3-3cad/nvc/Makefile
+3-3cad/nvc/distinfo
+6-62 files

NetBSD/pkgsrc jTYOHAQdoc CHANGES-pkgsrc-2026Q2 CHANGES-pkgsrc-2026Q2

   file CHANGES-pkgsrc-2026Q2 was initially added on branch pkgsrc-2026Q2.
VersionDeltaFile
1.1.2.1+3-0doc/CHANGES-pkgsrc-2026Q2
1.1+0-0doc/CHANGES-pkgsrc-2026Q2
+3-02 files

FreeBSD/src f4cd991sys/x86/x86 ucode.c

x86/ucode.c: supposedly fix i386 compilation

Fixes:      16f21c5af350 ("amd64: there is no reason to copy ucode around in ucode_load_bsp()")
PR:     295926
Submitted by:   Martin Birgmeier <d8zNeCFG at aon.at>
MFC after:      3 days
DeltaFile
+1-1sys/x86/x86/ucode.c
+1-11 files

FreeBSD/src 3ffd2basys/net if_fwsubr.c

if_fwsubr: remove ARP target hardware address trimming

Per RFC 2734 section 5, the 1394 ARP packet is a fixed 32-octet structure
with no target hardware address field.

Reviewed by:    adrian
Differential Revision:  https://reviews.freebsd.org/D57617
DeltaFile
+0-7sys/net/if_fwsubr.c
+0-71 files

FreeBSD/src 51f4e90sys/dev/firewire firewire.c

firewire: NULL check on malloc in fw_busreset()

fw_busreset() allocates newrom with M_NOWAIT from interrupt context.
If the allocation fails, crom_load() dereferences a NULL pointer.

Skip the config ROM comparison on allocation failure so the next bus
reset will retry.

Reviewed by:    adrian
Differential Revision:  https://reviews.freebsd.org/D57728
DeltaFile
+3-0sys/dev/firewire/firewire.c
+3-01 files

OpenBSD/src yHDcTRKsys/arch/amd64/include vmparam.h

   raise the size of amd64 kernel virtual address space from 4G to 512G

   This allows mapping all of VRAM on recent Radeon cards where the
   PCI BAR size is the full (> 4G) size.

   Reported by Petre Rodan, who has a Radeon RX 6800 with 16G of VRAM.

   feedback from claudio@ ok kettenis@
VersionDeltaFile
1.26+2-2sys/arch/amd64/include/vmparam.h
+2-21 files

LLVM/project 2e87cf8llvm/lib/CodeGen AtomicExpandPass.cpp, llvm/test/CodeGen/ARM atomic-load-store.ll

[AtomicExpand] Add bitcasts when expanding store atomic vector (#197862)

AtomicExpand fails for aligned `store atomic <n x T>` because it
does not find a compatible library call. This change adds appropriate
ptrtoint + bitcast so that the call can be lowered, mirroring the
load-side handling.

Store-side counterpart to #148900. Stacked on top of
https://github.com/llvm/llvm-project/pull/201566.
DeltaFile
+99-6llvm/test/CodeGen/X86/atomic-load-store.ll
+98-0llvm/test/Transforms/AtomicExpand/X86/expand-atomic-non-integer.ll
+49-0llvm/test/CodeGen/ARM/atomic-load-store.ll
+4-2llvm/lib/CodeGen/AtomicExpandPass.cpp
+250-84 files

Illumos/gate e0416ecusr/src/test/elf-tests/runfiles Makefile, usr/src/test/i2c-tests/runfiles Makefile

18165 Want checker for test runner files
Reviewed by: Toomas Soome <tsoome at me.com>
Reviewed by: Dan McDonald <danmcd at edgecast.io>
Reviewed by: Bill Sommerfeld <sommerfeld at hamachi.org>
Approved by: Robert Mustacchi <rm at fingolfin.org>
DeltaFile
+287-0usr/src/tools/scripts/check_test_runfiles.py
+5-1usr/src/test/elf-tests/runfiles/Makefile
+5-1usr/src/test/net-tests/runfiles/Makefile
+5-1usr/src/test/nvme-tests/runfiles/Makefile
+5-1usr/src/test/i2c-tests/runfiles/Makefile
+5-1usr/src/test/os-tests/runfiles/Makefile
+312-532 files not shown
+390-1738 files

FreeBSD/ports dc1e39emultimedia/libde265 Makefile distinfo

multimedia/libde265: Update 1.0.19 => 1.1.1

Changelogs:
https://github.com/strukturag/libde265/releases/tag/v1.1.0
https://github.com/strukturag/libde265/releases/tag/v1.1.1

- Replace CMAKE_ARGS with CMAKE_ON and CMAKE_OFF.

PR:             296194
Security:       CVE-2026-49295
Security:       CVE-2026-49337
Security:       CVE-2026-49346
Security:       CVE-2026-54240
Security:       CVE-2026-54241
Security:       GHSA-x27c-jp65-g395
Sponsored by:   UNIS Labs
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
MFH:            2026Q2

(cherry picked from commit 94cf33b62574cdc9624c789b8dc682d7ca5e5165)
DeltaFile
+4-4multimedia/libde265/Makefile
+3-3multimedia/libde265/distinfo
+1-1multimedia/libde265/pkg-plist
+8-83 files

FreeBSD/ports 68cfd78multimedia/libde265 Makefile pkg-plist, multimedia/libde265/files patch-libde265_configparam.h patch-configure.ac

multimedia/libde265: Update to 1.0.19, switch to cmake

(cherry picked from commit 54c66caafac728e4c599ac182f0198ae9d5c7bfc)
DeltaFile
+0-71multimedia/libde265/files/patch-libde265_configparam.h
+0-43multimedia/libde265/files/patch-configure.ac
+10-15multimedia/libde265/Makefile
+0-21multimedia/libde265/files/patch-libde265_encoder_Makefile.am
+0-16multimedia/libde265/files/patch-libde265_encoder_algo_Makefile.am
+4-7multimedia/libde265/pkg-plist
+14-1732 files not shown
+19-1788 files