FreeBSD/ports 4d61443www/phalcon Makefile distinfo

www/phalcon: update to 5.20.0.
DeltaFile
+3-3www/phalcon/distinfo
+1-1www/phalcon/Makefile
+4-42 files

FreeBSD/ports de1aad0www/qt5-webengine Makefile

www/qt5-webengine: Fix build on -CURRENT

clang on CURRENT invokes ld.lld, which does not search LOCALBASE.
GN host tools such as character_data_generator then fail with
"unable to find library -levent".

Add USES=localbase:ldflags and LIBRARY_PATH so the host linker
can find ports libraries without relying on GNU ld following the
chromium and qt6-webengine patterns.

Approved by:    blanket
DeltaFile
+3-2www/qt5-webengine/Makefile
+3-21 files

FreeBSD/ports 69c0910www/osrm-backend Makefile

www/osrm-backend: Fix build: 'deadline_timer' is deprecated: Use system_timer

In file included from /wrkdirs/usr/ports/www/osrm-backend/work/osrm-backend-0ae940c31566df2aec0ecd679c84c11ede9831ef/src/tools/r
outed.cpp:1:
In file included from /wrkdirs/usr/ports/www/osrm-backend/work/osrm-backend-0ae940c31566df2aec0ecd679c84c11ede9831ef/include/ser
ver/server.hpp:4:
/wrkdirs/usr/ports/www/osrm-backend/work/osrm-backend-0ae940c31566df2aec0ecd679c84c11ede9831ef/include/server/connection.hpp:53:
18: error: 'deadline_timer' is deprecated: Use system_timer [-Werror,-Wdeprecated-declarations]
   53 |     boost::asio::deadline_timer timer;
      |                  ^
/usr/local/include/boost/asio/deadline_timer.hpp:36:1: note: 'deadline_timer' has been explicitly marked deprecated here
   36 | BOOST_ASIO_DEPRECATED_MSG("Use system_timer")
      | ^
/usr/local/include/boost/asio/detail/config.hpp:1484:47: note: expanded from macro 'BOOST_ASIO_DEPRECATED_MSG'
 1484 | #     define BOOST_ASIO_DEPRECATED_MSG(msg) [[deprecated(msg)]]
      |                                               ^
1 error generated.

- Add -Wno-deprecated-declarations to the CXXFLAGS.

    [7 lines not shown]
DeltaFile
+5-4www/osrm-backend/Makefile
+5-41 files

FreeBSD/ports 1659635www/osrm-backend Makefile

www/osrm-backend: Fix build: 'deadline_timer' is deprecated: Use system_timer

In file included from /wrkdirs/usr/ports/www/osrm-backend/work/osrm-backend-0ae940c31566df2aec0ecd679c84c11ede9831ef/src/tools/r
outed.cpp:1:
In file included from /wrkdirs/usr/ports/www/osrm-backend/work/osrm-backend-0ae940c31566df2aec0ecd679c84c11ede9831ef/include/ser
ver/server.hpp:4:
/wrkdirs/usr/ports/www/osrm-backend/work/osrm-backend-0ae940c31566df2aec0ecd679c84c11ede9831ef/include/server/connection.hpp:53:
18: error: 'deadline_timer' is deprecated: Use system_timer [-Werror,-Wdeprecated-declarations]
   53 |     boost::asio::deadline_timer timer;
      |                  ^
/usr/local/include/boost/asio/deadline_timer.hpp:36:1: note: 'deadline_timer' has been explicitly marked deprecated here
   36 | BOOST_ASIO_DEPRECATED_MSG("Use system_timer")
      | ^
/usr/local/include/boost/asio/detail/config.hpp:1484:47: note: expanded from macro 'BOOST_ASIO_DEPRECATED_MSG'
 1484 | #     define BOOST_ASIO_DEPRECATED_MSG(msg) [[deprecated(msg)]]
      |                                               ^
1 error generated.

- Add -Wno-deprecated-declarations to the CXXFLAGS.

    [5 lines not shown]
DeltaFile
+5-4www/osrm-backend/Makefile
+5-41 files

FreeBSD/ports 9982702devel/py-python-gitlab Makefile distinfo

devel/py-python-gitlab: Update from 8.4.0 => 8.5.0

Changelog:
https://github.com/python-gitlab/python-gitlab/releases/tag/v8.5.0

PR:             297820
Sponsored by:   UNIS Labs
DeltaFile
+3-3devel/py-python-gitlab/distinfo
+1-2devel/py-python-gitlab/Makefile
+4-52 files

FreeBSD/ports 0bbc7bemultimedia/mxflib Makefile

multimedia/mxflib: Limit portscout to numeric versions

SourceForge still carries mxflib-1.0.1-gcc4.3.tar.gz, a gcc 4.3 build fix
respin of the same 1.0.1 release. Portscout reads the -gcc4.3 suffix as a
version component and sorts it above 1.0.1, reporting a permanent false
positive.
DeltaFile
+2-0multimedia/mxflib/Makefile
+2-01 files

FreeBSD/ports 734a468comms/mbpoll Makefile

comms/mbpoll: Add missing pkgconfig dependency

CMakeLists.txt calls find_package(PkgConfig) to locate libmodbus, but the
port only declares USES=cmake, so pkgconf is not pulled in as a build
dependency. In a clean jail configure fails with:

  Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
  Call Stack (most recent call first):
    CMakeLists.txt:59 (find_package)

Reviewed by:    mm
Differential Revision:  https://reviews.freebsd.org/D59116
DeltaFile
+1-1comms/mbpoll/Makefile
+1-11 files

FreeBSD/ports 38a09c1net/libwebsockets Makefile

net/libwebsockets: Pet portclippy

Reviewed by:    bofh
Differential Revision:  https://reviews.freebsd.org/D59117
DeltaFile
+45-52net/libwebsockets/Makefile
+45-521 files

FreeBSD/ports ba7e53fnet/libwebsockets Makefile pkg-plist

net/libwebsockets: Package all enabled event loop plugins

pkg-plist listed only lib/libwebsockets-evlib_uv.so, so with any event
loop option other than LIBUV enabled the corresponding plugin was staged
but silently dropped from the package. The installed CMake export still
referenced it, breaking every consumer that calls find_package():

  CMake Error at LibwebsocketsTargets.cmake:106 (message):
    The imported target "websockets-evlib_ev" references the file
       "/usr/local/lib/libwebsockets-evlib_ev.so"
    but this file does not exist.

Gate the plugin entries on their options instead. OPTIONS_SUB was
already set.

Reviewed by:    bofh
Differential Revision:  https://reviews.freebsd.org/D59117
DeltaFile
+4-1net/libwebsockets/pkg-plist
+1-0net/libwebsockets/Makefile
+5-12 files

FreeBSD/ports c33e699net/v2ray Makefile distinfo

net/v2ray: Update 5.52.0 => 5.53.0

Approved by:            db@, yuri@ (Mentors, implicit)
DeltaFile
+5-5net/v2ray/distinfo
+1-2net/v2ray/Makefile
+6-72 files

FreeBSD/ports f6a1c2bsysutils/webmin Makefile distinfo

sysutils/webmin: Update to 2.660

Upstream replaced the blue-theme directory with a symlink to gray-theme.
Use ${CP} -R instead of -r in do-install so the symlink is preserved
rather than expanded into a second copy of the theme, and regenerate
pkg-plist accordingly.
DeltaFile
+980-1,853sysutils/webmin/pkg-plist
+3-3sysutils/webmin/distinfo
+2-3sysutils/webmin/Makefile
+985-1,8593 files

FreeBSD/ports 8f73c30sysutils/virtualmin distinfo Makefile

sysutils/virtualmin: Update to 8.1.0

Upstream dropped procmail-wrapper.c, so remove the post-build target
that compiled it.

Strip the .github, .editorconfig and FUNDING.yml development files that
are now shipped in the tarball, and use find -delete for the empty
directory cleanup so nested empty directories are removed as well.
DeltaFile
+2,933-2,034sysutils/virtualmin/pkg-plist
+4-7sysutils/virtualmin/Makefile
+3-3sysutils/virtualmin/distinfo
+2,940-2,0443 files

FreeBSD/ports 7bfe096sysutils/usermin Makefile distinfo

sysutils/usermin: Update to 2.560

Upstream replaced the blue-theme directory with a symlink to gray-theme.
Use ${CP} -R instead of -r in do-install so the symlink is preserved
rather than expanded into a second copy of the theme, and regenerate
pkg-plist accordingly.
DeltaFile
+498-1,378sysutils/usermin/pkg-plist
+3-3sysutils/usermin/distinfo
+2-2sysutils/usermin/Makefile
+503-1,3833 files

FreeBSD/ports cb75dbedatabases Makefile, databases/pgtui distinfo pkg-descr

databases/pgtui: New port: Terminal UI for PostgreSQL
DeltaFile
+20-0databases/pgtui/Makefile
+11-0databases/pgtui/pkg-descr
+5-0databases/pgtui/distinfo
+1-0databases/Makefile
+37-04 files

FreeBSD/ports 451f5b1textproc/the_silver_searcher Makefile

textproc/the_silver_searcher: Sort GNU_CONFIGURE_MANPREFIX and TEST_TARGET

Keep portclippy happy. No functional change.
DeltaFile
+5-4textproc/the_silver_searcher/Makefile
+5-41 files

FreeBSD/ports e0db2edtextproc/the_silver_searcher distinfo Makefile

textproc/the_silver_searcher: Switch to pcre2

PR:             297060
DeltaFile
+6-4textproc/the_silver_searcher/Makefile
+3-1textproc/the_silver_searcher/distinfo
+9-52 files

FreeBSD/ports b1d012clang/ecl pkg-plist distinfo, lang/ecl/files extra-patch-src_c_streams_strm_os.d

lang/ecl: Update to 26.5.5

Upstream moved the code the SageMath patch touches from src/c/file.d to
src/c/streams/strm_os.d, so rename and regenerate the extra patch.

Derive the libecl.so major/short version from PORTVERSION via PLIST_SUB
instead of hardcoding the soname in pkg-plist.
DeltaFile
+13-0lang/ecl/files/extra-patch-src_c_streams_strm_os.d
+5-3lang/ecl/Makefile
+3-3lang/ecl/distinfo
+3-2lang/ecl/pkg-plist
+24-84 files

FreeBSD/ports b5569b9lang/abcl distinfo Makefile, lang/abcl/files patch-src_org_armedbear_lisp_LispThread.java

lang/abcl: Update to 1.10.0

While here, add the missing LICENSE and move SUB_FILES/SUB_LIST to keep
portclippy happy.

- Fix virtual thread creation on JDK 21 and later
DeltaFile
+11-9lang/abcl/Makefile
+13-0lang/abcl/files/patch-src_org_armedbear_lisp_LispThread.java
+3-3lang/abcl/distinfo
+27-123 files

FreeBSD/ports cde3ef1chinese/opencc pkg-plist Makefile

chinese/opencc: unbundle marisa, rapidjson, tclap, and googletest

Use system versions of libraries that have matching ports instead of
the bundled copies shipped in deps/.

PR:             ports/297782
Reported by:    diizzy
Approved by:    maintainer
DeltaFile
+13-6chinese/opencc/Makefile
+0-1chinese/opencc/pkg-plist
+13-72 files

FreeBSD/ports 26fa118textproc/fixrtf pkg-plist Makefile

textproc/fixrtf: add LICENSE, update WWW, use PLIST_FILES

 - Add LICENSE=BSD2CLAUSE (per source file header)
 - Update WWW to FreeBSD wiki (old domain was no longer controlled
   by us)
 - Use PLIST_FILES instead of single-entry pkg-plist
DeltaFile
+5-1textproc/fixrtf/Makefile
+0-1textproc/fixrtf/pkg-plist
+5-22 files

FreeBSD/ports ee8b441www/py-urlgrabber distinfo Makefile, www/py-urlgrabber/files patch-setup.py

www/py-urlgrabber: Update to 4.1.0

- Convert to PEP517
- Pet port(clippy|fmt)

Reported by: repology.org
DeltaFile
+23-18www/py-urlgrabber/files/patch-setup.py
+11-10www/py-urlgrabber/Makefile
+3-3www/py-urlgrabber/distinfo
+37-313 files

FreeBSD/ports 3fd40f6archivers/plzip Makefile

archivers/plzip: use USES=localbase:ldflags

Replace manual CXXFLAGS/LDFLAGS in CONFIGURE_ARGS with
USES=localbase:ldflags. Pass CPPFLAGS and LDFLAGS explicitly via
CONFIGURE_ARGS as plzip uses a custom configure script that reads
them as arguments rather than from the environment.
DeltaFile
+3-4archivers/plzip/Makefile
+3-41 files

FreeBSD/ports 6621902audio/codec2 distinfo Makefile

audio/codec2: Update to 1.2.0

The new version of SDRAngel requires codec2 version 1.2.0, but the ports
currently contain version 1.0.3_1. I contacted the maintainer,
and a search of the bug list yielded no results regarding a codec2 port update.
I propose updating the port; I am attaching the patches.
 Tested FreeBSD 15 amd64

- ran through portlint and cosmetic changes only - db

PR:             297726
Reported by:    res2500 at ukr.net
DeltaFile
+2-245audio/codec2/pkg-plist
+3-38audio/codec2/Makefile
+3-3audio/codec2/distinfo
+8-2863 files

FreeBSD/ports d443e20net/traefik distinfo Makefile

net/traefik: Update to upstream version 3.7.11

Details:
- Multiple bug- and security fixes, see
  https://github.com/traefik/traefik/releases/tag/v3.7.11
- No breaking config changes

MFH:            2026Q3
Security:       https://github.com/traefik/traefik/security/advisories/GHSA-5w68-77r2-r64c
                https://github.com/traefik/traefik/security/advisories/GHSA-g55h-rg46-x9c5
                https://github.com/traefik/traefik/security/advisories/GHSA-j994-9gqj-9hwq
                https://github.com/traefik/traefik/security/advisories/GHSA-m6wx-622r-48r9
(cherry picked from commit c823c538ba205179210576309f61fa1e0cf5138f)
DeltaFile
+3-3net/traefik/Makefile
+3-1net/traefik/distinfo
+6-42 files

FreeBSD/ports e912caaeditors/neovim Makefile distinfo

editors/neovim: Update to 0.12.5

Changes: https://github.com/neovim/neovim/commit/5885a30e1e1225349079e7a1c4a3848aa8e43e42
DeltaFile
+3-3editors/neovim/distinfo
+1-1editors/neovim/Makefile
+4-42 files

FreeBSD/ports 4d8abfbdatabases/openldap27-server Makefile, net/openldap25-server Makefile

{databases,net}/openldap2[567]-server: use USES=localbase:ldflags

Remove redundant CPPFLAGS, LDFLAGS, LIBS, and SQL_LDFLAGS assignments
that are already covered by USES=localbase:ldflags. Also fix COMMENT/WWW
ordering in openldap25-server.

No functional change to the built packages.
DeltaFile
+2-8net/openldap25-server/Makefile
+1-7net/openldap26-server/Makefile
+1-6databases/openldap27-server/Makefile
+4-213 files

FreeBSD/ports faa29f0devel/py-time-machine distinfo Makefile

devel/py-time-machine: Update to 3.4.0

Reported by:    repology.org
DeltaFile
+10-1devel/py-time-machine/Makefile
+3-3devel/py-time-machine/distinfo
+13-42 files

FreeBSD/ports d6590bfx11-fonts/cyberbit-ttfonts Makefile

x11-fonts/cyberbit-ttfonts: broken, does not fetch

=> Attempting to fetch http://vault.101011010.xyz/distfiles/cyberbit/Cyberbit.ZIP
fetch: http://vault.101011010.xyz/distfiles/cyberbit/Cyberbit.ZIP: No route to host
=> Attempting to fetch http://freebsd.nsu.ru/distfiles/cyberbit/Cyberbit.ZIP
fetch: http://freebsd.nsu.ru/distfiles/cyberbit/Cyberbit.ZIP: Operation timed out
=> Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/cyberbit/Cyberbit.ZIP
fetch: http://distcache.FreeBSD.org/ports-distfiles/cyberbit/Cyberbit.ZIP: Not Found

Maintainer needs to find and supply a new mirror.

Approved by:    portmgr (build fix blanket)
MFH:            2026Q3

(cherry picked from commit c3fb24bf82df33ed6807f9264b703d937d1c274b)
DeltaFile
+2-0x11-fonts/cyberbit-ttfonts/Makefile
+2-01 files

FreeBSD/ports ffa8234devel/simdjson Makefile distinfo

devel/simdjson: update to 4.6.8

A bug fix release.

Changelog: https://github.com/simdjson/simdjson/releases/tag/v4.6.7
Changelog: https://github.com/simdjson/simdjson/releases/tag/v4.6.8

MFH:            2026Q3
(cherry picked from commit 537a529267085d40a342044bd1251c423ac55aed)
DeltaFile
+3-3devel/simdjson/distinfo
+1-1devel/simdjson/Makefile
+4-42 files

FreeBSD/ports f9dfc9edatabases/c3p0 distinfo Makefile

databases/c3p0: Update to 0.9.5.5

While here, move NO_ARCH to keep portclippy happy.
DeltaFile
+3-4databases/c3p0/Makefile
+3-3databases/c3p0/distinfo
+6-72 files