FreeBSD/src bcd9ea8sys/contrib/openzfs/include/os/freebsd/spl/sys cmn_err.h kmem.h, sys/contrib/openzfs/include/sys spa.h vdev.h

zfs: rename several printf attribute declarations to __printf__

For kernel builds, we redefine `__printf__` to `__freebsd_kprintf__`, to
support FreeBSD kernel printf(9) extensions with clang.

In OpenZFS various printf related functions are declared with
__attribute__((format(printf, X, Y))), so these won't work with the
above redefinition. With clang 21 and higher, this leads to errors
similar to:

    sys/contrib/openzfs/module/zfs/spa_misc.c:414:38: error: passing 'printf' format string where 'freebsd_kprintf' format string is expected [-Werror,-Wformat]
      414 |         (void) vsnprintf(buf, sizeof (buf), fmt, adx);
          |                                             ^

Since attribute names can always be spelled with leading and trailing
double underscores, rename these instances.

Note that in FreeBSD proper we usually use `__printflike` from
<sys/cdefs.h>, but that does not apply to OpenZFS.

    [4 lines not shown]
DeltaFile
+8-8sys/contrib/openzfs/include/os/freebsd/spl/sys/cmn_err.h
+2-2sys/contrib/openzfs/include/os/freebsd/spl/sys/kmem.h
+2-2sys/contrib/openzfs/include/sys/spa.h
+1-1sys/contrib/openzfs/include/sys/vdev.h
+1-1sys/contrib/openzfs/include/sys/zfs_debug.h
+14-145 files

FreeBSD/src 667259bcontrib/ncurses/progs infocmp.c

ncurses: avoid warnings about too-long initializer strings

Increase the size of `assoc::from` to 8 bytes, to avoid warnings from
clang 21 similar to:

    contrib/ncurses/progs/infocmp.c:702:10: error: initializer-string for character array is too long, array size is 4 but initializer has size 5 (including the null terminating character); did you mean to use the 'nonstring' attribute? [-Werror,-Wunterminated-string-initialization]
      702 |     DATA("\033[2J", "ED2"),     /* clear page */
          |          ^~~~~~~~~
    contrib/ncurses/progs/infocmp.c:716:10: error: initializer-string for character array is too long, array size is 4 but initializer has size 5 (including the null terminating character); did you mean to use the 'nonstring' attribute? [-Werror,-Wunterminated-string-initialization]
      716 |     DATA("\033[!p", "DECSTR"),  /* soft reset */
          |          ^~~~~~~~~

Reviewed by:    markj
Obtained from:  https://invisible-island.net/archives/ncurses/6.5/ncurses-6.5-20241207.patch.gz
MFC after:      3 days
Differential Revision: https://reviews.freebsd.org/D54371
DeltaFile
+1-1contrib/ncurses/progs/infocmp.c
+1-11 files

FreeBSD/src 710ec40sys/crypto/chacha20 chacha.c

crypto: avoid warnings about too-long initializer strings

Mark `sigma` and `tau` as `__non_string`, to avoid warnings from clang
21 similar to:

    sys/crypto/chacha20/chacha.c:53:31: error: initializer-string for character array is too long, array size is 16 but initializer has size 17 (including the null terminating character); did you mean to use the 'nonstring' attribute? [-Werror,-Wunterminated-string-initialization]
       53 | static const char sigma[16] = "expand 32-byte k";
          |                               ^~~~~~~~~~~~~~~~~~
    sys/crypto/chacha20/chacha.c:54:29: error: initializer-string for character array is too long, array size is 16 but initializer has size 17 (including the null terminating character); did you mean to use the 'nonstring' attribute? [-Werror,-Wunterminated-string-initialization]
       54 | static const char tau[16] = "expand 16-byte k";
          |                             ^~~~~~~~~~~~~~~~~~

MFC after:      3 days
Reviewed by:    markj
Differential Revision: https://reviews.freebsd.org/D54364
DeltaFile
+2-2sys/crypto/chacha20/chacha.c
+2-21 files

FreeBSD/doc 784d600website/content/en/status/report-2025-10-2025-12 freebsd-git-weekly.adoc

Status/2025Q4/freebsd-git-weekly.adoc: Add report

Pull Request:   https://github.com/freebsd/freebsd-doc/pull/590
DeltaFile
+15-0website/content/en/status/report-2025-10-2025-12/freebsd-git-weekly.adoc
+15-01 files

FreeBSD/doc efb4912website/content/en/status/report-2025-10-2025-12 mongodb80.adoc

Status/2025Q4/mongodb80.adoc: Add report

Pull Request:   https://github.com/freebsd/freebsd-doc/pull/587
DeltaFile
+25-0website/content/en/status/report-2025-10-2025-12/mongodb80.adoc
+25-01 files

FreeBSD/ports 5f1badcwww/py-django-solo Makefile distinfo

www/py-django-solo: Update to 2.4.0

* Switch to the PEP517 build framework.

Changelog since 2.2.0:

https://github.com/lazybird/django-solo/blob/2.4.0/CHANGES

PR:             291801
Approved by:    Ivan Rozhuk (maintainer)
DeltaFile
+13-5www/py-django-solo/Makefile
+3-3www/py-django-solo/distinfo
+16-82 files

FreeBSD/ports 92c2029www/py-django-sortedm2m Makefile distinfo

www/py-django-sortedm2m: Update to 4.0.0

* Switch to the PEP517 build framework.

* Use GitHub because no sdist tarballs are available at PyPI.

* Update WWW to point to new upstream repository.

Changelog:

https://github.com/jazzband/django-sortedm2m/releases/tag/4.0.0

PR:             291772
Approved by:    Kevin Golding (maintainer)
DeltaFile
+8-6www/py-django-sortedm2m/Makefile
+3-3www/py-django-sortedm2m/distinfo
+11-92 files

FreeBSD/ports 23c5a2bwww/py-django-polymorphic Makefile distinfo

www/py-django-polymorphic: Update to 4.3.0

* Switch to the PEP517 build framework.

Changelog since 3.1.0:

https://github.com/jazzband/django-polymorphic/releases/tag/v4.3.0

PR:             291770
Approved by:    Kevin Golding (maintainer)
DeltaFile
+5-4www/py-django-polymorphic/Makefile
+3-3www/py-django-polymorphic/distinfo
+8-72 files

FreeBSD/ports 21900d6www/py-django-photologue Makefile distinfo

www/py-django-photologue: Update to 3.18

* Switch to the PEP517 build framework.

* Update WWW to point to actual upstream repository.

Changelog:

https://github.com/richardbarran/django-photologue/blob/3.18/CHANGELOG.txt

PR:             291773
Approved by:    Kevin Golding (maintainer)
DeltaFile
+8-7www/py-django-photologue/Makefile
+3-3www/py-django-photologue/distinfo
+11-102 files

FreeBSD/ports 5021dbewww/py-django-registration Makefile distinfo

www/py-django-registration: Update to 5.2.1

Changelog since 3.4:

https://github.com/ubernostrum/django-registration/compare/3.4...5.2.1

PR:             291771
Approved by:    Kevin Golding (maintainer)
DeltaFile
+5-6www/py-django-registration/Makefile
+3-3www/py-django-registration/distinfo
+8-92 files

FreeBSD/ports 2fca6cewww/py-django-bleach Makefile

www/py-django-bleach: Deprecate/Set to expire

* Upstream has been archived in November 2024 because py-bleach is no
  longer supported.

PR:             291716
Approved by:    sunpoet (maintainer)
DeltaFile
+3-0www/py-django-bleach/Makefile
+3-01 files

FreeBSD/ports 0edf508www/py-django-tagging Makefile

www/py-django-tagging: Deprecate/Set to expire

* Upstream is inactive since 5+ years and is no compatibility with
  newer versions of Django.

* Although www/py-django42 will not reach its EoL until April, set the
  EXPIRATION_DATE accordingly at the end of 2026Q1 to get a clean cut
  with regard to the quarterly branch.

PR:             291714
Approved by:    Kevin Golding (maintainer)
DeltaFile
+3-0www/py-django-tagging/Makefile
+3-01 files

FreeBSD/ports b4ddf2fdeskutils/py-paperless Makefile

deskutils/py-paperless: Deprecate/Set to expire

* The upstream project has been archived in 2021 and there's no
  compatibility for Django 5+. Users are advised to migrate over to
  deskutils/py-paperless-ngx.

* Although www/py-django42 will not reach its EoL until April, set the
  EXPIRATION_DATE accordingly at the end of 2026Q1 to get a clean cut
  with regard to the quarterly branch.

PR:             291711
Approved by:    grembo (maintainer)
DeltaFile
+3-0deskutils/py-paperless/Makefile
+3-01 files

FreeBSD/ports 2657810www/py-django-star-ratings Makefile

www/py-django-star-ratings: Deprecate/Set to expire

* Upstream has been archived in May 2025.

PR:             291715
Approved by:    Kevin Golding (maintainer)
DeltaFile
+3-0www/py-django-star-ratings/Makefile
+3-01 files

FreeBSD/ports 264a6d2textproc/py-zensical distinfo Makefile.crates

textproc/py-zensical: Update to 0.0.15

Changelogs since 0.0.11:

https://github.com/zensical/zensical/releases/tag/v0.0.15
https://github.com/zensical/zensical/releases/tag/v0.0.14
https://github.com/zensical/zensical/releases/tag/v0.0.13
https://github.com/zensical/zensical/releases/tag/v0.0.12
DeltaFile
+93-93textproc/py-zensical/distinfo
+45-45textproc/py-zensical/Makefile.crates
+1-2textproc/py-zensical/Makefile
+139-1403 files

FreeBSD/ports 491d509www/py-django-cron Makefile

www/py-django-cron: Deprecate/Set to expire

* Upstream project is inactive since 3+ years and there's no
  compatibility for Django 5.2 or newer.

* Although www/py-django42 will not reach its EoL until April, set the
  EXPIRATION_DATE accordingly at the end of 2026Q1 to get a clean cut
  with regard to the quarterly branch.

PR:             291707
DeltaFile
+3-0www/py-django-cron/Makefile
+3-01 files

FreeBSD/ports 4351634www/py-django42 Makefile

www/py-django42: Deprecate/Set to expire

* Set a deprecation note and let it expire to the end of May to give
  enough time to switch all affected ports over to Django 5.2 which is
  the next LTS release.

  The plan is to make every consumer ready for Django 5.2 during 2026Q1
  and then switch everything to Django 5.2 after 2026Q2 has branched.

PR:             291707
With hat:       python
Differential Revision:  https://reviews.freebsd.org/D54248
DeltaFile
+3-0www/py-django42/Makefile
+3-01 files

FreeBSD/ports 6e69253x11/nfy distinfo Makefile

x11/nfy: Update to 0.3

Reviewed by:    arrowd
Differential Revision:  https://reviews.freebsd.org/D54404
DeltaFile
+3-3x11/nfy/distinfo
+2-2x11/nfy/Makefile
+5-52 files

FreeBSD/ports f99906aaudio/mumble-server distinfo Makefile

audio/mumble-server: Update 1.5.735 => 1.5.857

Changelog:
https://github.com/mumble-voip/mumble/releases/tag/v1.5.857
DeltaFile
+3-3audio/mumble-server/distinfo
+1-2audio/mumble-server/Makefile
+4-52 files

FreeBSD/ports 277b761audio/mumble distinfo Makefile

audio/mumble: Update 1.5.735 => 1.5.857

Changelog:
https://github.com/mumble-voip/mumble/releases/tag/v1.5.857
DeltaFile
+3-3audio/mumble/distinfo
+1-2audio/mumble/Makefile
+4-52 files

FreeBSD/ports 14f7c29Mk/Uses alias.mk, audio/alsa-plugins Makefile

*/*: De-orbit alias.mk

Mk/Uses/alias.mk was an attempt for compat with DPorts, but has rotted.
This feature was never documented in the PHB, so there is no work to
be done by the docs@ team.

Nothing against DragonFly, but if DPorts still needs FreeBSD 9
support, they really should work that out with upstream projects.

Ultimately, we don't need to keep carrying this outdated feature that
doesn't affect us.
DeltaFile
+0-28Mk/Uses/alias.mk
+2-1math/vtk9/Makefile
+1-1audio/alsa-plugins/Makefile
+1-1audio/csound/Makefile
+1-1audio/gramofile/Makefile
+1-1audio/p5-Net-FreeDB/Makefile
+6-3393 files not shown
+96-12899 files

FreeBSD/ports adb35b4sysutils/cdrdao Makefile distinfo, sysutils/cdrdao/files patch-dao_ScsiIf-freebsd-cam.cc patch-dao_cdrdao.man

sysutils/cdrdao: Update to 1.2.6

Remove USES=alias, which should be removed completely. This was a helper
for DragonFly, but it's horribly outdated.

https://github.com/cdrdao/cdrdao/releases/tag/rel_1_2_6
DeltaFile
+4-9sysutils/cdrdao/files/patch-dao_ScsiIf-freebsd-cam.cc
+4-6sysutils/cdrdao/Makefile
+4-4sysutils/cdrdao/files/patch-dao_cdrdao.man
+3-3sysutils/cdrdao/distinfo
+3-3sysutils/cdrdao/files/patch-configure.ac
+2-2sysutils/cdrdao/files/patch-dao_main.cc
+20-276 files

FreeBSD/ports 7caf3b1graphics/qt6-lottie/files patch-tools_lottietoqml_CMakeLists.txt

graphics/qt6-lottie: Fix configure edge case

If Qt5 is installed, it possible for it to be found instead of Qt6,
which causes configuration errors for the lottietoqml tool.

Reported by:    Holm Tiffe <holm at freibergnet.de> via kde-freebsd ML
DeltaFile
+15-0graphics/qt6-lottie/files/patch-tools_lottietoqml_CMakeLists.txt
+15-01 files

FreeBSD/doc 41e2d6fwebsite/content/en/status/report-2025-10-2025-12 openjdk.adoc

Status/2025Q4/openjdk.adoc: Add report

Pull Request:   https://github.com/freebsd/freebsd-doc/pull/585
DeltaFile
+46-0website/content/en/status/report-2025-10-2025-12/openjdk.adoc
+46-01 files

FreeBSD/doc 3bef153website/content/en/status/report-2025-10-2025-12 jdk21default.adoc

Status/2025Q4/jdk21default.adoc: Add report

Pull Request:   https://github.com/freebsd/freebsd-doc/pull/583
DeltaFile
+24-0website/content/en/status/report-2025-10-2025-12/jdk21default.adoc
+24-01 files

FreeBSD/doc a2a94edwebsite/content/en/status/report-2025-10-2025-12 openvox.adoc

Status/2025Q4/openvox.adoc: Add report

Pull Request:   https://github.com/freebsd/freebsd-doc/pull/579
DeltaFile
+34-0website/content/en/status/report-2025-10-2025-12/openvox.adoc
+34-01 files

FreeBSD/ports 920f1casysutils/stressdisk Makefile

sysutils/stressdisk: Deprecate and set expiration date on 2026-01-31

Dead upstream.
DeltaFile
+3-0sysutils/stressdisk/Makefile
+3-01 files

FreeBSD/ports 9870304devel/jenkins distinfo Makefile

devel/jenkins: Update to 2.544

Sponsored by:   The FreeBSD Foundation
DeltaFile
+3-3devel/jenkins/distinfo
+1-1devel/jenkins/Makefile
+4-42 files

FreeBSD/doc 5350f6awebsite/content/en/status/report-2025-10-2025-12 hpc-ports-modernization.adoc

Status/2025Q4/hpc-ports-modernization.adoc: Add report

Pull Request:   https://github.com/freebsd/freebsd-doc/pull/570
DeltaFile
+34-0website/content/en/status/report-2025-10-2025-12/hpc-ports-modernization.adoc
+34-01 files

FreeBSD/ports ef9dd91www/nextcloud-calendar distinfo Makefile

www/nextcloud-calendar: Update to 6.1.3
DeltaFile
+3-3www/nextcloud-calendar/distinfo
+1-1www/nextcloud-calendar/Makefile
+4-42 files