NetBSD/pkgsrc 9lXRsPwdoc CHANGES-2026

   doc: Updated math/R-Deriv to 4.2.0
VersionDeltaFile
1.3769+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 13w64F4math/R-Deriv distinfo Makefile

   (math/R-Deriv) Updated 4.1.6 to 4.2.0

   Version 4.2.0
   =============

   * 2025-06-20
    - added `with()` construct
    - fixed as.integer() for big numbers in simplification of fractions (fixing issue #29)
VersionDeltaFile
1.2+4-4math/R-Deriv/distinfo
1.2+2-2math/R-Deriv/Makefile
+6-62 files

NetBSD/pkgsrc 0AzeHGIdoc CHANGES-2026

   doc: Updated math/R-DBI to 1.3.0
VersionDeltaFile
1.3768+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc hA6XzLPmath/R-DBI distinfo Makefile

   (math/R-DBI) Updated 1.2.3 to 1.3.0

   # DBI 1.3.0 (2026-02-11)

   ## Features

   - Add support for OpenTelemetry via the otel and otelsdk packages
     (@shikokuchuo, #551).

   ## Bug fixes

   - `dbWithTransaction()` calls `dbRollback()` also on interrupt
     (@klin333, #528).

   - `dbQuoteLiteral()` uses the format `"%Y-%m-%d %H:%M:%S%z"` which is
     understood by more databases (#486).

   ## Documentation


    [21 lines not shown]
VersionDeltaFile
1.15+4-4math/R-DBI/distinfo
1.14+2-2math/R-DBI/Makefile
+6-62 files

LLVM/project 2e472f5clang/include/clang/Basic DiagnosticSemaKinds.td, clang/lib/Sema SemaLifetimeSafety.h

helpful-destroyed-here
DeltaFile
+157-157clang/test/Sema/LifetimeSafety/safety.cpp
+44-44clang/test/Sema/LifetimeSafety/nocfg.cpp
+7-7clang/test/Sema/LifetimeSafety/annotation-suggestions.cpp
+2-2clang/test/Sema/LifetimeSafety/cfg-bailout.cpp
+2-1clang/lib/Sema/SemaLifetimeSafety.h
+1-1clang/include/clang/Basic/DiagnosticSemaKinds.td
+213-2126 files

LLVM/project b8e34c5clang/include/clang/Basic DiagnosticSemaKinds.td, clang/lib/Sema SemaLifetimeSafety.h

[LifetimeSafety] Improve diagnostic messages for invalidations (#203577)
DeltaFile
+74-74clang/test/Sema/LifetimeSafety/invalidations.cpp
+60-55clang/test/Sema/LifetimeSafety/safety.cpp
+39-25clang/test/Sema/LifetimeSafety/nocfg.cpp
+28-7clang/lib/Sema/SemaLifetimeSafety.h
+6-6clang/test/Sema/LifetimeSafety/annotation-suggestions.cpp
+4-4clang/include/clang/Basic/DiagnosticSemaKinds.td
+211-1716 files

NetBSD/pkgsrc QDvap2tdoc CHANGES-2026

   doc: Updated math/R-RNetCDF to 2.11.1
VersionDeltaFile
1.3767+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc nalyj7Omath/R-RNetCDF distinfo Makefile

   (math/R-RNetCDF) Updated 2.9.2 to 2.11.1

   Version 2.11-1, 2025-04-30
     * Do not use nc-config compiler by default
     * Use new R API functions for environments
     * Use config.h to simplify compiler flags
     * Call gc before opening datasets
       - This may avoid corruption or crashes if a dataset is changed
         unexpectedly when the garbage collector closes unreferenced ncids

   Version 2.10-2, 2025-04-15
     * Fix bashism in configure.ac

   Version 2.10-1, 2025-04-13
     * Detect and work around broken nc-config in configure script
       - Try static option with nc-config if linking fails without it
       - Use compiler from nc-config which may enable MPI
       - Try pkg-config if nc-config fails or is disabled
     * Prepare for upcoming change to bit64 package namespace
     * Remove call to non-API entry point in R
VersionDeltaFile
1.10+4-4math/R-RNetCDF/distinfo
1.38+2-3math/R-RNetCDF/Makefile
+6-72 files

LLVM/project b5a0aa7clang/include/clang/Basic DiagnosticSemaKinds.td, clang/lib/Sema SemaLifetimeSafety.h

helpful-destroyed-here
DeltaFile
+157-157clang/test/Sema/LifetimeSafety/safety.cpp
+44-44clang/test/Sema/LifetimeSafety/nocfg.cpp
+7-7clang/test/Sema/LifetimeSafety/annotation-suggestions.cpp
+2-2clang/test/Sema/LifetimeSafety/cfg-bailout.cpp
+2-1clang/lib/Sema/SemaLifetimeSafety.h
+1-1clang/include/clang/Basic/DiagnosticSemaKinds.td
+213-2126 files

LLVM/project 0579490llvm/include/llvm/IR Intrinsics.td Intrinsics.h, llvm/lib/IR Intrinsics.cpp

[NFC][LLVM] Refactor IIT_ANY payload for vector/element constraint (#203506)

Change `IIT_ANY` payload from a single packed OverloadIndex + AnyKind
byte to 2 bytes:
- An 8 bit OverloadIndex
- An 8 pit packed vector + element type constraint.
This will enable `IIT_ANY` to express constraints on the overload type
is a more general fashion compared to a flat `AnyKind` enum.

Also fixed a latent bug in fixed encodings generated by the intrinsic
emitter (exposed by this change). Existing `encodePacked` packs the
type-signature as 8 nibbles into a 32-bit word and then checks if the
MSB bit position (i.e., bit 15) is 0 (to allow it's use in fixed
encoding). This effectively drop any 0 valued bytes in the encoding in
the upper 4 nibbles. Fix this by changing `encodePacked` to use the
actual fixed encoding type and its size.
DeltaFile
+67-56llvm/include/llvm/IR/Intrinsics.td
+66-15llvm/lib/IR/Intrinsics.cpp
+42-26llvm/utils/TableGen/Basic/IntrinsicEmitter.cpp
+38-0llvm/test/TableGen/intrinsic-overload-index-oor.td
+15-12llvm/test/TableGen/intrinsic-struct.td
+13-9llvm/include/llvm/IR/Intrinsics.h
+241-1186 files

LLVM/project 7670d88flang/lib/Optimizer/Transforms/CUDA CUFDeviceFuncTransform.cpp, flang/test/Fir/CUDA cuda-device-func-transform.mlir

[flang][cuda] Set kernel intent(in) as const __restrict__ (#203652)

Set attributes on `intent(in)` so `ld.global.nc` is generated by the
backend.
DeltaFile
+38-0flang/lib/Optimizer/Transforms/CUDA/CUFDeviceFuncTransform.cpp
+16-2flang/test/Fir/CUDA/cuda-device-func-transform.mlir
+54-22 files

FreeBSD/src 4179f1dsys/fs/fuse fuse_vnops.c

fusefs: only search for FREAD fufh in readdir

The extra search for an FEXEC fufh shall be removed, since readdir
is only supposed to be called on a directory opened with FREAD.  The
sole exception is NFS, which will call VOP_READDIR with directories that
aren't open at all.  fuse already has special code to handle that.

Also remove the fuse_filehandle_get_dir() function, since it's not
used anywhere else.

Signed-off-by:  CismonX <admin at cismon.net>
Reviewed by:    asomers
MFC after:      2 weeks
Pull Request:   https://github.com/freebsd/freebsd-src/pull/1729
DeltaFile
+1-11sys/fs/fuse/fuse_vnops.c
+1-111 files

FreeBSD/ports eb17f70graphics/vulkan-validation-layers distinfo Makefile

graphics/vulkan-validation-layers: update to 1.4.354
DeltaFile
+5-5graphics/vulkan-validation-layers/distinfo
+3-4graphics/vulkan-validation-layers/Makefile
+8-92 files

FreeBSD/ports fd5a013graphics/vulkan-utility-libraries distinfo Makefile

graphics/vulkan-utility-libraries: update to 1.4.354
DeltaFile
+3-3graphics/vulkan-utility-libraries/distinfo
+2-2graphics/vulkan-utility-libraries/Makefile
+5-52 files

FreeBSD/ports f5a0e7egraphics/vulkan-tools distinfo Makefile

graphics/vulkan-tools: update to 1.4.354
DeltaFile
+3-3graphics/vulkan-tools/distinfo
+2-2graphics/vulkan-tools/Makefile
+5-52 files

FreeBSD/ports 66cd747graphics/vulkan-loader Makefile distinfo

graphics/vulkan-loader: update to 1.4.354
DeltaFile
+3-3graphics/vulkan-loader/Makefile
+3-3graphics/vulkan-loader/distinfo
+6-62 files

FreeBSD/ports 38c5900graphics/vulkan-headers distinfo Makefile

graphics/vulkan-headers: update to 1.4.354
DeltaFile
+3-3graphics/vulkan-headers/distinfo
+2-2graphics/vulkan-headers/Makefile
+5-52 files

NetBSD/pkgsrc ZuKgT9ydoc CHANGES-2026

   doc: Updated graphics/R-tkrplot to 0.0.32
VersionDeltaFile
1.3766+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc nIJlJxngraphics/R-tkrplot distinfo Makefile

   (graphics/R-tkrplot) Updated 0.0.27 to 0.0.32, ChangeLog, NEWS.rd unknown
VersionDeltaFile
1.2+4-4graphics/R-tkrplot/distinfo
1.4+2-3graphics/R-tkrplot/Makefile
+6-72 files

NetBSD/pkgsrc YkyvpOBdoc CHANGES-2026

   doc: Updated textproc/R-vroom to 1.7.1
VersionDeltaFile
1.3765+2-1doc/CHANGES-2026
+2-11 files

LLVM/project 1b58516clang/lib/Sema SemaLifetimeSafety.h, clang/test/Sema/LifetimeSafety safety.cpp nocfg.cpp

[LifetimeSafety] Improve aliasing notes to include callee name (#203606)
DeltaFile
+56-51clang/test/Sema/LifetimeSafety/safety.cpp
+39-25clang/test/Sema/LifetimeSafety/nocfg.cpp
+14-1clang/lib/Sema/SemaLifetimeSafety.h
+6-6clang/test/Sema/LifetimeSafety/annotation-suggestions.cpp
+115-834 files

LLVM/project f676da3clang/include/clang/Basic DiagnosticSemaKinds.td, clang/lib/Sema SemaLifetimeSafety.h

users/usx95/helpful-invalidations
DeltaFile
+74-74clang/test/Sema/LifetimeSafety/invalidations.cpp
+14-6clang/lib/Sema/SemaLifetimeSafety.h
+4-4clang/test/Sema/LifetimeSafety/safety.cpp
+4-4clang/include/clang/Basic/DiagnosticSemaKinds.td
+96-884 files

LLVM/project af60d56flang/lib/Semantics expression.cpp, flang/test/Semantics cuf28.cuf cuf-generic-literal-host.cuf

[flang][CUDA] Keep host literals from using unified-memory generic distance (#201257)

Fix CUDA generic resolution under `-gpu=mem:unified` so unattributed
literals and expression temporaries are not treated as unified-memory
actuals.

Previously, a host scalar literal such as `1.0` could score as
compatible with a `DEVICE` dummy and incorrectly select the
device-scalar overload. This could pass a host stack address to a device
helper and fail at runtime. The fix applies the unified/managed memory
distance columns only to symbol-backed actuals.
DeltaFile
+37-0flang/test/Semantics/cuf28.cuf
+34-0flang/test/Semantics/cuf-generic-literal-host.cuf
+15-2flang/lib/Semantics/expression.cpp
+86-23 files

LLVM/project 3203867llvm/test/CodeGen/AMDGPU fcanonicalize.ll maximumnum.ll, llvm/test/Transforms/LICM vector-insert.ll

Merge branch 'main' into users/usx95/06-12-users_usx95_helpful-invalidations
DeltaFile
+2,760-227llvm/test/CodeGen/AMDGPU/fcanonicalize.ll
+1,357-0llvm/test/CodeGen/AMDGPU/maximumnum.ll
+1,317-0llvm/test/CodeGen/AMDGPU/minimumnum.ll
+1,313-0llvm/test/CodeGen/AMDGPU/packed-u64.ll
+736-0llvm/test/CodeGen/AMDGPU/shl.v2i64.ll
+0-572llvm/test/Transforms/LICM/vector-insert.ll
+7,483-799172 files not shown
+14,680-2,140178 files

NetBSD/pkgsrc sST0BdOdoc CHANGES-2026

   doc: Updated www/R-RCurl to 1.98.1.19
VersionDeltaFile
1.3764+2-1doc/CHANGES-2026
+2-11 files

LLVM/project 04f1175clang/lib/Sema SemaLifetimeSafety.h, clang/test/Sema/LifetimeSafety safety.cpp nocfg.cpp

[LifetimeSafety] Improve aliasing notes to include callee name (#203606)
DeltaFile
+56-51clang/test/Sema/LifetimeSafety/safety.cpp
+39-25clang/test/Sema/LifetimeSafety/nocfg.cpp
+14-1clang/lib/Sema/SemaLifetimeSafety.h
+6-6clang/test/Sema/LifetimeSafety/annotation-suggestions.cpp
+115-834 files

NetBSD/pkgsrc IctGUxqwww/R-RCurl distinfo Makefile

   (www/R-RCurl) Updated 1.98.1.16 to 1.98.1.19 ChangeLog unknown, inst/doc/Changes.html is outdated
VersionDeltaFile
1.8+4-4www/R-RCurl/distinfo
1.24+2-3www/R-RCurl/Makefile
+6-72 files

NetBSD/pkgsrc aSLRUx9doc CHANGES-2026

   doc: Updated textproc/R-readr to 2.2.0
VersionDeltaFile
1.3763+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc uCZIjf8textproc/R-readr distinfo Makefile

   (textproc/R-readr) Updated 2.1.5 to 2.2.0

   # readr 2.2.0
   -------------
   This release advances many deprecations.

   * `melt_csv()`, `melt_csv2()`, `melt_delim()`, `melt_tsv()`,
     `melt_fwf()`, `melt_table()`, `melt_table2()`, and all
     `melt_*_chunked()` variants have been removed from readr. These
     functions were deprecated in readr 2.0.0 (2021-07-20). See the meltr
     package (https://github.com/r-lib/meltr).

   * `read_table2()` has been removed from readr. This function was
     deprecated in readr 2.0.0 (2021-07-20) in favor of
     `read_table()`. Use `read_table()` instead.

   * `read_csv()`, `read_csv2()`, `read_tsv()`, `read_delim()`, and
     `read_fwf()` now emit a deprecation warning when literal data is
     passed without wrapping it in `I()`. For example, usage like

    [41 lines not shown]
VersionDeltaFile
1.9+4-4textproc/R-readr/distinfo
1.10+2-3textproc/R-readr/Makefile
+6-72 files

LLVM/project 6b82a04flang/lib/Optimizer/Transforms/CUDA CUFOpConversion.cpp, flang/test/Fir/CUDA cuda-global-addr.mlir

[flang][cuda] Fix host loads from CUDA constant globals (#203064)

This fixes CUDA Fortran lowering for scalar module variables with the
constant attribute that are read from host code, such as launch
configuration expressions or CUF kernel loop bounds.

Previously, host-side declarations for these globals could be rewritten
to device constant-memory addresses, causing host loads to dereference
the result of _FortranACUFGetDeviceAddress. The fix preserves host reads
from the host-visible global while still using the device address for
host-to-device assignment updates.

A FIR regression test covers host reads and assignment updates for
scalar CUDA constant globals.
DeltaFile
+36-0flang/lib/Optimizer/Transforms/CUDA/CUFOpConversion.cpp
+25-0flang/test/Fir/CUDA/cuda-global-addr.mlir
+61-02 files