OPNSense/ports 2238512opnsense/installer Makefile distinfo

opnsense/installer: development version for 26.7
DeltaFile
+8-0opnsense/installer/Makefile
+3-1opnsense/installer/distinfo
+11-12 files

LLVM/project ff0e4f0llvm/lib/Target/AArch64 AArch64ISelLowering.cpp

[AArch64][NFC] Refactor duplicate code into getCmpOrCmnOperandFoldingProfit (#198981)
DeltaFile
+9-7llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+9-71 files

LLVM/project 64ad10fllvm/docs AMDGPUExecutionSynchronization.rst

[AMDGPU][doc] Refactor Barrier Execution Model (#204566)

Remove everything that has to do with named barriers and put it in a
series of model extensions specific to /sbarrier/named-barriers.

I had to change a few things to make it fit, in summary:

Base Model:

- (~) Stylistic changes that make it easier to refer to specific rules.
Each rule is in a rubric instead of a bullet point.
- (-) No longer defines `barrier-mutually-exclusive`
- (-) No longer defines barrier `join` and any associated rule.

New named barrier extensions

- (+) Define "named barrier" as a sub-type of barrier objects. This
makes barrier-mutually-exclusive redundant.
- (+) Define barrier join as an op that can exclusively be done on

    [17 lines not shown]
DeltaFile
+200-154llvm/docs/AMDGPUExecutionSynchronization.rst
+200-1541 files

LLVM/project 25e4057clang/include/clang/Options Options.td, clang/lib/Driver/ToolChains Clang.cpp

[clang] Respect `CLANG_USE_EXPERIMENTAL_CONST_INTERP` (#200716)

Seems like https://github.com/llvm/llvm-project/pull/199396 had no
effect at all, even though the patch itself seems pretty obvious.


Change the semantics of the command-line option to support
`-fno-experimental-constant-interpreter` as well. This way, the cmake
option can be used to set the default and the `-f`/`-fno-` command-line
options can be used to override the default behavior.
DeltaFile
+28-0clang/test/AST/ByteCode/command-line-options.cpp
+9-2clang/lib/Driver/ToolChains/Clang.cpp
+4-4clang/include/clang/Options/Options.td
+41-63 files

LLVM/project 057c1ceflang/lib/Lower PFTBuilder.cpp, flang/test/Lower do_loop_unstructured.f90 do_loop_execute_region_wrap.f90

[flang][PFT-to-MLIR] Wrap unstructured Fortran constructs in scf.execute_region

Extend the PFT-to-MLIR (HLFIR/FIR) lowering so unstructured DO and IF
constructs are emitted inside scf.execute_region, hiding their multi-block
CFG behind a single op. OpenACC and OpenMP lowerings that reject
multi-block content (e.g. the "unstructured do loop in combined acc
construct" TODO in OpenACC.cpp) now see a structured op instead.

Flag: -mmlir --wrap-unstructured-constructs-in-execute-region (default on).

An evaluation is wrappable iff all of the following hold:

  * wrap flag on
  * eval is parser::DoConstruct or parser::IfConstruct
  * eval.isUnstructured
  * branchesAreInternal(eval) -- every controlSuccessor in the subtree
    targets a nested eval or the constructExit
  * !hasIncomingBranch(eval) -- no outside eval branches into the body
    (PFT's synthetic IfConstruct around `if(c) goto X` absorbs label

    [14 lines not shown]
DeltaFile
+103-102flang/test/Lower/OpenMP/unstructured.f90
+199-2flang/lib/Lower/PFTBuilder.cpp
+115-24flang/test/Lower/OpenACC/acc-unstructured.f90
+38-87flang/test/Lower/do_loop_unstructured.f90
+111-0flang/test/Lower/do_loop_execute_region_wrap.f90
+47-61flang/test/Lower/mixed_loops.f90
+613-27621 files not shown
+958-43627 files

FreeBSD/ports 421c03echinese/libreoffice-zh_CN distinfo, chinese/libreoffice-zh_TW distinfo

editors/libreoffice: update to 26.2.4 release (+)

LibreOffice suite release of 26.2.4 is available for FreeBSD users.

Release notes:  https://wiki.documentfoundation.org/ReleaseNotes/26.2
Changelog:      https://wiki.documentfoundation.org/Releases/26.2.4/RC1 \
                https://wiki.documentfoundation.org/Releases/26.2.4/RC2
DeltaFile
+5-5editors/libreoffice-eu/distinfo
+5-5chinese/libreoffice-zh_CN/distinfo
+5-5chinese/libreoffice-zh_TW/distinfo
+5-5editors/libreoffice-cs/distinfo
+5-5editors/libreoffice-da/distinfo
+5-5editors/libreoffice-dsb/distinfo
+30-30115 files not shown
+495-495121 files

LLVM/project 6d66cc1orc-rt/include/orc-rt SimplePackedSerialization.h, orc-rt/unittests SimplePackedSerializationTest.cpp

[orc-rt] Add SPS serialization for ExecutorAddrRange. (#205041)

Allows SPS serialization to/from ExecutorAddrRange. This will be used in
upcoming patches for compact-unwind registration support.
DeltaFile
+20-0orc-rt/include/orc-rt/SimplePackedSerialization.h
+6-0orc-rt/unittests/SimplePackedSerializationTest.cpp
+26-02 files

FreeBSD/ports 2d4a2e9textproc/libvisio01 Makefile

textproc/libvisio01: update to 0.1.11 release (+)

libvisio 0.1.11:
* Memory safety fixes
DeltaFile
+1-1textproc/libvisio01/Makefile
+1-11 files

LLVM/project 34a3377flang/lib/Optimizer/Transforms FIRToMemRef.cpp, flang/test/Transforms/FIRToMemRef slice-projected.mlir

[FIR] Route embox + projected complex slice through shapeVec

When the array_coor base is a fir.embox with a projected complex %re/%im
slice, take the shapeVec path instead of the descriptor (fir.box_dims)
path. The descriptor path iterates source-rank dims while querying the
rank-reduced embox result box, which miscompiles slices that collapse
dims (e.g. complex(:,k)%re). For embox-derived boxes the underlying
storage is contiguous, so the shape-derived layout is both correct and
the natural place to encode that static shape is available. Non-embox
boxes (rebox, assumed-shape) still go through fir.box_dims.

Co-Authored-By: Claude Sonnet 4.6 <noreply at anthropic.com>
DeltaFile
+19-51flang/test/Transforms/FIRToMemRef/slice-projected.mlir
+2-13flang/lib/Optimizer/Transforms/FIRToMemRef.cpp
+21-642 files

LLVM/project 15a3238llvm/lib/Target/AArch64 AArch64ISelLowering.cpp, llvm/test/CodeGen/AArch64 extend-bool-vector-load.ll

[AArch64] Lower extends of boolean vector loads via scalar load (#203394)

Replace a `load <N x i1>` under a sext/zext with a scalar load +
bitcast, so the `combineToExtendBoolVectorInReg` helper can apply,
avoiding scalarization.

Optimisation for the SVE case with a predicate load to be added in a
follow up.

Fixes #200325
DeltaFile
+294-0llvm/test/CodeGen/AArch64/extend-bool-vector-load.ll
+47-0llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+341-02 files

FreeBSD/ports 59e654fdevel/libffi distinfo pkg-plist

devel/libffi: Update to 3.6.0
DeltaFile
+3-3devel/libffi/distinfo
+1-1devel/libffi/pkg-plist
+1-1devel/libffi/Makefile
+5-53 files

NetBSD/pkgsrc MR5MIubshells/oh-my-posh distinfo Makefile

   shells/oh-my-posh: update to 29.17.0

   v29.17.0
   Bug Fixes

       fish: use portable stty and fix cursor var assignment (fe6b0bd)
       git: update no_commits_icon default to Nerd Fonts v3 glyph (513f32e), closes #7554

   Features

       fish: support cursor positioning (a696a08)
       project: add Lean 4 lakefile project name detection (cb5300e)

   v29.16.0
   Features

       aws: expose all shared config settings via .Settings map (42f4772)
       spotify: switch Windows and WSL to SMTC-based detection (40ce7a3)
VersionDeltaFile
1.306+4-4shells/oh-my-posh/distinfo
1.337+2-2shells/oh-my-posh/Makefile
+6-62 files

NetBSD/pkgsrc siGDSGxdoc CHANGES-2026

   Updated multimedia/ffmpeg6, multimedia/ffplay6
VersionDeltaFile
1.3869+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc 26FMXK5doc TODO CHANGES-2026

   doc: Updated textproc/hck to 0.11.6
VersionDeltaFile
1.27433+1-2doc/TODO
1.3868+2-1doc/CHANGES-2026
+3-32 files

NetBSD/pkgsrc SAoUJ7Xmultimedia/ffmpeg6 distinfo Makefile.common

   ffmpeg6 ffplay6: updated to 6.1.6

   6.1.6:
   configure: do not use interval regexp operators with awk
   configure: fix symbol prefix detection
   configure: Disable linker warnings for common symbols
   avformat/av1dec: Check bits left before get_leb128()
   avformat/dhav: Check amount read
   avformat/mov: ensure required number of bytes is read
   avcodec/cbs_sei: Always zero-initialize SEI payload
   avformat/nuv: return early if header id fails to read
   avformat/mpegts: Don't use uninitialized value in av_log()
   avformat/hls: update current segment reference before use
   avcodec/parser: Reset *buf_size on realloc failure
   avfilter/af_stereotools: round-up max size of buffer
   avcodec/hevc/hevcdec: Clean sao_pixel_buffer_v on allocation
   avcodec/hevc/hevcdec: initialize qp_y_tab
   swscale/alphablend: don't overread alpha plane on subsampled odd size
   avformat/mov: fix crash when trying to get a fragment time for a non-existing fragment

    [96 lines not shown]
VersionDeltaFile
1.14+4-4multimedia/ffmpeg6/distinfo
1.17+2-2multimedia/ffmpeg6/Makefile.common
1.4+2-2multimedia/ffmpeg6/PLIST
+8-83 files

NetBSD/pkgsrc JObRKWStextproc/hck distinfo cargo-depends.mk

   textproc/hck: update to 0.11.6

   v0.11.6

    - chore from @0323pin, updates deps
VersionDeltaFile
1.12+277-223textproc/hck/distinfo
1.11+91-73textproc/hck/cargo-depends.mk
1.16+3-3textproc/hck/Makefile
+371-2993 files

NetBSD/pkgsrc RvkRgKWdoc CHANGES-2026

   Updated multimedia/ffmpeg7, multimedia/ffplay7
VersionDeltaFile
1.3867+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc G0PuTr3multimedia/ffmpeg7 distinfo PLIST

   ffmpeg7 ffplay7: updated to 7.1.5

   7.1.5:
   tests/checkasm/sw_rgb: don't write random data past the end of the buffer
   swscale/alphablend: don't overread alpha plane on subsampled odd size
   avcodec/vp8: Maintain consistency of frame pointers
   avcodec/jpeg2000dec: clear array length when freeing it
   av1dec: Don't crash if decoding of some frames have failed
   avcodec/tdsc: propagate max_pixels to the JPEG tile decoder
   avcodec/imm5: propagate max_pixels to the H264/HEVC sub-decoders
   avcodec/cri: propagate max_pixels to the JPEG tile decoder
   swscale: Fix out-of-bounds write errors in yuv2rgb_lasx.c file.
   update for 7.1.5
   avformat/mov: fix crash when stsz_sample_size is zero and sample_sizes is null
   avformat/dashdec: Fail with any inner stream count being 0
   swscale/x86/rgb_2_rgb: fix uyvytoyuv422 overwrite on odd width
   avcodec/snowenc: fix SIGFPE in get_dc() when a block lies outside the plane
   avcodec/snowenc: fix out-of-bounds OBMC read in get_dc() for narrow planes
   avcodec/snowenc: fix out-of-bounds memcpy in get_block_rd() for narrow planes

    [129 lines not shown]
VersionDeltaFile
1.9+4-4multimedia/ffmpeg7/distinfo
1.5+2-2multimedia/ffmpeg7/PLIST
1.17+2-2multimedia/ffmpeg7/Makefile.common
+8-83 files

FreeBSD/ports 74dba54mail/maildrop distinfo Makefile

mail/maildrop: Update to 4.0.1
DeltaFile
+3-3mail/maildrop/distinfo
+1-1mail/maildrop/Makefile
+4-42 files

LLVM/project 7b0d45bclang/include/clang/Basic AttrDocs.td, clang/test/CodeGen/AMDGPU amdgcn-av-none-attr-c-atomic.c

fix attr doc; add test that got left behind
DeltaFile
+72-0clang/test/CodeGen/AMDGPU/amdgcn-av-none-attr-c-atomic.c
+8-9clang/include/clang/Basic/AttrDocs.td
+80-92 files

FreeBSD/ports 654a7a0net/samba416 Makefile, net/samba416/files patch-source4_param_provision.c

net/samba416: Fix build with newer Python

PyEval_CallObjectWithKeywords() has been deprecated since Python 3.9 and
was removed in Python 3.13.  Add an upstream patch that replaces it with
PyObject_Call() and bump the upper Python version limit to 3.14.

Reviewed by:    kiwi
Differential Revision:  https://reviews.freebsd.org/D57713
DeltaFile
+48-0net/samba416/files/patch-source4_param_provision.c
+3-3net/samba416/Makefile
+51-32 files

OPNSense/plugins 43abff1net/frr Makefile, net/frr/src/opnsense/service/templates/OPNsense/Quagga ospf6d.conf

net/frr: sync with master
DeltaFile
+1-1net/frr/Makefile
+1-1net/frr/src/opnsense/service/templates/OPNsense/Quagga/ospf6d.conf
+2-22 files

OPNSense/plugins 82f6cc0net/frr Makefile

net/frr: bump
DeltaFile
+1-1net/frr/Makefile
+1-11 files

OPNSense/plugins 45e23ebnet/frr/src/opnsense/service/templates/OPNsense/Quagga ospf6d.conf

net/frr: Fix typo in ospf6d.conf prefix-list (ip -> ipv6)
DeltaFile
+1-1net/frr/src/opnsense/service/templates/OPNsense/Quagga/ospf6d.conf
+1-11 files

OpenBSD/src 3lRRVezsys/net if_vxlan.c

   Andrew Griffiths points out that the vxlan multicast nodes were being
   handled wrong.
   ok dlg
VersionDeltaFile
1.107+2-2sys/net/if_vxlan.c
+2-21 files

LLVM/project de045d5orc-rt/include/orc-rt SimplePackedSerialization.h

[orc-rt] Tidy up some SPS tag types. NFC. (#205038)

Replaces class definitions with decls for tag types that don't need a
body, and moves the SPSError tag down to just above it's
serialization-traits class.
DeltaFile
+5-5orc-rt/include/orc-rt/SimplePackedSerialization.h
+5-51 files

NetBSD/pkgsrc ATR4hr9multimedia/libaom Makefile

   Add patch to fix build on NetBSD/powerpc. Addresses PR pkg/60348.
VersionDeltaFile
1.42+2-1multimedia/libaom/Makefile
+2-11 files

OpenBSD/ports oYL8S4clang/wasi-sdk Makefile.inc, lang/wasi-sdk/compiler-rt distinfo

   lang/wasi-sdk: update to llvm 22.1.8
VersionDeltaFile
1.8+2-2lang/wasi-sdk/compiler-rt/distinfo
1.8+2-2lang/wasi-sdk/libcxx/distinfo
1.14+1-1lang/wasi-sdk/Makefile.inc
+5-53 files

FreeBSD/ports 37206fadevel/nextest distinfo Makefile

devel/nextest: update 0.9.137 → 0.9.138
DeltaFile
+23-23devel/nextest/distinfo
+11-12devel/nextest/Makefile
+34-352 files

FreeBSD/ports b91596asysutils/mise distinfo Makefile

sysutils/mise: update 2026.6.11 → 2026.6.12
DeltaFile
+5-5sysutils/mise/distinfo
+2-2sysutils/mise/Makefile
+7-72 files