FreeBSD/src 7d87c1blib/libproc Makefile, share/mk src.libnames.mk

libproc: link against libctf if MK_CTF != no instead of MK_CDDL != no

Logic prior to this change would incorrectly try linking when MK_CDDL != no,
instead of MK_CTF != no, which could result in the library and the tests being
broken if/when MK_CTF == no and MK_CDDL != no (an uncommon, but possible
combination with today's build knobs).

This change updates the conditional to correctly track the value of MK_CTF, which
in turn is properly toggled to no if/when MK_CDDL == no as it's a dependent build
knob.

This [niche] build bug has been present in FreeBSD since 2014.

MFC after:      1 week

(cherry picked from commit f2e6a8b9e50c7552037cb635f17b955ead84a813)
DeltaFile
+1-1share/mk/src.libnames.mk
+1-1lib/libproc/Makefile
+2-22 files

FreeBSD/src 46c155blibexec/rc/rc.d dumpon

rc.d/dumpon: minor hardening/tightening up

- Scope local variables properly to each function.
- Quote variables that should be treated as single words.
- Replace `${cmd}; if [ $? -eq 0 ]` with `if ${cmd}` for simplicity.

MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D57899

(cherry picked from commit fc186c24b1e72fa3eba91c166f7a554a5cea5828)
DeltaFile
+8-5libexec/rc/rc.d/dumpon
+8-51 files

FreeBSD/src b82d506libexec/rc/rc.d dumpon

rc.d/dumpon: minor hardening/tightening up

- Scope local variables properly to each function.
- Quote variables that should be treated as single words.
- Replace `${cmd}; if [ $? -eq 0 ]` with `if ${cmd}` for simplicity.

MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D57899

(cherry picked from commit fc186c24b1e72fa3eba91c166f7a554a5cea5828)
DeltaFile
+9-5libexec/rc/rc.d/dumpon
+9-51 files

FreeBSD/src bb0300csys/compat/linuxkpi/common/src linux_firmware.c

linux_firmware: reformat error print-out

This makes it easier to grep for the error message to better understand
the call stack when loading firmware modules fails.

Fix a cosmetic-only style(9) bug while here in the same function related
to another logging message.

MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D58380

(cherry picked from commit a594783bac906ecc4f6528d7d576215f85a21bda)
DeltaFile
+4-3sys/compat/linuxkpi/common/src/linux_firmware.c
+4-31 files

FreeBSD/src 49a0bf4sys/compat/linuxkpi/common/src linux_firmware.c

linux_firmware: reformat error print-out

This makes it easier to grep for the error message to better understand
the call stack when loading firmware modules fails.

Fix a cosmetic-only style(9) bug while here in the same function related
to another logging message.

MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D58380

(cherry picked from commit a594783bac906ecc4f6528d7d576215f85a21bda)
DeltaFile
+4-3sys/compat/linuxkpi/common/src/linux_firmware.c
+4-31 files

FreeBSD/src 8c0ae18lib/libc/tests/stdlib/libatexit libatexit.cc

[test] libatexit: leverage __{BEGIN,END}_DECLS

This change converts the longhand form of `extern "C" {` and its
corresponding `}` into `__BEGIN_DECLS` and `__END_DECLS`, respectively.

The new form is much easier to grep for and is a best practice to use in
the FreeBSD tree.

This is meant to be a non-functional change.

MFC after:      1 week

(cherry picked from commit bc81728c00b200297ac556974b5373c804077a17)
DeltaFile
+7-4lib/libc/tests/stdlib/libatexit/libatexit.cc
+7-41 files

FreeBSD/src 10d1f60lib/libc/tests/stdlib/libatexit libatexit.cc

[test] libatexit: leverage __{BEGIN,END}_DECLS

This change converts the longhand form of `extern "C" {` and its
corresponding `}` into `__BEGIN_DECLS` and `__END_DECLS`, respectively.

The new form is much easier to grep for and is a best practice to use in
the FreeBSD tree.

This is meant to be a non-functional change.

MFC after:      1 week

(cherry picked from commit bc81728c00b200297ac556974b5373c804077a17)
DeltaFile
+7-4lib/libc/tests/stdlib/libatexit/libatexit.cc
+7-41 files

FreeBSD/src 59ee4abshare/man/man9 cpuset.9

cpuset(9): correct markup

- Remove `\(em` from .Nm section as it's not valid mandoc markup.
- Remove the section from the .Nm directive (it's handled under the .Dt
  directive).

MFC after:      1 week
Reported by:    make manlint

(cherry picked from commit 5007a5d682d3737fe9b49c4cd69e04d025d209ec)
DeltaFile
+1-2share/man/man9/cpuset.9
+1-21 files

FreeBSD/src e892779share/man/man9 cpuset.9

cpuset(9): correct markup

- Remove `\(em` from .Nm section as it's not valid mandoc markup.
- Remove the section from the .Nm directive (it's handled under the .Dt
  directive).

MFC after:      1 week
Reported by:    make manlint

(cherry picked from commit 5007a5d682d3737fe9b49c4cd69e04d025d209ec)
DeltaFile
+1-2share/man/man9/cpuset.9
+1-21 files

FreeBSD/src fb60889share/man/man9 DB_COMMAND.9

DB_COMMAND(9): correct mdoc markup for .Nm entries

Add missing commas after .Nm entries.

MFC after:      1 week
Reported by:    make manlint

(cherry picked from commit b96a063f61001e60ac282eb3500e703c7c3faf9c)
DeltaFile
+2-2share/man/man9/DB_COMMAND.9
+2-21 files

FreeBSD/src afdf887share/man/man9 DB_COMMAND.9

DB_COMMAND(9): correct mdoc markup for .Nm entries

Add missing commas after .Nm entries.

MFC after:      1 week
Reported by:    make manlint

(cherry picked from commit b96a063f61001e60ac282eb3500e703c7c3faf9c)
DeltaFile
+2-2share/man/man9/DB_COMMAND.9
+2-21 files

FreeBSD/ports 1dfdd3dtextproc/xray Makefile.crates Makefile

textproc/xray: Update to 0.5.0
DeltaFile
+5-3textproc/xray/distinfo
+1-1textproc/xray/Makefile
+1-0textproc/xray/Makefile.crates
+7-43 files

FreeBSD/ports 51d7549textproc/xql Makefile distinfo

textproc/xql: Update to 1.12.0
DeltaFile
+5-5textproc/xql/distinfo
+1-2textproc/xql/Makefile
+6-72 files

FreeBSD/ports a7f1fb6textproc/xled Makefile distinfo

textproc/xled: Update to 0.12.2
DeltaFile
+3-3textproc/xled/distinfo
+1-1textproc/xled/Makefile
+4-42 files

FreeBSD/ports 565f8fbnet/croc Makefile distinfo

net/croc: Update to 11.4.0
DeltaFile
+5-5net/croc/distinfo
+1-2net/croc/Makefile
+6-72 files

FreeBSD/ports f1bd97bsysutils/intel-nvmupdate-i225-i226 pkg-plist Makefile, sysutils/intel-nvmupdate-i225-i226/files pkg-message.in source_manifest.txt

sysutils/intel-nvmupdate-i225-i226: New port

PR:             265714
DeltaFile
+102-0sysutils/intel-nvmupdate-i225-i226/files/nvmupdate.cfg
+80-0sysutils/intel-nvmupdate-i225-i226/files/README.FreeBSD
+76-0sysutils/intel-nvmupdate-i225-i226/Makefile
+52-0sysutils/intel-nvmupdate-i225-i226/files/source_manifest.txt
+45-0sysutils/intel-nvmupdate-i225-i226/files/pkg-message.in
+24-0sysutils/intel-nvmupdate-i225-i226/pkg-plist
+379-09 files not shown
+462-015 files

FreeBSD/ports a81d530sysutils/intel-nvmupdate-i210 pkg-descr distinfo, sysutils/intel-nvmupdate-i210/files nvmupdate-i210.in

sysutils/intel-nvmupdate-i210: Add new port
DeltaFile
+44-0sysutils/intel-nvmupdate-i210/Makefile
+30-0sysutils/intel-nvmupdate-i210/pkg-message
+13-0sysutils/intel-nvmupdate-i210/pkg-plist
+4-0sysutils/intel-nvmupdate-i210/files/nvmupdate-i210.in
+3-0sysutils/intel-nvmupdate-i210/pkg-descr
+3-0sysutils/intel-nvmupdate-i210/distinfo
+97-01 files not shown
+98-07 files

FreeBSD/ports e36527dmath/calc Makefile

math/calc: Fix packaging for @tiny flavor
DeltaFile
+1-1math/calc/Makefile
+1-11 files

FreeBSD/src a151a01contrib/netbsd-tests/lib/libc/c063 t_fchmodat.c t_mkfifoat.c

contrib/netbsd-tests: lib/libc/c063: sync with NetBSD

This change syncs the lib/libc/c063 NetBSD tests with FreeBSD. This does
two things:
- Addresses bogus tautologically true assertions flagged by clang and gcc
  with ATF 0.22+ [1].
- Brings in some new test coverage.

Obtained from:  NetBSD (date tag: `20260818UTC`)
MFC after:      2 weeks
1. https://github.com/freebsd/atf/pull/72

(cherry picked from commit 8109a5c0fba0d015354a69b40e6682d5e8c0f638)
DeltaFile
+89-59contrib/netbsd-tests/lib/libc/c063/t_utimensat.c
+69-4contrib/netbsd-tests/lib/libc/c063/t_faccessat.c
+29-2contrib/netbsd-tests/lib/libc/c063/t_mkfifoat.c
+11-6contrib/netbsd-tests/lib/libc/c063/t_fchmodat.c
+198-714 files

LLVM/project 2da9603clang-tools-extra/clang-tidy/cppcoreguidelines MissingStdForwardCheck.cpp, clang-tools-extra/docs ReleaseNotes.md

[clang-tidy] Handle auto&& in missing-std-forward (#220164)

Fixes #142660.

`cppcoreguidelines-missing-std-forward` did not diagnose unforwarded
`auto&&` parameters in C++20 abbreviated function templates, even though
equivalent explicitly declared `T&&` parameters were diagnosed.

Abbreviated function templates represent `auto` parameters using an
implicit `TemplateTypeParmDecl`. The existing
`hasDeclaration(templateTypeParmDecl())` matcher does not match this
implicit declaration when traversal ignores implicit nodes.

Remove the redundant declaration matcher so that these parameters are
handled by the existing template type parameter checks.

Add C++20 regression tests covering:
- unforwarded `auto&&`
- correctly forwarded `auto&&`
- `const auto&&`
- mixed `T&&` and `auto&&` parameters
DeltaFile
+24-0clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/missing-std-forward-cxx20.cpp
+1-3clang-tools-extra/clang-tidy/cppcoreguidelines/MissingStdForwardCheck.cpp
+4-0clang-tools-extra/docs/ReleaseNotes.md
+29-33 files

FreeBSD/src 7364167share/man/man9 alq.9

alq(9): add missing .Nm entry for ALQ(9)

MFC after:      1 week
Reported by:    make manlint

(cherry picked from commit 4fa245edc7ad426ebde7a316191b579e62fe795f)
DeltaFile
+1-0share/man/man9/alq.9
+1-01 files

FreeBSD/src 0d7fc3ashare/man/man9 alq.9

alq(9): add missing .Nm entry for ALQ(9)

MFC after:      1 week
Reported by:    make manlint

(cherry picked from commit 4fa245edc7ad426ebde7a316191b579e62fe795f)
DeltaFile
+1-0share/man/man9/alq.9
+1-01 files

FreeBSD/src b853bacshare/man/man9 acl.9

acl(9): fix typo (ACL_ACL -> ACL)

MFC after:      1 week

(cherry picked from commit 9fd963b0a149357b6fbc16ef0b999e6b487e513a)
DeltaFile
+1-1share/man/man9/acl.9
+1-11 files

FreeBSD/src 2ed7da9share/man/man9 acl.9

acl(9): fix typo (ACL_ACL -> ACL)

MFC after:      1 week

(cherry picked from commit 9fd963b0a149357b6fbc16ef0b999e6b487e513a)
DeltaFile
+1-1share/man/man9/acl.9
+1-11 files

FreeBSD/src 20b68f0share/man/man9 atomic.9

atomic(9): add missing .Nm entries

MFC after:      1 week
Reported by:    make manlint

(cherry picked from commit 8eced03c369a6f8aad0013604f790bafd4526848)
DeltaFile
+3-0share/man/man9/atomic.9
+3-01 files

FreeBSD/src b7a2b3dshare/man/man9 atomic.9

atomic(9): add missing .Nm entries

MFC after:      1 week
Reported by:    make manlint

(cherry picked from commit 8eced03c369a6f8aad0013604f790bafd4526848)
DeltaFile
+3-0share/man/man9/atomic.9
+3-01 files

LLVM/project 89ebea3libcxx/include/__algorithm pstl.h, libcxx/include/__pstl/backends serial.h

[libc++][pstl] Implementation of parallel std::is_heap_until() based on __parallel_find() (#218603)

This PR adds an implementation of a parallel `std::is_heap_until()`
based on `__parallel_find()`.

The implementation chops the input range `[first+1, last)` into
partitions and processes them in parallel.
For each partition, it derives the first and the last parents of these
children, and iterates over the parents checking their children for heap
violations.
Basically, it's very close to the implementation of the serial version,
but with a different prologue and epilogue.

Part of #99938.

---------

Co-authored-by: Louis Dionne <ldionne.2 at gmail.com>
DeltaFile
+1,068-0libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/pstl.is_heap_until_comp.pass.cpp
+1,064-0libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/pstl.is_heap_until.pass.cpp
+102-0libcxx/include/__pstl/cpu_algos/is_heap_until.h
+25-0libcxx/include/__algorithm/pstl.h
+12-0libcxx/test/std/algorithms/pstl.exception_handling.pass.cpp
+10-0libcxx/include/__pstl/backends/serial.h
+2,281-08 files not shown
+2,319-014 files

NetBSD/pkgsrc g93ZyyMdoc CHANGES-2026

   Updated devel/py-joblib, devel/py-anyio
VersionDeltaFile
1.5817+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc ZdcAGEcdevel/py-anyio distinfo Makefile

   py-anyio: updated to 4.15.0

   4.15.0

   - Added support for the newer keyword-only arguments on ``anyio.Path`` methods to match
     the standard library ``pathlib.Path``:

     * ``follow_symlinks`` on ``exists()`` (Python 3.12+)
     * ``follow_symlinks`` on ``is_dir()`` (Python 3.13+)
     * ``follow_symlinks`` on ``is_file()`` (Python 3.13+)
     * ``follow_symlinks`` on ``owner()`` (Python 3.13+)
     * ``follow_symlinks`` on ``group()`` (Python 3.13+)
     * ``newline`` on ``read_text()`` (Python 3.13+)

   - Added ``amap``, ``gather``, and ``as_completed`` utility functions to simplify common
     patterns
   - Added ``--anyio-mode`` command-line option as an alternative to the ``anyio_mode``
     ini setting, and fix the pytest plugin's auto mode detection to recognize the mode
     when set via either mechanism(e.g: ``pytest_asyncio``).

    [73 lines not shown]
VersionDeltaFile
1.13+10-1devel/py-anyio/PLIST
1.34+4-4devel/py-anyio/distinfo
1.38+4-4devel/py-anyio/Makefile
+18-93 files

NetBSD/pkgsrc pcfibTddevel/py-joblib Makefile distinfo, devel/py-joblib/patches patch-joblib_externals_loky_backend_context.py

   py-joblib: updated to 1.6.0

   1.6.0

   Fix caching of functions whose source cannot be retrieved, such as functions defined in a notebook cell. Their identity fell back to str(hash(func.__code__)), which is salted by PYTHONHASHSEED and so differed between processes. A worker reading the func_code.py written by another one concluded that the function had changed and wiped the whole cache directory for it, discarding results computed by its peers. func_code.py is also no longer rewritten in place, so a reader can no longer catch it half-written and draw the same conclusion.
   Drop python 3.9 support. The oldest supported Python version is now Python 3.10.
   Fix eval_expr (used to evaluate the pre_dispatch argument of Parallel) to raise a ValueError as documented instead of leaking a ZeroDivisionError for expressions that divide or take a modulo by zero.
   MemorizedResult now forwards mmap_mode to its store backend, so a cached array reconstructed from a location is memory-mapped as requested instead of being loaded fully into memory.
   Unvendor cloudpickle to more quickly benefit from maintenance releases of cloudpickle
   Fix Memory.cache for functions with a keyword-only argument that has a default declared before a keyword-only argument without a default.
   Fix behavior of filter_args on some precise cases.
   Fix a concurrency error that could happen with unordered generator.
   Fix: dump() now accepts any input os.PathLike object to be consistent with load.
   The documentation now uses pydata sphinx theme. Furthermore, optional dependencies test and docs have been added to pyproject.toml.
   Vendor loky 3.6.0
VersionDeltaFile
1.3+29-26devel/py-joblib/patches/patch-joblib_externals_loky_backend_context.py
1.13+4-10devel/py-joblib/PLIST
1.25+5-5devel/py-joblib/distinfo
1.26+3-2devel/py-joblib/Makefile
+41-434 files