FreeBSD/ports 41bcc68net-mgmt/prometheus3 distinfo Makefile

net-mgmt/prometheus3: Update to 3.11.2

Changelog:
https://github.com/prometheus/prometheus/releases/tag/v3.11.2
DeltaFile
+7-7net-mgmt/prometheus3/distinfo
+1-2net-mgmt/prometheus3/Makefile
+8-92 files

FreeBSD/ports d50e153Mk/Uses gnome.mk, deskutils/gnotime Makefile

gnome: retire INSTALLS_OMF

INSTALLS_OMF triggered execution of scrollkeeper-install and -unsinstall
which are script only doing exit 0 so useless.
DeltaFile
+0-15Mk/Uses/gnome.mk
+1-2deskutils/gnotime/Makefile
+1-172 files

pkgng/pkgng ee156e7libpkg pkg_delete.c pkg_ports.c, libpkg/private pkg.h

triggers: fix execution of per packages triggers on pkg add/register
DeltaFile
+4-6libpkg/pkg_delete.c
+6-0libpkg/pkg_ports.c
+2-4libpkg/pkg_add.c
+1-4libpkg/triggers.c
+1-1libpkg/private/pkg.h
+14-155 files

LLVM/project 214f2declang/docs ReleaseNotes.rst, clang/lib/Sema SemaTemplateDeductionGuide.cpp

[clang] Fix assertion crash in CTAD for alias templates with non-dependent type (#191885)

When building deduction guides, clang assumes that the return type of
the deduction guide would always be a dependent type
(`TemplateSpecializationType`), but this is not true for invalid case,
where the alias RHS is a non-dependent class template specialization, it
is represented as a `RecordType` instead.

Fixes #190517.
DeltaFile
+13-2clang/lib/Sema/SemaTemplateDeductionGuide.cpp
+10-0clang/test/SemaCXX/cxx20-ctad-type-alias.cpp
+1-0clang/docs/ReleaseNotes.rst
+24-23 files

FreeNAS/freenas 751b052tests/api2 test_zpool_scrub.py

fix
DeltaFile
+20-14tests/api2/test_zpool_scrub.py
+20-141 files

FreeBSD/ports efd4077www/web2ldap Makefile, www/web2ldap/files patch-setup.py

www/web2ldap: Fix build with setuptools 81.0.0

This patch make web2ldap build against both setuptools 63.1.0 (currently
in ports) and 81.0.0.

PR:     294472
DeltaFile
+17-0www/web2ldap/files/patch-setup.py
+1-1www/web2ldap/Makefile
+18-12 files

Linux/linux 1c3b68finclude/linux sched.h, kernel/sched fair.c core.c

Merge tag 'sched-core-2026-04-13' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull scheduler updates from Ingo Molnar:
 "Fair scheduling updates:
   - Skip SCHED_IDLE rq for SCHED_IDLE tasks (Christian Loehle)
   - Remove superfluous rcu_read_lock() in the wakeup path (K Prateek Nayak)
   - Simplify the entry condition for update_idle_cpu_scan() (K Prateek Nayak)
   - Simplify SIS_UTIL handling in select_idle_cpu() (K Prateek Nayak)
   - Avoid overflow in enqueue_entity() (K Prateek Nayak)
   - Update overutilized detection (Vincent Guittot)
   - Prevent negative lag increase during delayed dequeue (Vincent Guittot)
   - Clear buddies for preempt_short (Vincent Guittot)
   - Implement more complex proportional newidle balance (Peter Zijlstra)
   - Increase weight bits for avg_vruntime (Peter Zijlstra)
   - Use full weight to __calc_delta() (Peter Zijlstra)

  RT and DL scheduling updates:
   - Fix incorrect schedstats for rt and dl thread (Dengjun Su)
   - Skip group schedulable check with rt_group_sched=0 (Michal Koutný)

    [57 lines not shown]
DeltaFile
+363-152kernel/sched/fair.c
+272-62kernel/sched/core.c
+172-103kernel/sched/topology.c
+64-31include/linux/sched.h
+26-38kernel/sched/rt.c
+42-8kernel/sched/sched.h
+939-39419 files not shown
+1,101-46625 files

FreeBSD/ports 423620acad/yosys pkg-plist distinfo

cad/yosys: Update 0.63 => 0.64

Summary: * Strip all the executables, not only the main one

Approved by:            yuri@ (maintainer, Mentor)
Approved by:            db@, yuri@ (Mentors, implicit)
Differential Revision:  https://reviews.freebsd.org/D56397
DeltaFile
+15-0cad/yosys/pkg-plist
+3-3cad/yosys/distinfo
+2-2cad/yosys/Makefile
+20-53 files

FreeNAS/freenas 1573a9atests/api2 test_zpool_scrub.py

fix
DeltaFile
+12-9tests/api2/test_zpool_scrub.py
+12-91 files

pkgng/pkgng bf7cbe6libpkg triggers.c, tests/frontend triggers.sh

triggers: make the perpackage trigger per file instead of per directory
DeltaFile
+53-1tests/frontend/triggers.sh
+8-7libpkg/triggers.c
+61-82 files

NetBSD/pkgsrc UBeXECfdoc CHANGES-2026

   doc: Updated multimedia/streamlink to 8.3.0
VersionDeltaFile
1.2322+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc oCdu4F7multimedia/streamlink distinfo Makefile

   multimedia/streamlink: update to streamlink-8.3.0

   Changelog:

   == streamlink 8.3.0 (2026-04-10)

   - Added: support for choosing the `--interface` by name on non-Windows
            systems, with optional prefixes, similar to curl
   - Added: support for also checking stream segments in
            `HLSStream.parse_variant_playlist()` by setting
            `check_streams="segments"`
   - Fixed: stdout/stderr streams in `ProcessOutput` not being fully
            line-buffered
   - Updated plugins:
     - cdnbg: rewritten and fixed plugin
     - nicolive: added websocket reconnect attempts on HLS decryption key
                 retrieval failure
     - soop: migrated to sooplive.com
     - telefe: rewritten and fixed plugin

    [41 lines not shown]
VersionDeltaFile
1.27+4-4multimedia/streamlink/distinfo
1.47+2-2multimedia/streamlink/Makefile
+6-62 files

Linux/linux 33c66ebarch/x86/events msr.c, arch/x86/events/amd ibs.c

Merge tag 'perf-core-2026-04-13' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull performance events updates from Ingo Molnar:
 "Core updates:

   - Try to allocate task_ctx_data quickly, to optimize O(N^2) algorithm
     on large systems with O(100k) threads (Namhyung Kim)

  AMD PMU driver IBS support updates and fixes, by Ravi Bangoria:
   - Fix interrupt accounting for discarded samples
   - Fix a Zen5-specific quirk
   - Fix PhyAddrVal handling
   - Fix NMI-safety with perf_allow_kernel()
   - Fix a race between event add and NMIs

  Intel PMU driver updates:
   - Only check GP counters for PEBS constraints validation (Dapeng Mi)

  MSR driver:

    [27 lines not shown]
DeltaFile
+246-18arch/x86/events/amd/ibs.c
+3-79arch/x86/events/msr.c
+36-19arch/x86/include/asm/perf_event.h
+21-22kernel/events/core.c
+14-8arch/x86/events/intel/core.c
+4-2arch/x86/include/asm/amd/ibs.h
+324-1484 files not shown
+331-15210 files

FreeNAS/freenas 9d97f8ftests/api2 test_zpool_scrub.py

fix
DeltaFile
+5-2tests/api2/test_zpool_scrub.py
+5-21 files

OpenZFS/src 6692b6e.github/workflows zfs-qemu-packages.yml zfs-qemu.yml, .github/workflows/scripts qemu-7-prepare.sh

CI: Disable ZIP file artifacts, update versions

The GH artifacts action now lets you disable auto-zipping your
artifacts.  Previously, GH would always automatically put your
artifacts in a ZIP file.  This is annoying when your artifacts
are already in a tarball.

Also update the following action versions

checkout:               v4 -> v6
upload-artifact:        v4 -> v7
download-artifact:      v4 -> v8

Lastly, fix a issue where zfs-qmeu-packages now needs to power
cycle the VM.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Reviewed-by: George Melikov <mail at gmelikov.ru>
Signed-off-by: Tony Hutter <hutter2 at llnl.gov>
Closes #18411
DeltaFile
+12-11.github/workflows/zfs-qemu-packages.yml
+20-2.github/workflows/scripts/qemu-7-prepare.sh
+9-7.github/workflows/zfs-qemu.yml
+4-3.github/workflows/checkstyle.yaml
+3-3.github/workflows/zloop.yml
+2-2.github/workflows/smatch.yml
+50-282 files not shown
+54-308 files

LLVM/project 152592bflang/lib/Semantics definable.cpp, flang/test/Semantics cuf26.cuf

[flang][cuda] Allow host variables to be defined in device subprograms under -gpu=unified (#192118)

When `-gpu=unified` (or `-gpu=mem:unified`) is enabled, host variables
should be definable in device subprograms because HMM/ATS makes all host
memory accessible from the GPU.

The definability check in `WhyNotDefinableBase` was unconditionally
rejecting host variables in device contexts. This fix skips that check
when `CudaUnified` is enabled.
DeltaFile
+15-0flang/test/Semantics/cuf26.cuf
+3-1flang/lib/Semantics/definable.cpp
+18-12 files

FreeNAS/freenas a1172fesrc/middlewared/middlewared/api/v26_0_0 zpool_scrub.py, src/middlewared/middlewared/api/v27_0_0 zpool_scrub.py

remove wait option
DeltaFile
+37-38tests/api2/test_zpool_scrub.py
+6-9src/middlewared/middlewared/plugins/zpool/scrub_impl.py
+1-1src/middlewared/middlewared/plugins/pool_/scrub.py
+0-2src/middlewared/middlewared/api/v26_0_0/zpool_scrub.py
+0-2src/middlewared/middlewared/api/v27_0_0/zpool_scrub.py
+1-0src/middlewared/middlewared/plugins/zpool/scrub.py
+45-526 files

FreeBSD/ports 6f1ada6devel/terraform-ls distinfo Makefile

devel/terraform-ls: Update to 0.38.6

ChangeLog:
https://github.com/hashicorp/terraform-ls/releases/tag/v0.38.6
DeltaFile
+5-5devel/terraform-ls/distinfo
+1-2devel/terraform-ls/Makefile
+6-72 files

FreeBSD/ports 8ba6a2csecurity/osv-scanner distinfo Makefile

security/osv-scanner: Update to 2.3.5

ChangeLog:
https://github.com/google/osv-scanner/releases/tag/v2.3.5
DeltaFile
+5-5security/osv-scanner/distinfo
+3-4security/osv-scanner/Makefile
+8-92 files

LLVM/project 6cf19c6clang/cmake/caches Fuchsia.cmake Fuchsia-stage2-instrumented.cmake

[clang][cmake] Add check-clang-extra to bootstrap targets for Fuchsia (#192104)

Not having these prevents us from testing the clang-tool-extra targets
in our CI and multi stage builds.
DeltaFile
+2-0clang/cmake/caches/Fuchsia.cmake
+1-0clang/cmake/caches/Fuchsia-stage2-instrumented.cmake
+3-02 files

Linux/linux 4b2bdc2arch/x86/kernel unwind_orc.c, scripts/livepatch klp-build Makefile

Merge tag 'objtool-core-2026-04-13' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull objtool updates from Ingo Molnar:

 - KLP support updates and fixes (Song Liu)

 - KLP-build script updates and fixes (Joe Lawrence)

 - Support Clang RAX DRAP sequence, to address clang false positive
   (Josh Poimboeuf)

 - Reorder ORC register numbering to match regular x86 register
   numbering (Josh Poimboeuf)

 - Misc cleanups (Wentong Tian, Song Liu)

* tag 'objtool-core-2026-04-13' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  objtool/x86: Reorder ORC register numbering
  objtool: Support Clang RAX DRAP sequence

    [17 lines not shown]
DeltaFile
+76-55scripts/livepatch/klp-build
+77-24tools/objtool/elf.c
+93-6tools/objtool/klp-diff.c
+23-9arch/x86/kernel/unwind_orc.c
+18-13tools/objtool/arch/x86/orc.c
+20-0scripts/livepatch/Makefile
+307-1076 files not shown
+337-12612 files

FreeBSD/ports 38aafd6print/plutobook distinfo Makefile

print/plutobook: Update to 0.17.0

Changelog: https://github.com/plutoprint/plutobook/releases/tag/v0.17.0
DeltaFile
+3-3print/plutobook/distinfo
+1-1print/plutobook/Makefile
+4-42 files

LLVM/project 1a81469clang/lib/CIR/Dialect/Transforms LoweringPrepare.cpp

address comment
DeltaFile
+1-2clang/lib/CIR/Dialect/Transforms/LoweringPrepare.cpp
+1-21 files

FreeBSD/ports af82ab5devel/freebsd-sysroot Makefile

devel/freebsd-sysroot: force rebuild with pkg 2.7.1

pkg 2.7.1 will make sure at installation this port is not expecting
any shlib to be required to the exception of the private libraries
which are not part of this sysroot, but some of the libraries in this
sysroot are linked to those libprivate so they are listed in the
required field, add NO_SHLIB_REQUIRES_GLOB=libprivate* to get rid of
those.

PR:     293874
DeltaFile
+3-0devel/freebsd-sysroot/Makefile
+3-01 files

FreeBSD/ports 7aba3b5ports-mgmt/pkg distinfo Makefile

ports-mgmt/pkg: update to 2.7.1

Major Changes:
- install: respect -q
- vital: now explicitly state the SAT solver issue are due to a vital package
- lua: add pkg.exec_capture, a pkg.exec version capturing stdout/stderr
- Honor --repository flag for disabled repos as documented
Other Changes:
- version: add IGNORE_MAJOR to pkg.conf and document it
- pkg_config: accept int as boolean converted via != 0
- lock: do not error in expected (un)lock state
- backup_libraries: now fully respects rootdir
- backup libraries: atomic replacement of the library
- DB: loudly complain if the DB cannot be opened
- shlibs: also remove ignored shlibs provided from shlibs required
DeltaFile
+3-3ports-mgmt/pkg/distinfo
+1-1ports-mgmt/pkg/Makefile
+4-42 files

LLVM/project 13d67bfclang/test/CodeGen amdgpu-builtin-processor-is.c amdgpu-builtin-is-invocable.c, clang/test/CodeGenCXX dynamic-cast-address-space.cpp

[NFC][SPIRV] Re-factor feature map initialisation for AMDGCN flavoured SPIR-V (#192067)

AMDGCN flavoured SPIR-V must support the union of all AMDGCN features,
as we cannot early adjudicate on this or that feature's availability. We
were hand filling in the feature map, which was error prone and led to
constant grind as new features were added. This patch moves to a
programmatic approach where we iterate through all AMDGCN GPUs and
collect features, thus establishing the union. With this change AMDGCN
flavoured SPIR-V will automatically pick up new features as they come
along.
DeltaFile
+11-63llvm/lib/TargetParser/TargetParser.cpp
+2-2clang/test/CodeGenCXX/dynamic-cast-address-space.cpp
+1-1clang/test/CodeGen/amdgpu-builtin-processor-is.c
+1-1clang/test/CodeGen/amdgpu-builtin-is-invocable.c
+15-674 files

FreeBSD/ports b8b2ade. MOVED, devel Makefile

devel/prjpeppercorn111: Remove port

This ports gets removed immediately without a grace period as it is only
useful in combination with the devel/nextpnr* ports which no longer support
this particular version of prjpeppercorn.

Reviewed by:    rene
DeltaFile
+0-32devel/prjpeppercorn111/Makefile
+0-15devel/prjpeppercorn111/pkg-plist
+0-5devel/prjpeppercorn111/distinfo
+0-4devel/prjpeppercorn111/pkg-descr
+0-1devel/Makefile
+1-0MOVED
+1-576 files

FreeBSD/src 956acdcsys/net if_loop.c

loopback: Account for packet drops

Make loopback packet drops more obvious by reporting them
in interface stats visable via netstat -ni
Since loopback uses netisr, packets can be dropped if the
netisr queue overflows.  These drops are visible via
netisr -Q, but its not an obvious place to look.

Differential Revision: https://reviews.freebsd.org/D56356
Reviewed by: glebius, tuexen
Sponsored by: Netflix
DeltaFile
+7-3sys/net/if_loop.c
+7-31 files

FreeBSD/ports b6babbctextproc/pdf-form-filler-mcp Makefile distinfo

textproc/pdf-form-filler-mcp: update 0.1.0 → 0.1.1
DeltaFile
+3-7textproc/pdf-form-filler-mcp/Makefile
+3-3textproc/pdf-form-filler-mcp/distinfo
+6-102 files

FreeBSD/ports e2ddaa9devel/cargo-deny distinfo Makefile

devel/cargo-deny: update 0.19.1 → 0.19.2
DeltaFile
+3-3devel/cargo-deny/distinfo
+1-1devel/cargo-deny/Makefile
+4-42 files