FreeBSD/ports d31cf37filesystems/httpdirfs distinfo Makefile

filesystems/httpdirfs: Update 1.3.1 => 1.3.2

Approved by:            db@, yuri@ (Mentors, implicit)
DeltaFile
+3-3filesystems/httpdirfs/distinfo
+1-1filesystems/httpdirfs/Makefile
+4-42 files

FreeBSD/ports 1710be4devel/gumbo Makefile

devel/gumbo: Fix build WITH_PIE by marking PIE_UNSAFE

* Pet portclippy(1) and portfmt(1)

Approved by:            Matthew Kempe <fsbruva at yahoo.com> (maintainer)
Approved by:            db@, yuri@ (Mentors, implicit)
MFH:                    2026Q2

Differential Revision: https://reviews.freebsd.org/D57303

(cherry picked from commit b72c9a7c071dc4d464e82b0c99d11ebf23c8de10)
DeltaFile
+2-0devel/gumbo/Makefile
+2-01 files

FreeBSD/ports b72c9a7devel/gumbo Makefile

devel/gumbo: Fix build WITH_PIE by marking PIE_UNSAFE

* Pet portclippy(1) and portfmt(1)

Approved by:            Matthew Kempe <fsbruva at yahoo.com> (maintainer)
Approved by:            db@, yuri@ (Mentors, implicit)
MFH:                    2026Q2

Differential Revision: https://reviews.freebsd.org/D57303
DeltaFile
+3-0devel/gumbo/Makefile
+3-01 files

FreeBSD/ports c3728edsecurity/openfortivpn distinfo Makefile

security/openfortivpn: Update 1.24.0 => 1.24.1

Changelog:
https://github.com/adrienverge/openfortivpn/blob/v1.24.1/CHANGELOG.md

PR:             295732
Sponsored by:   UNIS Labs
MFH:            2026Q2

(cherry picked from commit a712753a384a5642abf10d5b163c18bba6b27e5e)
DeltaFile
+3-3security/openfortivpn/distinfo
+1-1security/openfortivpn/Makefile
+4-42 files

FreeBSD/ports a712753security/openfortivpn distinfo Makefile

security/openfortivpn: Update 1.24.0 => 1.24.1

Changelog:
https://github.com/adrienverge/openfortivpn/blob/v1.24.1/CHANGELOG.md

PR:             295732
Sponsored by:   UNIS Labs
MFH:            2026Q2
DeltaFile
+3-3security/openfortivpn/distinfo
+1-1security/openfortivpn/Makefile
+4-42 files

FreeBSD/ports e74fd2fbenchmarks/netperfmeter pkg-plist Makefile

benchmarks/netperfmeter: Update 2.0.1 => 2.0.5

Changelog:
https://github.com/dreibh/netperfmeter/blob/netperfmeter-2.0.5/ChangeLog

Commit log:
https://github.com/dreibh/netperfmeter/compare/netperfmeter-2.0.1...netperfmeter-2.0.5

- Add port configuration options to turn on/off the installation of plot
  scripts, desktop icons, example scripts, and results files. This may
  significantly reduce the runtime dependencies (R packages for
  plotting) and build dependencies (GraphicsMagick, etc. for building
  the desktop icons).

PR:             295688
Sponsored by:   UNIS Labs
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
DeltaFile
+67-61benchmarks/netperfmeter/pkg-plist
+26-13benchmarks/netperfmeter/Makefile
+3-3benchmarks/netperfmeter/distinfo
+96-773 files

FreeBSD/ports b6cc084www/pydio-cells distinfo Makefile

www/pydio-cells: update to 5.0.0

Changelog:      https://github.com/pydio/cells/releases/tag/v5.0.0
DeltaFile
+5-5www/pydio-cells/distinfo
+4-5www/pydio-cells/Makefile
+9-102 files

FreeBSD/ports ff68c86ftp/sftpgo distinfo pkg-plist

ftp/sftpgo: update to 2.7.3

Changelog:      https://github.com/drakkan/sftpgo/releases
DeltaFile
+3-3ftp/sftpgo/distinfo
+2-2ftp/sftpgo/pkg-plist
+1-2ftp/sftpgo/Makefile
+6-73 files

FreeBSD/ports 5290a1dconverters/bibtexconv distinfo Makefile

converters/bibtexconv: Update 2.2.1 => 2.2.2

Changelog:
https://github.com/dreibh/bibtexconv/blob/bibtexconv-2.2.2/ChangeLog

Commit log:
https://github.com/dreibh/bibtexconv/compare/bibtexconv-2.2.1...bibtexconv-2.2.2

PR:             295697
Sponsored by:   UNIS Labs
DeltaFile
+3-3converters/bibtexconv/distinfo
+1-2converters/bibtexconv/Makefile
+4-52 files

FreeBSD/src b53eab3sys/compat/linuxkpi/common/src linux_idr.c

LinuxKPi: idr: use macros for lock idr lock operations

Our idr implementation is using a mtx lock which in the past has
already caused problems (613723bac219c).
In order to make it easier to tackle the problem start by factoring
out all the operations related to the idr->lock into macros as we
have often done in other parts of code as well.

Sponsored by:   The FreeBSD Foundation
MFC after:      3 days
Reviewed by:    wulf, emaste
Differential Revision: https://reviews.freebsd.org/D55392
DeltaFile
+37-30sys/compat/linuxkpi/common/src/linux_idr.c
+37-301 files

FreeBSD/src d07460fsys/compat/linuxkpi/common/src linuxkpi_80211_pm.c

LinuxKPI: 802.11 suspend/resume: fix the is_pci_dev check

Shortly before I committed the works from a year ago, jhb added a
function ("is_pci_device") so that the check against the devclass
does not have to be coded in every driver.  Use this instead in main
(and stable/15 in case the works get MFCed).

At the same time this fixes the check (the old one was wrong) as we
attach to the LinuxKPI 802.11 driver, e.g., iwlwifi and thus we need
to check the parent of the parent and not just the parent to be
of the devclass "pci" in the identify bus function.  The was the
first error.  The second was (and this is why it worked) that we
checked for == instead of != and so the wrong check became true again.

Discussed with: jhb
Fixes:          11d69a4558de ("LinuxKPI: 802.11: add support for s/r")
MFC after:      3 days
X-MFC after:    ffcf5e356644 ("pci: Add is_pci_device helper function")
Sponsored by:   The FreeBSD Foundation
DeltaFile
+2-1sys/compat/linuxkpi/common/src/linuxkpi_80211_pm.c
+2-11 files

FreeBSD/src 49b413csys/dev/rtwn/usb rtwn_usb_attach.h, sys/dev/usb usbdevs

rtwn/usb: add ID for D-Link DWA-121 rev B1 to rtwn RTL8188EU

Add the device ID to the usbdevs table in order to be able to use
it in the rtwn/usb driver for the RTL8188EU attachment.

(I adjusted the name to B1 compared to the original submission)

PR:             291839
MFC after:      3 days
DeltaFile
+1-0sys/dev/rtwn/usb/rtwn_usb_attach.h
+1-0sys/dev/usb/usbdevs
+2-02 files

FreeBSD/ports b56dc81net/subnetcalc Makefile pkg-plist

net/subnetcalc: Update 2.6.6 => 2.7.1

This new version provides several improvements:
* Replaced deprecated libGeoIP by libMaxMindDB. This particularly again
  allows GeoIP support under FreeBSD. Optionally, GeoIP support can be
  disabled.
* IDN is now supported under FreeBSD as well.
* I18N support is configurable.

Changelog:
https://github.com/dreibh/subnetcalc/blob/subnetcalc-2.7.1/ChangeLog

Commit log:
https://github.com/dreibh/subnetcalc/compare/subnetcalc-2.6.6...subnetcalc-2.7.1

PR:             295695
Sponsored by:   UNIS Labs
DeltaFile
+15-8net/subnetcalc/Makefile
+6-0net/subnetcalc/pkg-plist
+3-3net/subnetcalc/distinfo
+24-113 files

FreeBSD/ports 99ba0f5archivers/appscript distinfo Makefile

archivers/appscript: Update to 0.4.0

ChangeLog: https://github.com/DtxdF/appscript/releases/tag/v0.4.0
DeltaFile
+3-3archivers/appscript/distinfo
+1-1archivers/appscript/Makefile
+4-42 files

FreeBSD/ports 5d584e7. MOVED, net Makefile

net/kpeoplevcard: Remove unused Qt5 port
DeltaFile
+0-23net/kpeoplevcard/Makefile
+0-3net/kpeoplevcard/pkg-descr
+0-3net/kpeoplevcard/distinfo
+0-1net/Makefile
+1-0MOVED
+1-305 files

FreeBSD/ports 4408fb0. MOVED, accessibility/libqaccessibilityclient Makefile pkg-plist.qt6

accessibility/libqaccessibilityclient: Deorbit Qt5 flavor
DeltaFile
+5-11accessibility/libqaccessibilityclient/Makefile
+0-13accessibility/libqaccessibilityclient/pkg-plist.qt6
+13-0accessibility/libqaccessibilityclient/pkg-plist
+0-13accessibility/libqaccessibilityclient/pkg-plist.qt5
+2-0MOVED
+20-375 files

FreeBSD/ports ece50f0accessibility/kmag Makefile, x11-toolkits/como Makefile

*/*: Chase accessibility/libqaccessibilityclient unflavorization
DeltaFile
+2-2x11-toolkits/como/Makefile
+2-2x11-wm/plasma6-kwin/Makefile
+2-1accessibility/kmag/Makefile
+2-1x11-wm/plasma6-kwin-x11/Makefile
+8-64 files

FreeBSD/ports 93ac1e3Mk bsd.sites.mk

Mk/bsd.sites.mk: Skim and update Apache sites

The Apache mirror network has been shut down years ago because we moved to a CDN.
Therefore, use the latest download CDN and nothing else.

Reviewed by:    diizzy
Reference:      https://www.apache.org/mirrors
Differential Revision:  https://reviews.freebsd.org/D57335
DeltaFile
+1-6Mk/bsd.sites.mk
+1-61 files

FreeBSD/ports 50af32cnet/kamailio distinfo Makefile, net/kamailio/files patch-cmake_modules_FindUnistring.cmake patch-src_modules_phonenum_CMakeLists.txt

net/kamailio: Update 6.1.1 => 6.1.3

Release Notes:
https://www.kamailio.org/w/2026/04/kamailio-v6-1-2-released/
https://www.kamailio.org/w/2026/05/kamailio-v6-1-3-released/

While here replace http with https in MASTER_SITES.

PR:             295692
Sponsored by:   UNIS Labs
DeltaFile
+0-34net/kamailio/files/patch-cmake_modules_FindUnistring.cmake
+0-15net/kamailio/files/patch-src_modules_phonenum_CMakeLists.txt
+0-14net/kamailio/files/patch-src_modules_websocket_CMakeLists.txt
+3-3net/kamailio/distinfo
+2-3net/kamailio/Makefile
+5-695 files

FreeBSD/ports da5edb1graphics/ksnip Makefile

graphics/ksnip: Fix desktop file
DeltaFile
+5-0graphics/ksnip/Makefile
+5-01 files

FreeBSD/ports e99af81graphics/ksnip Makefile distinfo, graphics/ksnip/files patch-CMakeLists.txt

graphics/ksnip: Update to the 1.11.0 prerelease and switch to Qt6
DeltaFile
+8-16graphics/ksnip/files/patch-CMakeLists.txt
+9-8graphics/ksnip/Makefile
+3-3graphics/ksnip/distinfo
+1-1graphics/ksnip/pkg-plist
+21-284 files

FreeBSD/ports 6c0bb7agraphics/gwenview Makefile

graphics/gwenview: Switch to unflavored graphics/kimageannotator
DeltaFile
+2-2graphics/gwenview/Makefile
+2-21 files

FreeBSD/ports d8f6068. MOVED, graphics/kimageannotator pkg-plist Makefile

graphics/kimageannotator: Deorbit Qt5 flavor
DeltaFile
+40-40graphics/kimageannotator/pkg-plist
+7-20graphics/kimageannotator/Makefile
+2-0MOVED
+49-603 files

FreeBSD/ports 9479097. MOVED, graphics/kcolorpicker Makefile pkg-plist

graphics/kcolorpicker: Deorbit Qt5 flavor
DeltaFile
+6-15graphics/kcolorpicker/Makefile
+9-9graphics/kcolorpicker/pkg-plist
+2-0MOVED
+17-243 files

FreeBSD/src a64148esys/compat/linux linux_misc.c linux_misc.h

linux: Add support for PR_SET_VMA to prctl(2)

Implement dummy support for PR_SET_VMA with PR_SET_VMA_ANON_NAME in
prctl(2).  This prevents applications from receiving EINVAL when
attempting to name anonymous memory regions.
DeltaFile
+7-0sys/compat/linux/linux_misc.c
+2-0sys/compat/linux/linux_misc.h
+9-02 files

FreeBSD/ports dfe5dd6www/gohugo distinfo Makefile

www/gohugo: Update to 0.162.1

ChangeLog: https://github.com/gohugoio/hugo/releases/tag/v0.162.1

 * modules/npm: Fix false stale warning after npm pack
 * Revert "tpl/collections: Make dict return nil when no values are provided"
 * tpl/time: Fix locale-specific month abbreviations

Approved by:    doceng@ (implicit)
DeltaFile
+5-5www/gohugo/distinfo
+1-1www/gohugo/Makefile
+6-62 files

FreeBSD/ports c57f29fdevel/pcsc-lite distinfo pkg-plist

devel/pcsc-lite: Update 2.4.0 => 2.4.1

Differential Revision: https://reviews.freebsd.org/D57315
DeltaFile
+3-3devel/pcsc-lite/distinfo
+4-1devel/pcsc-lite/pkg-plist
+3-2devel/pcsc-lite/Makefile
+10-63 files

FreeBSD/src eda74felib/libc/stdlib rand.3

rand(3): Normalize function ordering

Align ordering between NAME & SYNOPSIS sections.

Obtained from:  https://github.com/apple-oss-distributions/libc
Sponsored by:   Klara, Inc.
DeltaFile
+5-5lib/libc/stdlib/rand.3
+5-51 files

FreeBSD/ports 6d79433devel/gamin Makefile

devel/gamin: Fix build with LIBINOTIFY enabled on FreeBSD 15+
DeltaFile
+2-1devel/gamin/Makefile
+2-11 files

FreeBSD/ports e9bc5c8emulators/ares Makefile distinfo, emulators/ares/files patch-thirdparty_CMakeLists.txt

emulators/ares: Update 147 => 148

Release Notes:
https://ares-emu.net/news/ares-v148-released

PR:             295728
Sponsored by:   UNIS Labs
DeltaFile
+25-29emulators/ares/files/patch-thirdparty_CMakeLists.txt
+1-7emulators/ares/Makefile
+3-5emulators/ares/distinfo
+29-413 files