FreeBSD/ports c150bd8misc/lean-ctx distinfo Makefile

misc/lean-ctx: update 3.8.2 → 3.8.4
DeltaFile
+9-9misc/lean-ctx/distinfo
+4-4misc/lean-ctx/Makefile
+13-132 files

FreeBSD/ports 8867394security/susshi distinfo Makefile

security/susshi: update 0.18.1 → 0.18.2
DeltaFile
+3-3security/susshi/distinfo
+2-2security/susshi/Makefile
+5-52 files

FreeBSD/ports a303844deskutils/thokr distinfo Makefile

deskutils/thokr: update 0.4.1 → 0.5.0
DeltaFile
+353-85deskutils/thokr/distinfo
+178-44deskutils/thokr/Makefile
+531-1292 files

FreeBSD/ports 629b537sysutils/mise distinfo Makefile, sysutils/mise/files patch-cargo-crates_rattler__conda__types-0.47.0_src_platform.rs patch-cargo-crates_rattler__conda__types-0.46.4_src_platform.rs

sysutils/mise: update 2026.6.3 → 2026.6.6
DeltaFile
+107-0sysutils/mise/files/patch-cargo-crates_rattler__conda__types-0.47.0_src_platform.rs
+0-107sysutils/mise/files/patch-cargo-crates_rattler__conda__types-0.46.4_src_platform.rs
+41-41sysutils/mise/distinfo
+20-20sysutils/mise/Makefile
+168-1684 files

Illumos/gate 537e3afusr/src/lib/fm/topo/libtopo/common topo_hc.h, usr/src/lib/fm/topo/modules/common/disk disk_nvme.c

18099 Topology tree NVMe disk nodes missing capacity property
Reviewed by: Robert Mustacchi <rm at fingolfin.org>
Approved by: Gordon Ross <gordon.w.ross at gmail.com>
DeltaFile
+35-9usr/src/lib/fm/topo/modules/common/disk/disk_nvme.c
+1-0usr/src/lib/fm/topo/libtopo/common/topo_hc.h
+36-92 files

FreeBSD/ports d0ec8d7www/caddy Makefile distinfo

www/caddy: Update to 2.11.4 (security)

Changes:
  Security-related patches:
  - caddyhttp: Normalize Windows backslashes in path matcher (thanks
    @Vincent550102)
  - rewrite: Prevent placeholder re-expansion in injected query
    (thanks @WhiskerEnt)
  - templates: Improved stripHTML action to more reliably remove
    malformed HTML (thanks to @jmrcsnchz)
  - caddyhttp: Ignore header fields with underscores to prevent
    collisions (thanks @Vincent550102 for the report and @dunglas for
    the patch)

    NB: These security patches may be breaking if your application
    relies on the buggy behaviors.

  What's Changed:
  - reverseproxy: further prevent body closes from dial errors by

    [37 lines not shown]
DeltaFile
+10-16www/caddy/Makefile
+5-5www/caddy/distinfo
+0-4www/caddy/modules.mk
+15-253 files

FreeBSD/ports 532e241security/vuxml/vuln 2026.xml

security/vuxml: Add caddy < 2.11.4
DeltaFile
+49-0security/vuxml/vuln/2026.xml
+49-01 files

FreeBSD/ports 480501bwww/caddy Makefile distinfo

www/caddy: Update to 2.11.4 (security)

Changes:
  Security-related patches:
  - caddyhttp: Normalize Windows backslashes in path matcher (thanks
    @Vincent550102)
  - rewrite: Prevent placeholder re-expansion in injected query
    (thanks @WhiskerEnt)
  - templates: Improved stripHTML action to more reliably remove
    malformed HTML (thanks to @jmrcsnchz)
  - caddyhttp: Ignore header fields with underscores to prevent
    collisions (thanks @Vincent550102 for the report and @dunglas for
    the patch)

    NB: These security patches may be breaking if your application
    relies on the buggy behaviors.

  What's Changed:
  - reverseproxy: further prevent body closes from dial errors by

    [35 lines not shown]
DeltaFile
+10-16www/caddy/Makefile
+5-5www/caddy/distinfo
+0-4www/caddy/modules.mk
+15-253 files

LLVM/project efc03bdllvm/test/tools/llvm-cov exclude-markers.test, llvm/tools/llvm-cov CodeCoverage.cpp CoverageViewOptions.h

[llvm-cov] Add inline exclusion marker support for coverage reporting

Add --exclude-line-regex, --exclude-region-start-regex, and
--exclude-region-stop-regex options to llvm-cov. These allow excluding
lines from coverage totals based on inline source comments.

Defaults: LCOV_EXCL_LINE (single line), LCOV_EXCL_START/LCOV_EXCL_STOP
(region). This brings parity with lcov/gcov's exclusion markers and
kcov's --exclude-line regex support.

The implementation scans source files for markers when loaded, builds a
per-file set of excluded line numbers, and consistently applies
exclusions across all output formats:
- Line coverage totals (subtracted in prepareFileReports)
- Region coverage totals (regions starting on excluded lines)
- Function coverage totals (functions starting on excluded lines)
- "show" text output (no count column, no red highlighting)
- "show" HTML output (skipped-line class instead of uncovered-line)
- JSON export segments (filtered out)

    [6 lines not shown]
DeltaFile
+290-0llvm/test/tools/llvm-cov/exclude-markers.test
+62-1llvm/tools/llvm-cov/CodeCoverage.cpp
+58-0llvm/tools/llvm-cov/CoverageViewOptions.h
+36-15llvm/tools/llvm-cov/CoverageExporterLcov.cpp
+32-0llvm/tools/llvm-cov/CoverageReport.cpp
+27-0llvm/tools/llvm-cov/CoverageSummaryInfo.h
+505-1619 files not shown
+618-3525 files

LLVM/project 6e609f4llvm/test/tools/llvm-cov exclude-markers.test, llvm/test/tools/llvm-cov/Inputs/exclude-markers-custom report-custom.cpp

[llvm-cov] Add inline exclusion marker support for coverage reporting

Add --exclude-line-regex, --exclude-region-start-regex, and
--exclude-region-stop-regex options to llvm-cov. These allow excluding
lines from coverage totals based on inline source comments.

Defaults: LCOV_EXCL_LINE (single line), LCOV_EXCL_START/LCOV_EXCL_STOP
(region). This brings parity with lcov/gcov's exclusion markers and
kcov's --exclude-line regex support.

The implementation scans source files for markers when loaded, builds a
per-file set of excluded line numbers, and subtracts them from the line
coverage totals in prepareFileReports(). Excluded lines are also hidden
from the "show" output (no count column, no red highlighting).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply at anthropic.com>
DeltaFile
+258-0llvm/test/tools/llvm-cov/exclude-markers.test
+62-1llvm/tools/llvm-cov/CodeCoverage.cpp
+58-0llvm/tools/llvm-cov/CoverageViewOptions.h
+18-0llvm/test/tools/llvm-cov/Inputs/exclude-markers-custom-region/report-custom-region.cpp
+18-0llvm/test/tools/llvm-cov/Inputs/exclude-markers-region/report-region.cpp
+16-0llvm/test/tools/llvm-cov/Inputs/exclude-markers-custom/report-custom.cpp
+430-117 files not shown
+513-1923 files

FreeBSD/ports 08f97dcaudio/praat/files patch-makefiles_makefile.defs.freebsd.alsa patch-Makefile

audio/praat: update to 6.4.67, latest upstream

Release notes as always at
        https://www.fon.hum.uva.nl/praat/manual/What_s_new_.html

The build system has been revamped (in unfortunate ways), I ought to
engage with upstream to get it to build well with meson on FreeBSD,
so we can abandon all the Makefile hacks.
DeltaFile
+0-20audio/praat/files/patch-makefiles_makefile.defs.freebsd.alsa
+16-0audio/praat/files/patch-Makefile
+11-0audio/praat/files/patch-external_glpk_glpspx02.c
+11-0audio/praat/files/patch-external_whispercpp_Makefile
+11-0audio/praat/files/patch-fon_Sound__audio.cpp
+11-0audio/praat/files/patch-main_main__Praat.cpp
+60-204 files not shown
+90-2710 files

FreeBSD/ports 586b4d3audio/musescore pkg-plist Makefile, audio/musescore/files patch-src_framework_ui_CMakeLists.txt patch-src_framework_ui_uimodule.cpp

audio/musescore: update to 4.7.3, latest upstream

The 4.7 series announcements are at
        https://musescore.org/en/4.7

Submitted by Keith White, additional patches for build and bump to .3 by me.
DeltaFile
+132-145audio/musescore/pkg-plist
+50-24audio/musescore/Makefile
+22-8audio/musescore/files/patch-src_framework_ui_CMakeLists.txt
+4-10audio/musescore/files/patch-src_framework_ui_uimodule.cpp
+3-11audio/musescore/distinfo
+0-13audio/musescore/files/patch-src_project_internal_exporttype.h
+211-2115 files not shown
+234-23311 files

LLVM/project a722324clang/test/Driver hip-include-path.hip hexagon-toolchain-picolibc.c, clang/test/Preprocessor iwithprefix.c

Update remaining tests for usage of CLANG_RESOURCE_DIR (#202475)

We would like to enable the clang CMake option CLANG_RESOURCE_DIR on our
build bots, but found that a few tests that need updating since they
make assumptions about compiler paths that are modified when using
CLANG_RESOURCE_DIR. This is the final change to update the remaining 3
test failures we found.

In the previous change (#197154), I added a definition for
`%clang-resource-dir` which contains the path printed by the compiler
when run with `-print-resource-dir`. We pass that value to the remaining
tests where needed through the RUN lines and use that to verify the
correct path rather than just trying to guess at it using a complex
regex.

One exception was a test which uses `-###` which escapes the backslashes
on Windows. For that test I just used tr+sed to escape the backslashes so
that the matching would work in that particular test only.
DeltaFile
+16-16clang/test/Driver/hip-include-path.hip
+12-8clang/test/Driver/hexagon-toolchain-picolibc.c
+2-2clang/test/Preprocessor/iwithprefix.c
+30-263 files

NetBSD/pkgsrc 5M5zgv7doc CHANGES-2026

   doc: begin freeze for pkgsrc-2026Q2
VersionDeltaFile
1.3792+2-1doc/CHANGES-2026
+2-11 files

FreeBSD/ports 8b6b79fnet/traefik Makefile distinfo

net/traefik: Update to upstream release 3.7.5

Details:
- Update to upstream release 3.7.5, see:
  https://github.com/traefik/traefik/releases/tag/v3.7.5
- Fixes 2 CVEs in the process, see below

MFH:            2026Q2
Security:       CVE-2026-48020
                CVE-2026-48491
(cherry picked from commit 183293183e8a899aa5c4e22cd61b37597a767cab)
DeltaFile
+7-2net/traefik/Makefile
+3-1net/traefik/distinfo
+10-32 files

LLVM/project ae1c507mlir/lib/Dialect/SparseTensor/Transforms SparseTensorCodegen.cpp, mlir/test/Dialect/SparseTensor sparse_pack.mlir

[mlir][sparse_tensor] Fix out-of-bounds read in SparseAssembleOpConverter (#203289)

The assemble codegen loop iterates over the level rank but asserted on
`getDimShape()[lvl]`, which is sized by the dimension rank. Index the
level shape instead, matching the loop bound and the next line.

Fixes #203225.
DeltaFile
+18-0mlir/test/Dialect/SparseTensor/sparse_pack.mlir
+1-1mlir/lib/Dialect/SparseTensor/Transforms/SparseTensorCodegen.cpp
+19-12 files

LLVM/project 8796d37mlir/include/mlir/Dialect/SparseTensor/Transforms Passes.td Passes.h, mlir/lib/Dialect/SparseTensor/Transforms/Utils IterationGraphSorter.cpp

[MLIR][SparseTensor] Added Sparse Outer Loop Ordering Strategy (#172198)

This PR builds upon the infrastructure set up for Sparse Tensor Loop
Ordering Heuristics (#154656) and the already existing Dense Outer loop
ordering strategy (#160168).
DeltaFile
+165-0mlir/test/Dialect/SparseTensor/sparse_loop_ordering.mlir
+43-11mlir/lib/Dialect/SparseTensor/Transforms/Utils/IterationGraphSorter.cpp
+3-1mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td
+1-0mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.h
+212-124 files

FreeBSD/src 69e2097lib/libc/posix1e acl_to_text_nfs4.c

acl_to_text_nfs4.c: Fix a snprintf() for large uid

Commit 6e7c10c79dea fixed a couple of snprintf()s for large
uid/gid numbers above 2Gig.  This patch fixes another one.

Reviewed by:    rmacklem
Differential Revision:  https://reviews.freebsd.org/D57561
DeltaFile
+1-1lib/libc/posix1e/acl_to_text_nfs4.c
+1-11 files

LLVM/project 7e41e3aclang/lib/CodeGen CGHLSLRuntime.cpp, llvm/test/Analysis/CostModel/AMDGPU minimumnum.ll maximumnum.ll

Rebase, fix reported crash

Created using spr 1.3.7
DeltaFile
+736-0llvm/test/CodeGen/AMDGPU/shl.v2i64.ll
+407-35llvm/test/Analysis/CostModel/AMDGPU/minimumnum.ll
+364-56llvm/test/Analysis/CostModel/AMDGPU/maximumnum.ll
+210-180llvm/test/CodeGen/AMDGPU/dynamic_stackalloc.ll
+362-0llvm/test/CodeGen/AMDGPU/wmma-coexecution-valu-hazards.mir
+174-171clang/lib/CodeGen/CGHLSLRuntime.cpp
+2,253-442285 files not shown
+8,805-1,854291 files

LLVM/project 8e3c10fllvm/test/tools/llvm-cov exclude-markers.test, llvm/test/tools/llvm-cov/Inputs/exclude-markers report.cpp

[llvm-cov] Add inline exclusion marker support for coverage reporting

Add --exclude-line-regex, --exclude-region-start-regex, and
--exclude-region-stop-regex options to llvm-cov. These allow excluding
lines from coverage totals based on inline source comments.

Defaults: LCOV_EXCL_LINE (single line), LCOV_EXCL_START/LCOV_EXCL_STOP
(region). This brings parity with lcov/gcov exclusion markers and
kcov --exclude-line regex support.

The implementation scans source files for markers when loaded, builds a
per-file set of excluded line numbers, and subtracts them from the line
coverage totals in prepareFileReports().

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply at anthropic.com>
DeltaFile
+222-0llvm/test/tools/llvm-cov/exclude-markers.test
+62-1llvm/tools/llvm-cov/CodeCoverage.cpp
+58-0llvm/tools/llvm-cov/CoverageViewOptions.h
+18-0llvm/test/tools/llvm-cov/Inputs/exclude-markers-region/report-region.cpp
+18-0llvm/test/tools/llvm-cov/Inputs/exclude-markers-custom-region/report-custom-region.cpp
+16-0llvm/test/tools/llvm-cov/Inputs/exclude-markers/report.cpp
+394-111 files not shown
+435-117 files

LLVM/project c601294llvm/test/Transforms/SLPVectorizer/X86 runtime-alias-checks.ll

[SLP][NFC]Add a test with the unsupported runtime checks



Reviewers: 

Pull Request: https://github.com/llvm/llvm-project/pull/203728
DeltaFile
+100-0llvm/test/Transforms/SLPVectorizer/X86/runtime-alias-checks.ll
+100-01 files

OpenBSD/ports C0X2oYzwww/chromium distinfo, www/chromium/patches patch-chrome_browser_password_manager_chrome_password_manager_client_cc patch-content_browser_renderer_host_render_widget_host_view_aura_cc

   update to 149.0.7827.114
VersionDeltaFile
1.153+6-6www/ungoogled-chromium/distinfo
1.29+4-4www/chromium/patches/patch-chrome_browser_password_manager_chrome_password_manager_client_cc
1.476+4-4www/chromium/distinfo
1.29+4-4www/ungoogled-chromium/patches/patch-chrome_browser_password_manager_chrome_password_manager_client_cc
1.116+3-3www/chromium/patches/patch-content_browser_renderer_host_render_widget_host_view_aura_cc
1.44+3-3www/ungoogled-chromium/patches/patch-content_browser_renderer_host_render_widget_host_view_aura_cc
+24-244 files not shown
+28-2810 files

FreeBSD/ports 1832931net/traefik Makefile distinfo

net/traefik: Update to upstream release 3.7.5

Details:
- Update to upstream release 3.7.5, see:
  https://github.com/traefik/traefik/releases/tag/v3.7.5
- Fixes 2 CVEs in the process, see below

MFH:            2026Q2
Security:       CVE-2026-48020
                CVE-2026-48491
DeltaFile
+7-2net/traefik/Makefile
+3-1net/traefik/distinfo
+10-32 files

OpenBSD/src 8fBZcoVusr.bin/tmux window-copy.c tmux.1

   With mode-keys vi, keep cursor in the same position relative to the text
   when scrolling. GitHub issue 5216 from Arseniy Simonov.
VersionDeltaFile
1.406+13-1usr.bin/tmux/window-copy.c
1.1088+11-1usr.bin/tmux/tmux.1
+24-22 files

FreeBSD/ports 373e76asecurity/nss distinfo Makefile

security/nss: update to 3.125

Release Notes:
  https://firefox-source-docs.mozilla.org/security/nss/releases/nss_3_125.html
DeltaFile
+3-3security/nss/distinfo
+1-1security/nss/Makefile
+4-42 files

FreeBSD/ports fe7bff0benchmarks/clpeak distinfo Makefile

benchmarks/clpeak: update to 2.0.13

Changes:        https://github.com/krrishnarraj/clpeak/releases/tag/2.0.13
Reported by:    GitHub (watch releases)
DeltaFile
+3-3benchmarks/clpeak/distinfo
+1-1benchmarks/clpeak/Makefile
+4-42 files

FreeBSD/ports ec30d99x11-wm/cagebreak distinfo Makefile

x11-wm/cagebreak: update to 3.2.0

Changes:        https://github.com/project-repo/cagebreak/releases/tag/3.2.0
Reported by:    GitHub (watch releases)
DeltaFile
+3-3x11-wm/cagebreak/distinfo
+1-1x11-wm/cagebreak/Makefile
+4-42 files

FreeBSD/ports df44f6enet/sendme/files patch-cargo-crates_netdev-0.43.0_src_os_unix_link__speed.rs

net/sendme: fix build on non-x86

The netdev crate has the value of ioctl SIOCGIFXMEDIA hardcoded for x86.
Add definitions for other architectures to fix the build.

See also:       https://github.com/shellrow/netdev/issues/170
Approved by:    portmgr (build fix blanket)
MFH:            2026Q2

(cherry picked from commit d4de8e372e2e8f829afe06d2ea4aa8528d2d96d2)
DeltaFile
+20-0net/sendme/files/patch-cargo-crates_netdev-0.43.0_src_os_unix_link__speed.rs
+20-01 files

FreeBSD/ports c3f9002graphics/s10sh Makefile, graphics/s10sh/files patch-bytesex.h

graphics/s10sh: fix endianess code

Instead of hard-coding a list of architectures, defer to <endian.h>.
This fixes the build on all platforms tested.

MFH:            2026Q2
(cherry picked from commit c653d172b2678fed4bdd92782c593b995d41c5e5)
DeltaFile
+19-9graphics/s10sh/files/patch-bytesex.h
+0-5graphics/s10sh/Makefile
+19-142 files

FreeBSD/ports 50f63e2devel/smv Makefile

devel/smv: builds fine on armv7

MFH:            2026Q2
(cherry picked from commit 25f7c062b26ce5065825b50bf673de76d79c51f3)
DeltaFile
+0-3devel/smv/Makefile
+0-31 files