FreeBSD/src 3c6ea45usr.sbin/makefs/tests makefs_msdos_tests.sh

makefs: Fix atime tests on MS-DOS (FAT) file systems

On FAT file systems, access time has a resolution of 1 day, so it is
really the access date.

Strip the time component from the epoch timestamp in order to check the
access time.

Reference: https://learn.microsoft.com/en-us/windows/win32/sysinfo/file-times

Reviewed by:    ngie
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D54584

(cherry picked from commit 2916ae647303e3bd92e533002a8e6c476417fe7f)
DeltaFile
+10-6usr.sbin/makefs/tests/makefs_msdos_tests.sh
+10-61 files

FreeBSD/src 019d13dusr.sbin/makefs zfs.c makefs.8, usr.sbin/makefs/tests makefs_zfs_tests.sh

makefs: zfs: Allow the path vdev property to be set

This allows specifying custom vdev paths (such as GPT labels like
/dev/gpt/...) when creating ZFS filesystem images via makefs(8), rather
than defaulting to /dev/null.

Reviewed by:    markj
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D59031

(cherry picked from commit 5fece2484324be52737e4cea86658a4b8d3107fc)
DeltaFile
+45-0usr.sbin/makefs/tests/makefs_zfs_tests.sh
+21-17usr.sbin/makefs/makefs.8
+9-1usr.sbin/makefs/zfs.c
+1-0usr.sbin/makefs/zfs/zfs.h
+76-184 files

FreeBSD/ports b2cd5c7www/dezoomify-rs Makefile.crates Makefile

www/dezoomify-rs: Update to 2.19.0

ChangeLog:

https://github.com/lovasoa/dezoomify-rs/releases/tag/v2.19.0

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+3-7www/dezoomify-rs/distinfo
+0-2www/dezoomify-rs/Makefile.crates
+1-1www/dezoomify-rs/Makefile
+4-103 files

FreeBSD/ports 1f2283edevel/opencl distinfo Makefile

devel/opencl: Update 3.0.19 -> 3.1.1

Changelog:
- Add support for OCL_ICD_FILENAMES.
- Loader deinitialization/
- Updated for OpenCL 3.1.1.
https://github.com/KhronosGroup/OpenCL-Headers/releases/tag/v2026.05.29

Commit log:
https://github.com/KhronosGroup/OpenCL-Headers/compare/v2025.07.22...v2026.05.29

PR:             298028
Sponsored by:   UNIS Labs
DeltaFile
+5-5devel/opencl/distinfo
+5-5devel/opencl/Makefile
+10-102 files

LLVM/project dca45adllvm/lib/Transforms/Vectorize VPlanPatternMatch.h VPlanUtils.cpp, llvm/test/Transforms/LoopVectorize/VPlan/AArch64 vplan-memory-op-decisions.ll

[VPlan] Compute SCEV for SDiv with non-negative operands. (#219715)

If both operands of an SDiv are known non-negative, it is equivalent to
an UDiv, mirroring ScalarEvolution's handling in createSCEV.

Adds m_SDiv to VPlanPatternMatch.

Alive2 Proof: https://alive2.llvm.org/ce/z/NYa6Vd
DeltaFile
+8-0llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
+4-2llvm/test/Transforms/LoopVectorize/VPlan/AArch64/vplan-memory-op-decisions.ll
+6-0llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
+18-23 files

FreeBSD/ports fd6b7a4graphics/imlib2_loaders pkg-plist distinfo

graphics/imlib2_loaders: Update to 1.12.7

- Remove port options as it only installs XCF loader.
- Remove EEF support as it is broken since a long time upstream.

ChangeLog:
https://git.enlightenment.org/old/legacy-imlib2_loaders/src/branch/master/ChangeLog
DeltaFile
+4-16graphics/imlib2_loaders/Makefile
+3-3graphics/imlib2_loaders/distinfo
+0-2graphics/imlib2_loaders/pkg-plist
+7-213 files

FreeBSD/ports a8917bfgraphics/imlib2 Makefile distinfo

graphics/imlib2: Update to 1.12.7

ChangeLog:
https://git.enlightenment.org/old/legacy-imlib2/src/branch/master/ChangeLog
DeltaFile
+3-3graphics/imlib2/distinfo
+1-2graphics/imlib2/Makefile
+4-52 files

LLVM/project 1c67379llvm/test/Analysis/DependenceAnalysis AA.ll, llvm/test/Analysis/ScopedNoAliasAA basic2.ll basic-domains.ll

[LLVM][NFC] Make metadata-number checks robust (#219610)

These checks care about the metadata attached to an instruction or
reported in a diagnostic, not the incidental numeric slot assigned while
printing. Match metadata slot numbers with FileCheck patterns so
numbering changes do not require unrelated test updates.
DeltaFile
+18-18llvm/test/Transforms/LoopVectorize/VPlan/vplan-printing-metadata.ll
+12-12llvm/test/Analysis/TypeBasedAliasAnalysis/tbaa-path.ll
+12-12llvm/test/Analysis/ScopedNoAliasAA/basic2.ll
+12-12llvm/test/Analysis/ScopedNoAliasAA/basic-domains.ll
+10-10llvm/test/tools/llubi/metadata.ll
+9-9llvm/test/Analysis/DependenceAnalysis/AA.ll
+73-7344 files not shown
+197-19750 files

LLVM/project ec878ffllvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/lib/Transforms/Vectorize/SLPVectorizer SLPCompatibilityAnalysis.h SLPCompatibilityAnalysis.cpp

[SLP]Recognize interchangeable cmp predicates with boundary constants

Treat boundary comparisons canonicalized to eq/ne (e.g. x <u 1 became
x == 0) as interchangeable with the rest of the bundle by adjusting
the compared constant, emitting a single vector compare.

Fixes #190505

Reviewers: RKSimon, bababuck

Pull Request: https://github.com/llvm/llvm-project/pull/218237
DeltaFile
+186-0llvm/lib/Transforms/Vectorize/SLPVectorizer/SLPCompatibilityAnalysis.cpp
+24-54llvm/test/Transforms/SLPVectorizer/X86/interchangeable-cmp-predicates.ll
+51-4llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+53-0llvm/lib/Transforms/Vectorize/SLPVectorizer/SLPCompatibilityAnalysis.h
+314-584 files

FreeBSD/ports cd5f6e1net/rustconn pkg-plist Makefile

net/rustconn: Update to 0.21.1

ChangeLog:

- https://github.com/totoshko88/RustConn/releases/tag/v0.20.10
- https://github.com/totoshko88/RustConn/releases/tag/v0.21.0
- https://github.com/totoshko88/RustConn/releases/tag/v0.21.1

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+31-109net/rustconn/distinfo
+14-53net/rustconn/Makefile.crates
+1-1net/rustconn/pkg-plist
+1-1net/rustconn/Makefile
+47-1644 files

LLVM/project e3c18f1llvm/lib/Transforms/InstCombine InstCombineCasts.cpp, llvm/test/Transforms/InstCombine trunc.ll

[InstCombine] Preserve no-wrap flags in trunc (shl X, C) fold. (#219443)

Preserve flags when folding trunc (shl X, C) into shl (trunc X), C. If
both ops have NUW/NSW, they can be carried over to the new shl/trunc.

No major changes on llvm-opt-benchmark-nightly besides a number of
preserved flags and a few minor fold changes:
https://github.com/dtcxzyw/llvm-opt-benchmark-nightly/pull/1083

Alive2 Proof: https://alive2.llvm.org/ce/z/EYivzg

PR: https://github.com/llvm/llvm-project/pull/219443
DeltaFile
+91-0llvm/test/Transforms/InstCombine/trunc.ll
+14-3llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
+105-32 files

FreeBSD/ports ad35b7dgraphics/py-mcomix distinfo Makefile

graphics/py-mcomix: Update to 3.2.0

Add PDF option.

Changelog:
https://sourceforge.net/p/mcomix/news/2026/08/changelog---mcomix-320/

PR:             297984
Approved by:    Stefan Ehmann <shoesoft at gmx.net> (maintainer)
Approved by:    osa (mentor)
DeltaFile
+3-3graphics/py-mcomix/distinfo
+3-3graphics/py-mcomix/Makefile
+6-62 files

FreeBSD/ports 2acceacgraphics/gpxsee Makefile pkg-plist

graphics/gpxsee: Update to 16.14

Changelog: https://github.com/tumic0/GPXSee/releases/tag/16.14

PR:             298015
Approved by:    osa (mentor)
DeltaFile
+0-6graphics/gpxsee/pkg-plist
+3-3graphics/gpxsee/distinfo
+1-1graphics/gpxsee/Makefile
+4-103 files

FreeBSD/ports a00283ex11-fm/filerunner pkg-descr Makefile, x11-fm/filerunner/files pkg-message.in patch-Makefiles_INSTALL

x11-fm/filerunner: Take maintainership.

Add NO_ARCH=yes and pkg-message.
Use Makefiles/INSTALL.

PR:             291013
Approved by:    osa (mentor)
DeltaFile
+17-381x11-fm/filerunner/pkg-plist
+17-10x11-fm/filerunner/Makefile
+20-0x11-fm/filerunner/files/patch-Makefiles_INSTALL
+9-0x11-fm/filerunner/files/pkg-message.in
+3-1x11-fm/filerunner/pkg-descr
+66-3925 files

FreeBSD/ports bbe0b14net-im/openfire Makefile distinfo

net-im/openfire: Update 5.1.1 => 5.1.2

Changelog:
https://download.igniterealtime.org/openfire/docs/5.1.2/changelog.html

PR:             298043
Sponsored by:   UNIS Labs
DeltaFile
+33-33net-im/openfire/pkg-plist
+5-5net-im/openfire/distinfo
+1-1net-im/openfire/Makefile
+39-393 files

FreeBSD/ports 41177afmisc/far2l distinfo Makefile, misc/far2l/files patch-multiarc_src_formats_7z_C_CpuArch.h patch-arclite_src_7z_h_C_CpuArch.h

misc/far2l: update Far2L to version 2.9.0 (sooner not later)

- New experimental SDL GUI backend and various color themes
- AWS support using built-in custom S3 implementation based
  on libneon (no need for `devel/aws-sdk-cpp' port anymore)
- New plugins and FISH+ protocol support in NetRocks plugin
- CpuArch.h patches no longer apply (paths had changed), so
  convert them to sed(1) calls instead and amend CATEGORIES

Reported by:    portscout
DeltaFile
+68-2misc/far2l/pkg-plist
+17-12misc/far2l/Makefile
+0-10misc/far2l/files/patch-multiarc_src_formats_7z_C_CpuArch.h
+0-10misc/far2l/files/patch-arclite_src_7z_h_C_CpuArch.h
+3-3misc/far2l/distinfo
+88-375 files

LLVM/project f5fd158clang-tools-extra CMakeLists.txt, clang-tools-extra/clangd CMakeLists.txt

[clang-tools-extra] Add separate CLANG_TOOLS_EXTRA_INCLUDE_TESTS option (#215761)

clang-tools-extra tests depend on the llvm-bcanalyzer CMake target,
which exists in LLVM's CMake project but is not visible when Clang is
built separately from LLVM. This causes CMake errors when
CLANG_INCLUDE_TESTS is ON but the LLVM tools are not available.

This patch introduces CLANG_TOOLS_EXTRA_INCLUDE_TESTS as a separate
CMake option to control clang-tools-extra tests independently, allowing
users to build Clang with tests enabled (CLANG_INCLUDE_TESTS=ON) while
disabling clang-tools-extra tests (CLANG_TOOLS_EXTRA_INCLUDE_TESTS=OFF)
when building Clang separately from LLVM.

For backwards compatibility, CLANG_INCLUDE_TESTS=OFF continues
to turn off clang-tools-extra tests as well.
DeltaFile
+4-2clang-tools-extra/CMakeLists.txt
+1-1clang-tools-extra/include-cleaner/CMakeLists.txt
+1-1clang-tools-extra/clangd/CMakeLists.txt
+6-43 files

FreeBSD/src 70ca3c6share/man/man4 vge.4

vge.4: Canonicalize SYNOPSIS + Nit Nd quotes

MFC after:      3 days
DeltaFile
+14-13share/man/man4/vge.4
+14-131 files

NetBSD/pkgsrc 5kNXRKydoc CHANGES-2026

   doc: Updated sysutils/netbsd_exporter to 0.9.4nb1
VersionDeltaFile
1.5643+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc IBYxyA3sysutils/netbsd_exporter Makefile distinfo, sysutils/netbsd_exporter/patches patch-Makefile

   netbsd_exporter: honor CFLAGS and LDFLAGS.

   Bump PKGREVISION.
VersionDeltaFile
1.3+15-5sysutils/netbsd_exporter/patches/patch-Makefile
1.3+2-2sysutils/netbsd_exporter/distinfo
1.4+2-1sysutils/netbsd_exporter/Makefile
+19-83 files

FreeBSD/ports 4e55266multimedia/smpeg Makefile

multimedia/smpeg: remove unnecessary gtk dependency

- Bump PORTREVISION
- Other minor modifications

Reported by:    dizzy
DeltaFile
+2-4multimedia/smpeg/Makefile
+2-41 files

FreeBSD/src 70f0d78share/man/man4 viawd.4

viawd.4: Canonicalize SYNOPSIS + tag SPDX

MFC after:      3 days
DeltaFile
+6-12share/man/man4/viawd.4
+6-121 files

NetBSD/pkgsrc-wip 21307effsel distinfo Makefile, fsel/patches patch-Makefile

fsel: honor CFLAGS, LDFLAGS.

Mark as using c11.

Bump PKGREVISION.
DeltaFile
+15-0fsel/patches/patch-Makefile
+3-0fsel/Makefile
+1-0fsel/distinfo
+19-03 files

FreeBSD/src 400cc89share/man/man4 virtio_random.4

virtio_random.4: Canonicalize SYNOPSIS + AUTHORS

Also tag SPDX

MFC after:      3 days
DeltaFile
+8-16share/man/man4/virtio_random.4
+8-161 files

NetBSD/pkgsrc lyOfOy4editors/emacs30-nox11 buildlink3.mk, editors/emacs31-nox11 buildlink3.mk

   emacs3*-nox11: add buildlink3.mk

   Requested by Showta Ishizaki in PR 60667.
VersionDeltaFile
1.1+16-0editors/emacs31-nox11/buildlink3.mk
1.1+16-0editors/emacs30-nox11/buildlink3.mk
+32-02 files

FreeBSD/src 87909fdshare/man/man4 virtio_gpu.4

virtio_gpu.4: Canonicalize SYNOPSIS

MFC after:      3 days
DeltaFile
+1-6share/man/man4/virtio_gpu.4
+1-61 files

NetBSD/pkgsrc zquWNsdnet/knot distinfo Makefile, net/knot/patches patch-src_utils_knotc_interactive.c

   knot: Fix from upstream to properly compile on SunOS
VersionDeltaFile
1.1+23-0net/knot/patches/patch-src_utils_knotc_interactive.c
1.102+3-0net/knot/Makefile
1.56+1-0net/knot/distinfo
+27-03 files

LLVM/project 850cc26libc/src/__support/math CMakeLists.txt, libc/test/src/math/smoke fdimf128_test.cpp CMakeLists.txt

nits
DeltaFile
+1-1libc/test/src/math/smoke/fdimf128_test.cpp
+1-1libc/test/src/math/smoke/CMakeLists.txt
+1-1libc/src/__support/math/CMakeLists.txt
+3-33 files

FreeBSD/src d9cb19cshare/man/man4 virtio_console.4

virtio_console.4: Canonicalize SYNOPSIS + AUTHORS

Also tag SPDX.

MFC after:      3 days
DeltaFile
+9-17share/man/man4/virtio_console.4
+9-171 files

FreeBSD/src 937e641share/man/man4 virtio_balloon.4

virtio_balloon.4: Canonicalise SYNOPSIS + AUTHORS

Also tag SPDX.

MFC after:      3 days
DeltaFile
+9-14share/man/man4/virtio_balloon.4
+9-141 files