FreeBSD/ports 8ceb4b4ports-mgmt/poudriere-dsh2dsh distinfo Makefile

ports-mgmt/poudriere-dsh2dsh: Update 3.4.99.20260216 => 3.4.99.20260219

Upstream changes:
  - testport: Fix deleting existing packages (regression from Sep 2025)
  - testport: Default to not forcing TRYBROKEN; require -T.
  - destroyfs: Cleanup tmpfs mountpoints. (such as image cleanup)
  - bulk shlib tracking: Don't consider base libprivate*.so as missing.
  - bulk shlib tracking: Remove the 'misses all libraries' case; always print a
    specific library that is missing.

PR:     293337
DeltaFile
+3-3ports-mgmt/poudriere-dsh2dsh/distinfo
+1-1ports-mgmt/poudriere-dsh2dsh/Makefile
+4-42 files

FreeBSD/src acbf749sys/dev/rge if_rge.c

rge: log silicon revision during attach

The initial import from OpenBSD contained chip revision printf() calls
commented out, as OpenBSD's bare printf() style does not translate to
FreeBSD's device_printf() idiom. The result is that users cannot
distinguish RTL8125 from RTL8125B, RTL8125D_1, RTL8125D_2 etc. via
dmesg alone, even though all variants show as '<RTL8125>' from the PCI
probe string.

Add proper device_printf() calls including the raw hwrev value,
consistent with how re(4) reports chip revisions.

Signed-off-by: Christos Longros <chris.longros at gmail.com>

Reviewed by:    zlei, imp, adrian
Differential Revision:  https://reviews.freebsd.org/D55402
DeltaFile
+7-7sys/dev/rge/if_rge.c
+7-71 files

FreeBSD/src d1947d0sys/dev/rge if_rge.c

rge: correctly free busdma memory / zero things out only if allocated

* Only free busdma memory that was allocated
* Don't free tx/rx rings until their buffers have also been freed

PR:     kern/293307

Reviewed by:    zlei
Differential Revision:  https://reviews.freebsd.org/D55420
DeltaFile
+18-15sys/dev/rge/if_rge.c
+18-151 files

FreeBSD/src d5ca521sys/dev/rge if_rge.c

rge: fix callout setup/teardown; handle invalid ethernet address

* Do the callout init early; since some of the teardown path expects
  the callout to be valid

* Handle an invalid ethernet address by generating a local one.

PR:     kern/293307

Reviewed by:    zlei
Differential Revision:  https://reviews.freebsd.org/D55419
DeltaFile
+14-5sys/dev/rge/if_rge.c
+14-51 files

FreeBSD/src dc9a7b1sys/conf files

HYM8563: Add HYM563 RTC driver to common config.

MFC after:      3 weeks
DeltaFile
+1-0sys/conf/files
+1-01 files

FreeBSD/src 9de4313sys/dev/regulator regulator_fixed.c

regulator_fixed: add support for 'gpios' property

This is a newer version of the "gpio" property.

MFC after:      3 weeks
DeltaFile
+12-5sys/dev/regulator/regulator_fixed.c
+12-51 files

FreeBSD/src 92c66dcsys/dev/pci pci_dw.c pci_dw.h

pci_dw: improve pci_dw

Add support for 64-bit ranges.
Process 'bus-range' property.
Add some debug prints.

MFC after:      3 weeks
DeltaFile
+60-18sys/dev/pci/pci_dw.c
+3-0sys/dev/pci/pci_dw.h
+63-182 files

FreeBSD/src 2ade720sys/dev/iicbus/gpio tca64xx.c

TCA64xx: Convert mutex to SX lock.

I2C devices are permitted to sleep during transfers.

MFC after:      3 weeks
DeltaFile
+14-13sys/dev/iicbus/gpio/tca64xx.c
+14-131 files

FreeBSD/src 67fc0ffsys/modules/dtb/rockchip Makefile

dtb: generate .DTB for some RK3588 based boards.

MFC after:      3 weeks
DeltaFile
+4-1sys/modules/dtb/rockchip/Makefile
+4-11 files

FreeBSD/src 6b77d34sys/dev/iicbus/rtc hym8563.c

HYM8563: Add support for clock output.

The RTC contains a configurable clock output.

MFC after:      3 weeks
DeltaFile
+213-25sys/dev/iicbus/rtc/hym8563.c
+213-251 files

FreeBSD/src f40ed48sys/dev/fdt simple_mfd.c

fdt,simple_mfd: Map memory as shareable.

It may be submapped in child drivers.

MFC after:      3 weeks
DeltaFile
+1-1sys/dev/fdt/simple_mfd.c
+1-11 files

FreeBSD/src 4840558sys/dev/ofw ofw_cpu.c

OFW: Improve OFW_CPU.

Accept the assigned clock on the CPU node.
Don't report a missing "clock-frequency" property if the CPU node has
a "clocks" property.

MFC after:      3 weeks
DeltaFile
+10-1sys/dev/ofw/ofw_cpu.c
+10-11 files

FreeBSD/src c984c75sys/netinet tcp_subr.c

tcp: cleanup

No functional change intended.

Reviewed by:            pouria, rrs, Timo Völker
MFC after:              1 week
Sponsored by:           Netflix, Inc.
Differential Revision:  https://reviews.freebsd.org/D55415
DeltaFile
+12-12sys/netinet/tcp_subr.c
+12-121 files

FreeBSD/ports 3a7b48bwww/go-anubis pkg-plist Makefile

www/go-anubis: update to 1.25.0

- https://github.com/TecharoHQ/anubis/releases/tag/v1.25.0

PR: 293006
PR: 293365
Sponsored by:   SkunkWerks, GmbH
DeltaFile
+10-0www/go-anubis/pkg-plist
+3-5www/go-anubis/Makefile
+3-3www/go-anubis/distinfo
+16-83 files

FreeBSD/src 7755a40sys/fs/fuse fuse_vnops.c fuse_ipc.h

fusefs: remove the obsolete rename_lock

This lock was included in the original GSoC submission.  Its purpose
seems to have been to prevent concurrent FUSE_RENAME operations for the
current mountpoint, as well as to synchronize FUSE_RENAME with
fuse_vnode_setparent.  But it's obsolete, now that ef6ea91593e added
mnt_renamelock .

MFC after:      2 weeks
Sponsored by:   ConnectWise
Reviewed by:    kib
Differential Revision: https://reviews.freebsd.org/D55231
DeltaFile
+0-2sys/fs/fuse/fuse_vnops.c
+0-2sys/fs/fuse/fuse_ipc.h
+0-2sys/fs/fuse/fuse_ipc.c
+0-63 files

FreeBSD/ports 1834310graphics/cloudcompare Makefile

graphics/cloudcompare: Pet portclippy(1) and portfmt(1)

* Pet portclippy(1) and portfmt(1)

Approved by:        db@, yuri@ (Mentors, implicit)
DeltaFile
+32-32graphics/cloudcompare/Makefile
+32-321 files

FreeBSD/ports cac7f24databases/pg_auto_failover Makefile, databases/pg_auto_failover-devel Makefile pkg-descr

databases/pg_auto_failover-devel: new port: PG extension for automated failover and HA

WWW: https://pg-auto-failover.readthedocs.io
PR: 292994
DeltaFile
+76-0databases/pg_auto_failover-devel/files/pg_auto_failover.in
+32-0databases/pg_auto_failover-devel/Makefile
+26-0databases/pg_auto_failover-devel/pkg-descr
+15-0databases/pg_auto_failover-devel/pkg-plist
+3-0databases/pg_auto_failover-devel/distinfo
+2-0databases/pg_auto_failover/Makefile
+154-01 files not shown
+155-07 files

FreeBSD/ports 5be8c57databases Makefile, databases/pg_auto_failover Makefile pkg-descr

databases/pg_auto_failover: new port: PG extension for automated failover and HA

WWW: https://pg-auto-failover.readthedocs.io
PR: 292990
DeltaFile
+76-0databases/pg_auto_failover/files/pg_auto_failover.in
+31-0databases/pg_auto_failover/Makefile
+24-0databases/pg_auto_failover/pkg-descr
+15-0databases/pg_auto_failover/pkg-plist
+3-0databases/pg_auto_failover/distinfo
+1-0databases/Makefile
+150-06 files

FreeBSD/ports 3ae5cf2graphics/feh distinfo Makefile

graphics/feh: Update to 3.11.3

Release Notes:  https://feh.finalrewind.org/archive/3.11.3/
Sponsored by:   The FreeBSD Foundation
DeltaFile
+3-3graphics/feh/distinfo
+1-1graphics/feh/Makefile
+4-42 files

FreeBSD/ports 8706bc5multimedia/lives Makefile, multimedia/lives/files patch-jack1

multimedia/lives: Improve port

- Fix build with FFMPEG option, but mark it BROKEN:
  "Crashes at runtime if the FFMPEG option is enabled".
- Replace PORTVERSION with DISTVERSION.
- Merge gettext-runtime and gettext-tools to gettext in USES.
- Split long OPTIONS_DEFINE.
- Remove NLS from OPTIONS_DEFINE - NLS is enabled by default by ports
  framework.
- Remove NLS_USES=gettext-tools - gettext already in USES.
- Refresh patch-jack1.
DeltaFile
+15-14multimedia/lives/Makefile
+9-9multimedia/lives/files/patch-jack1
+24-232 files

FreeBSD/doc 3dcfad6documentation/content/en/articles/committers-guide _index.po, documentation/content/en/articles/gjournal-desktop _index.po

doc: Update source files (en .po), for translations
DeltaFile
+7,390-6,206documentation/content/en/books/porters-handbook/versions/_index.po
+1,747-1,735documentation/content/en/books/porters-handbook/makefiles/_index.po
+1,250-1,222documentation/content/en/books/porters-handbook/uses/_index.po
+1,632-457documentation/content/en/articles/gjournal-desktop/_index.po
+1,281-0documentation/content/en/books/accessibility/colors/_index.po
+511-482documentation/content/en/articles/committers-guide/_index.po
+13,811-10,10242 files not shown
+20,639-13,32148 files

FreeBSD/ports 79ce82dsecurity/pcsc-tools distinfo Makefile

security/pcsc-tools: Update to 1.7.4
DeltaFile
+3-3security/pcsc-tools/distinfo
+1-2security/pcsc-tools/Makefile
+4-52 files

FreeBSD/ports 010afffmultimedia/emby-server Makefile

multimedia/emby-server: fix fetch

PR:     293369
DeltaFile
+3-4multimedia/emby-server/Makefile
+3-41 files

FreeBSD/ports 4725a14graphics/cloudcompare Makefile distinfo, graphics/cloudcompare/files patch-snap_gui_ccViewer.desktop patch-snap_gui_cloudcompare.desktop

graphics/cloudcompare: Update 2.12.4 => 2.13.2, take maintainership

* Add WWW for source code repository.
* Static tarball is available, but not used, as GH_TUPLE is needed
  for bundled external libraries and 3-rd party plugins.
* GL is needed for the main application, not for the plugins only.
* Build PLUGIN_IO_QPDAL unconditionally, just like other plugins.
* Supply *.desktop with *.png files from the previous version, as
  upstream doesn't ship them anymore. Fix post-install accordingly.
* Fix plugin path detection actually enabling plugins autoloading.
* Improve COMMENT and pkg-descr

Reviewed by:            arrowd@
Approved by:            db@, yuri@ (Mentors, implicit)
Differential Revision:  https://reviews.freebsd.org/D55434
DeltaFile
+28-28graphics/cloudcompare/Makefile
+25-5graphics/cloudcompare/distinfo
+14-7graphics/cloudcompare/pkg-descr
+0-13graphics/cloudcompare/files/patch-snap_gui_ccViewer.desktop
+0-13graphics/cloudcompare/files/patch-snap_gui_cloudcompare.desktop
+11-0graphics/cloudcompare/files/patch-libs_CCAppCommon_src_ccApplicationBase.cpp
+78-665 files not shown
+99-6711 files

FreeBSD/ports cdc4bbcaudio/noson-app distinfo Makefile

audio/noson-app: Update to 5.6.15
DeltaFile
+3-3audio/noson-app/distinfo
+1-1audio/noson-app/Makefile
+4-42 files

FreeBSD/ports 87ad0edaudio/noson distinfo pkg-plist

audio/noson: Update to 2.12.23
DeltaFile
+3-3audio/noson/distinfo
+2-4audio/noson/pkg-plist
+1-1audio/noson/Makefile
+6-83 files

FreeBSD/ports 0736310www/ikiwiki distinfo Makefile

www/ikiwiki: update to 3.20260201                                                                                                                                                                
DeltaFile
+3-3www/ikiwiki/distinfo
+1-2www/ikiwiki/Makefile
+1-0www/ikiwiki/pkg-plist
+5-53 files

FreeBSD/ports 25fa745sysutils/rsyslog8 Makefile distinfo, sysutils/rsyslog8/files patch-plugins_impstats_Makefile.am patch-runtime_nsd__ossl.c

sysutils/rsyslog8: update to 8.2602.0

Changes:        https://github.com/rsyslog/rsyslog/blob/v8.2602.0/ChangeLog

Reported by:    repology
DeltaFile
+11-0sysutils/rsyslog8/files/patch-plugins_impstats_Makefile.am
+6-3sysutils/rsyslog8/Makefile
+4-4sysutils/rsyslog8/files/patch-runtime_nsd__ossl.c
+3-3sysutils/rsyslog8/distinfo
+4-1sysutils/rsyslog8/pkg-plist
+28-115 files

FreeBSD/ports 1f68af0databases/py-sqlmodel distinfo Makefile

databases/py-sqlmodel: Update to 0.0.37

Changelog: https://github.com/fastapi/sqlmodel/blob/0.0.37/docs/release-notes.md

Reported by:    portscout
DeltaFile
+3-3databases/py-sqlmodel/distinfo
+1-1databases/py-sqlmodel/Makefile
+4-42 files

FreeBSD/ports 06954fex11 Makefile, x11/hyprshutdown Makefile pkg-descr

x11/hyprshutdown: Add port: Graceful shutdown utility for Hyprland

A graceful shutdown/logout utility for Hyprland, which prevents apps
from crashing / dying unexpectedly.

Notes:
- hyprshutdown does not shut down the system, it only shuts down
  Hyprland.
- hyprshutdown does not work with anything other than Hyprland, as it
  relies on Hyprland IPC.

WWW: https://github.com/hyprwm/hyprshutdown
DeltaFile
+27-0x11/hyprshutdown/Makefile
+8-0x11/hyprshutdown/pkg-descr
+3-0x11/hyprshutdown/distinfo
+1-0x11/Makefile
+39-04 files