OpenBSD/ports LvjXBL2editors/TeXmacs Makefile, editors/TeXmacs/patches patch-src_System_Link_cmdline_link_cpp patch-src_System_Link_socket_notifier_cpp

   update to editors/TeXmacs 2.1.5


   - moves to qt6
   - uses subversion versioning suffix in WRKDIST
   - uses https in SITES
   - adds security/gnutls to WANTLIB and LIB_DEPENDS for online
     collaboration
   - replaces #!/bin/bash with #!/bin/sh in lisp plugin
   - patches out wordexp in QTMPipeLink.cpp
   - patches out malloc.h
   - removes R from README
   - formatting cleanup

   feedback and ok rsadowski@
VersionDeltaFile
1.15+926-17editors/TeXmacs/pkg/PLIST
1.37+18-11editors/TeXmacs/Makefile
1.1+23-0editors/TeXmacs/patches/patch-src_Plugins_Qt_QTMPipeLink_cpp
1.4+4-13editors/TeXmacs/patches/patch-src_System_Link_socket_notifier_cpp
1.5+0-14editors/TeXmacs/pkg/README
1.1+12-0editors/TeXmacs/patches/patch-src_System_Link_cmdline_link_cpp
+983-555 files not shown
+987-5911 files

OpenBSD/ports vE5SsIlmath/py-scikit-learn Makefile

   run tests with xdist; partly to run in parallel (there are many),
   partly because it restarts crashed python processes, which happens with
   this.
VersionDeltaFile
1.34+5-0math/py-scikit-learn/Makefile
+5-01 files

OpenBSD/ports apnONdpmath/py-scikit-learn Makefile, math/py-scikit-learn/patches patch-pyproject_toml

   relax scipy version dependency; tests run as well as they did before
VersionDeltaFile
1.4+4-2math/py-scikit-learn/patches/patch-pyproject_toml
1.33+1-1math/py-scikit-learn/Makefile
+5-32 files

OpenBSD/ports k46D1Svmath/py-scipy Makefile distinfo, math/py-scipy/patches patch-meson_options patch-scipy_meson_build

   update to py3-scipy-1.18.0
VersionDeltaFile
1.27+474-396math/py-scipy/pkg/PLIST
1.6+17-9math/py-scipy/patches/patch-pyproject_toml
1.3+7-7math/py-scipy/patches/patch-scipy_meson_build
1.2+2-2math/py-scipy/patches/patch-meson_options
1.19+2-2math/py-scipy/distinfo
1.78+1-2math/py-scipy/Makefile
+503-4181 files not shown
+504-4197 files

OpenBSD/ports gwqQG3Olang/pythran distinfo Makefile, lang/pythran/pkg PLIST

   update to pythran-0.19.0
VersionDeltaFile
1.11+45-26lang/pythran/pkg/PLIST
1.18+10-8lang/pythran/Makefile
1.7+2-2lang/pythran/distinfo
+57-363 files

OpenBSD/ports Z9U5VlHdevel/py-beniget Makefile distinfo

   update to py3-beniget-0.5.0
VersionDeltaFile
1.3+2-2devel/py-beniget/distinfo
1.11+1-2devel/py-beniget/Makefile
+3-42 files

OpenBSD/ports tYFLmRDdevel/py-gast distinfo Makefile

   update to py3-gast-0.7.0
VersionDeltaFile
1.11+2-4devel/py-gast/Makefile
1.4+2-2devel/py-gast/distinfo
+4-62 files

OpenBSD/ports teUP1zAmath/netcdf distinfo Makefile, math/netcdf/pkg PLIST

   Update netcdf to 4.10.1.
VersionDeltaFile
1.60+2-3math/netcdf/Makefile
1.14+2-2math/netcdf/distinfo
1.14+2-0math/netcdf/pkg/PLIST
+6-53 files

OpenBSD/ports Ii8rkrlnet/tkirc Makefile

   MODTK_VERSION=8.6
   Take maintainer.


   ok sthen@
VersionDeltaFile
1.22+6-2net/tkirc/Makefile
+6-21 files

OpenBSD/ports pPaxmUxnet/tkabber Makefile.inc, net/tkabber/base Makefile

   MODTK_VERSION=8.6
   Take maintainer.


   ok sthen@
VersionDeltaFile
1.8+2-1net/tkabber/base/Makefile
1.10+2-0net/tkabber/Makefile.inc
+4-12 files

OpenBSD/ports vuhfqiJnet/rabbitmq distinfo Makefile, net/rabbitmq/pkg PLIST

   net/rabbitmq: Update to 4.3.5
VersionDeltaFile
1.92+3-3net/rabbitmq/Makefile
1.45+2-2net/rabbitmq/distinfo
1.47+1-0net/rabbitmq/pkg/PLIST
+6-53 files

OpenBSD/ports FiK88l0textproc/wkhtmltopdf Makefile, textproc/wkhtmltopdf/patches patch-qt_mkspecs_openbsd-g++_qmake_conf

   build with -fno-delete-null-pointer-checks

   -fdelete-null-pointer-checks is on by default and might optimize away required
   checks in some codepaths
VersionDeltaFile
1.6+9-1textproc/wkhtmltopdf/patches/patch-qt_mkspecs_openbsd-g++_qmake_conf
1.37+1-1textproc/wkhtmltopdf/Makefile
+10-22 files

OpenBSD/ports PA1um8Rgeo/gdal Makefile distinfo

   geo/gdal: update to 3.13.3.

   see https://raw.githubusercontent.com/OSGeo/gdal/refs/tags/v3.13.3/NEWS.md
VersionDeltaFile
1.92+4-4geo/gdal/distinfo
1.179+1-1geo/gdal/Makefile
+5-52 files

OpenBSD/src 1Gytayuusr.bin/mandoc read.c

   In mparse_open(), stop using the same local variable for two entirely
   distinct purposes.  Instead, declare two different variables, each with
   an adequate type (const vs. non-const) and a more descriptive name.

   No functional change.
   Small style issue reported by gcc-16.1.1 on Fedora 44
   via Xose Vazquez Perez <xose.vazquez at gmail.com>.
VersionDeltaFile
1.193+10-9usr.bin/mandoc/read.c
+10-91 files

OpenBSD/src nLAfSKZusr.bin/mandoc mdoc.c

   In mdoc_ptext(), stop confusingly declaring two pointers "const"
   that actually point into a non-const string that is sometimes modified
   in the function (to trim trailing whitespace).

   No functional change.
   Small style issue reported by gcc-16.1.1 on Fedora 44
   via Xose Vazquez Perez <xose.vazquez at gmail.com>.
VersionDeltaFile
1.165+2-3usr.bin/mandoc/mdoc.c
+2-31 files

OpenBSD/ports 0qsxcYfaudio/euphonica crates.inc distinfo, audio/euphonica/patches patch-modcargo-crates_pipewire-sys-0_10_0_src_lib_rs patch-modcargo-crates_pipewire-0_10_0_src_lib_rs

   audio/euphonica: update to 0.99.6
VersionDeltaFile
1.4+446-548audio/euphonica/distinfo
1.3+221-272audio/euphonica/crates.inc
1.2+275-0audio/euphonica/pkg/PLIST
1.4+56-56audio/euphonica/patches/patch-src_client_connection_rs
1.1+21-0audio/euphonica/patches/patch-modcargo-crates_pipewire-0_10_0_src_lib_rs
1.1+14-0audio/euphonica/patches/patch-modcargo-crates_pipewire-sys-0_10_0_src_lib_rs
+1,033-8768 files not shown
+1,052-88414 files

OpenBSD/ports eU6KsVwwww/mozilla-firefox/patches patch-security_nss_symbols patch-js_src_ctypes_libffi_src_dlmalloc_c

   www/mozilla-firefox: MFC update to 154.0.

   see https://www.firefox.com/en-US/firefox/154.0/releasenotes/
   fixes https://www.mozilla.org/en-US/security/advisories/mfsa2026-74/

   - revert bits of https://phabricator.services.mozilla.com/D306631 to keep
   building against nss 3.123
   - add patch from #2057158 to fix the build after angle update in #2035541
VersionDeltaFile
1.1.2.1+91-0www/mozilla-firefox/patches/patch-dom_crypto_CryptoKey_cpp
1.1.8.1+23-0www/mozilla-firefox/patches/patch-security_manager_ssl_nsNSSCallbacks_cpp
1.1.10.1+16-0www/mozilla-firefox/patches/patch-security_manager_ssl_nsNSSIOLayer_cpp
1.1.2.1+13-0www/mozilla-firefox/patches/patch-security_manager_ssl_ScopedNSSTypes_h
1.6.18.2+6-6www/mozilla-firefox/patches/patch-js_src_ctypes_libffi_src_dlmalloc_c
1.1.2.1+11-0www/mozilla-firefox/patches/patch-security_nss_symbols
+160-68 files not shown
+166-1214 files

OpenBSD/ports BYwYz0Kwww/firefox-esr Makefile distinfo

   www/firefox-esr: update to 140.14.0.

   see https://www.firefox.com/en-US/firefox/140.14.0/releasenotes/
   fixes https://www.firefox.com/en-US/firefox/140.14.0/releasenotes/

   note that the esr140 branch will be EOL in october
VersionDeltaFile
1.180.2.5+4-4www/firefox-esr/distinfo
1.270.2.5+2-2www/firefox-esr/Makefile
+6-62 files

OpenBSD/ports F5yGYxgwww/firefox-esr Makefile, www/firefox-esr-i18n distinfo

   www/firefox-esr: majot update from 140 to 153.1.0.

   see https://www.firefox.com/en-US/firefox/153.1.0/releasenotes/
   and https://www.firefox.com/en-US/firefox/153.0esr/releasenotes/
   fixes https://www.mozilla.org/en-US/security/advisories/mfsa2026-77/

   merges most of the changes that happened in www/mozilla-firefox, that is:
   - patches from matthieu for xshm 1.2 support for screen sharing (#1702919)
   - patch to fix arrow keys in js terminals (Proxmox/ESXi for example)
   - ship policies.json to neuter the AI madness
   - drop patches for icu 78, python 3.14, llvm22, ffmpeg8...
VersionDeltaFile
1.182+162-162www/firefox-esr-i18n/distinfo
1.1+108-0www/firefox-esr/patches/patch-third_party_libwebrtc_modules_desktop_capture_linux_x11_x_server_pixel_buffer_cc
1.1+72-0www/firefox-esr/patches/patch-widget_NativeKeyToDOMCodeName_inc
1.1+47-0www/firefox-esr/files/policies.json
1.1+27-0www/firefox-esr/patches/patch-third_party_libwebrtc_modules_desktop_capture_linux_x11_x_server_pixel_buffer_h
1.277+12-12www/firefox-esr/Makefile
+428-17420 files not shown
+447-19126 files

OpenBSD/ports PETzQrzwww/firefox-i18n Makefile.inc distinfo, www/mozilla-firefox distinfo Makefile

   www/mozilla-firefox: update to 154.0.

   see https://www.firefox.com/en-US/firefox/154.0/releasenotes/
   fixes https://www.mozilla.org/en-US/security/advisories/mfsa2026-74/
   add patch from #2057158 to fix the build after angle update in #2035541
VersionDeltaFile
1.403+164-164www/firefox-i18n/distinfo
1.1+17-0www/mozilla-firefox/patches/patch-third_party_angle_angle_common_gn_moz_build
1.8+6-6www/mozilla-firefox/patches/patch-js_src_ctypes_libffi_src_dlmalloc_c
1.417+4-4www/mozilla-firefox/distinfo
1.703+4-4www/mozilla-firefox/Makefile
1.358+1-1www/firefox-i18n/Makefile.inc
+196-1791 files not shown
+197-1807 files

OpenBSD/ports PLAmmDrdevel/llvm/22/patches patch-compiler-rt_lib_sanitizer_common_sanitizer_linux_cpp patch-compiler-rt_lib_ubsan_minimal_ubsan_minimal_handlers_cpp

   sync compiler-rt patches with base
VersionDeltaFile
1.1+21-0devel/llvm/22/patches/patch-compiler-rt_lib_builtins_cpu_model_aarch64_c
1.1+20-0devel/llvm/22/patches/patch-compiler-rt_lib_builtins_clzdi2_c
1.1+16-0devel/llvm/22/patches/patch-compiler-rt_lib_profile_InstrProfilingPlatformOther_c
1.1+12-0devel/llvm/22/patches/patch-compiler-rt_lib_ubsan_minimal_ubsan_minimal_handlers_cpp
1.2+9-0devel/llvm/22/patches/patch-compiler-rt_lib_sanitizer_common_sanitizer_linux_cpp
+78-05 files

OpenBSD/ports ALhRbO3devel/indi Makefile

   this now bundles a header-only library which doesn't support 32-bit archs
VersionDeltaFile
1.13+3-0devel/indi/Makefile
+3-01 files

OpenBSD/ports AhBVYqAdevel/py-cffi Makefile distinfo, devel/py-cffi/patches patch-testing_cffi1_test_verify1_py patch-testing_cffi0_test_verify_py

   update to py3-cffi-2.1.1, fix some tests
VersionDeltaFile
1.1+14-0devel/py-cffi/patches/patch-testing_cffi1_test_re_python_py
1.1+14-0devel/py-cffi/patches/patch-testing_cffi0_test_ownlib_py
1.1+12-0devel/py-cffi/patches/patch-testing_cffi1_test_verify1_py
1.1+12-0devel/py-cffi/patches/patch-testing_cffi0_test_verify_py
1.15+2-2devel/py-cffi/distinfo
1.38+1-2devel/py-cffi/Makefile
+55-46 files

OpenBSD/src DWCsepxlib/libcrypto/man s2i_ASN1_INTEGER.3

   s2i_ASN1_INTEGER.3: mark up second use of usr_data for consistency
VersionDeltaFile
1.12+5-3lib/libcrypto/man/s2i_ASN1_INTEGER.3
+5-31 files

OpenBSD/ports O33AUm5net/librenms Makefile distinfo, net/librenms/patches patch-resources_definitions_config_definitions_json patch-daily_sh

   update to librenms-26.8.0
VersionDeltaFile
1.7+1,461-35net/librenms/pkg/PLIST-main
1.43+9-21net/librenms/patches/patch-daily_sh
1.159+4-4net/librenms/distinfo
1.11+1-1net/librenms/patches/patch-resources_definitions_config_definitions_json
1.231+1-1net/librenms/Makefile
1.5+1-0net/librenms/pkg/PLIST-doc
+1,477-626 files

OpenBSD/ports qWQ8E8csysutils/borgmatic distinfo Makefile, sysutils/borgmatic/pkg PLIST

   update to borgmatic-2.1.7
VersionDeltaFile
1.109+20-2sysutils/borgmatic/Makefile
1.48+3-3sysutils/borgmatic/pkg/PLIST
1.89+2-2sysutils/borgmatic/distinfo
+25-73 files

OpenBSD/ports BVRqJhktextproc/py-pygments Makefile distinfo, textproc/py-pygments/pkg PLIST

   update to py3-pygments-2.21.0
VersionDeltaFile
1.34+12-0textproc/py-pygments/pkg/PLIST
1.33+2-2textproc/py-pygments/distinfo
1.64+1-1textproc/py-pygments/Makefile
+15-33 files

OpenBSD/ports 2cuzAQzdevel/py-blockbuster Makefile distinfo

   update to py3-blockbuster-1.5.27
VersionDeltaFile
1.4+2-2devel/py-blockbuster/distinfo
1.4+1-1devel/py-blockbuster/Makefile
+3-32 files

OpenBSD/ports MqqgutKdevel/py-cachetools Makefile distinfo

   update to py3-cachetools-7.1.7
VersionDeltaFile
1.30+2-2devel/py-cachetools/distinfo
1.42+1-1devel/py-cachetools/Makefile
+3-32 files

OpenBSD/ports WYodQLqdevel/py-certifi Makefile distinfo, devel/py-certifi/pkg PLIST

   update to py3-certifi-2026.7.22
VersionDeltaFile
1.15+8-0devel/py-certifi/pkg/PLIST
1.31+2-2devel/py-certifi/distinfo
1.50+1-1devel/py-certifi/Makefile
+11-33 files