multimedia/qt6-multimedia: Mask X11-only headers
When the Qt stack is built with X11 disabled globally, certain private
headers should not be included in the final pkg-plist.
This does not affect the default settings, so not bumping PORTREVISON.
Reported by: angry_vincent on #freebsd-desktop
MFH: 2026Q3
(cherry picked from commit 7ae4bbc02b5b96936d4bef4bb2561d38b704def3)
finance/ktoblzcheck-data: Update bank data
Bank data is valid from 2026-06-08 until 2026-09-06.
Integrate my data update script into the port to keep it under version
control, easier future updates of the port, and for full transparency.
MFH: 2026Q3
(cherry picked from commit 4439524120c6e2c84d3d7394e000024624dd31a2)
finance/ktoblzcheck-data: Update bank data
Bank data is valid from 2026-06-08 until 2026-09-06.
Integrate my data update script into the port to keep it under version
control, easier future updates of the port, and for full transparency.
MFH: 2026Q2
textproc/py-commonmark: Remove duplicate
textproc/py-CommonMark should be renamed into textproc/py-commonmark though
to match https://pypi.org/project/commonmark/
PR: 296071
Reported by: Matthew Wener <bugzilla at FreeBSD.org>
ena: Put taskqueues into correct domain if !RSS
When compiled without 'options RSS', the ena driver created taskqueues
using taskqueue_start_threads_cpuset passing a mask value of NULL,
both in the ena_setup_tx_resources path (for enqueues) and in the
ena_create_io_queues path (for the completion-processing).
In the default configuration, on most EC2 instances, this results in
taskqueues running in the right NUMA domain, but only by accident; in
non-default configurations (e.g. with with multiple EBS volumes
attached and associated NVMe taskqueues) the taskqueues may land in
the wrong NUMA domain even on instance types where the one-EBS-one-ENA
case produces the desired results.
Set (struct ena_que)->domain and use that to inform the choice of CPU
sets. On a c8gn.48xlarge EC2 instance this doubles throughput on a
32-TCP-stream benchmark.
Reviewed by: akiyano
[3 lines not shown]