LLVM/project c6805abllvm/test/CodeGen/X86 narrow-shl-load.ll

[X86] narrow-shl-load.ll - regenerate test checks (#185211)
DeltaFile
+13-5llvm/test/CodeGen/X86/narrow-shl-load.ll
+13-51 files

LLVM/project f87caablibclc/clc/include/clc/subgroup clc_sub_group_broadcast.h sub_group_broadcast.h, libclc/clc/lib/amdgcn/subgroup sub_group_broadcast.cl

libclc: Rename sub_group_broadcast header

The other clc headers have the clc prefix, so add it.
DeltaFile
+22-0libclc/clc/include/clc/subgroup/clc_sub_group_broadcast.h
+0-22libclc/clc/include/clc/subgroup/sub_group_broadcast.h
+1-1libclc/clc/lib/amdgcn/subgroup/sub_group_broadcast.cl
+1-1libclc/opencl/lib/generic/subgroup/sub_group_broadcast.cl
+24-244 files

ELF Tool Chain/elftoolchain 4358trunk/tests/tet/libelf/tset/common xlate_template.m4

libelf/test-suite: Convert tests to not use 'result' variables.
DeltaFile
+33-67trunk/tests/tet/libelf/tset/common/xlate_template.m4
+33-671 files

LLVM/project 810af8aclang/lib/Headers amdhsa_abi.h, clang/test/Headers amdhsa_abi.cl

clang/AMDGPU: Add missing field to implicit kernarg struct definition (#185209)

I missed this one when figuring out all the field offsets.
DeltaFile
+76-70clang/test/Headers/amdhsa_abi.cl
+4-1clang/lib/Headers/amdhsa_abi.h
+80-712 files

FreeBSD/ports 7a69b76textproc/p5-PDF-Builder distinfo Makefile

textproc/p5-PDF-Builder: update to 3.028

Release Notes:
  https://metacpan.org/dist/PDF-Builder/changes

Work around CPAN not having files in the usual location (anymore?)
DeltaFile
+3-3textproc/p5-PDF-Builder/distinfo
+2-1textproc/p5-PDF-Builder/Makefile
+2-0textproc/p5-PDF-Builder/pkg-plist
+7-43 files

FreeBSD/ports fbc553cmath/octave-forge-apa distinfo Makefile

math/octave-forge-apa: Update to 1.1.1.
DeltaFile
+3-3math/octave-forge-apa/distinfo
+1-1math/octave-forge-apa/Makefile
+4-42 files

FreeBSD/ports 7ecf317textproc/typst distinfo Makefile.crates

textproc/typst: Upgrade to 0.14.2

Changes:
  https://github.com/typst/typst/releases/tag/v0.14.1
  https://github.com/typst/typst/releases/tag/v0.14.2
    Includes fix for a memory-handling vulnerability that upstream
    has labelled "very hard to exploit in practice."

PR:             293639
Approved by:    wen (maintainer)
Security:       Memory-handling vulnerability

(cherry picked from commit 70bb0624d4d629277c11aa57b94f0884dd56ccff)
DeltaFile
+33-27textproc/typst/distinfo
+15-12textproc/typst/Makefile.crates
+1-2textproc/typst/Makefile
+49-413 files

NetBSD/pkgsrc iGtjNrysysutils/xtop distinfo Makefile

   sysutils/xtop: update to 0.3.6

    - No Changelog provided.
VersionDeltaFile
1.4+4-4sysutils/xtop/distinfo
1.4+3-3sysutils/xtop/Makefile
1.4+0-0sysutils/xtop/cargo-depends.mk
+7-73 files

FreeBSD/ports 70bb062textproc/typst distinfo Makefile.crates

textproc/typst: Upgrade to 0.14.2

Changes:
  https://github.com/typst/typst/releases/tag/v0.14.1
  https://github.com/typst/typst/releases/tag/v0.14.2
    Includes fix for a memory-handling vulnerability that upstream
    has labelled "very hard to exploit in practice."

PR:             293639
Approved by:    wen (maintainer)
Security:       Memory-handling vulnerability
DeltaFile
+33-27textproc/typst/distinfo
+15-12textproc/typst/Makefile.crates
+1-2textproc/typst/Makefile
+49-413 files

NetBSD/pkgsrc DFikrTmdoc CHANGES-2026

   doc: Updated net/xfr to 0.9.2
VersionDeltaFile
1.1593+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc nDs4wItnet/xfr distinfo cargo-depends.mk

   net/xfr: update to 0.9.2

   0.9.2 - 2026-03-06
   Changed

       Random payloads by default (issue #34) — TCP/UDP client-sent payloads now use random bytes by default to avoid silently inflated results on WAN-optimized or compressing paths. --random remains as an explicit no-op for clarity, and new --zeros forces zero-filled payloads for compression/dedup testing. Reverse mode sender remains server-side zeros until protocol negotiation is added.

   Fixed

       Windows build regression (issue #37) — pacing_rate_bytes_per_sec() used libc::c_ulong without a #[cfg(target_os = "linux")] guard, breaking compilation on Windows. The function is only called from the linux-gated SO_MAX_PACING_RATE path.
       MPTCP namespace test realism (issue #32) — test-mptcp-ns.sh now combines netem shaping with fq_codel on the shaped transit links, matching common Linux defaults more closely and reducing false-positive high-stream failures caused by shallow unfair queues in the test harness.

   0.9.1 - 2026-03-05
   Added

       MPTCP support (--mptcp) - Multi-Path TCP on Linux 5.6+ (issue #24). Uses IPPROTO_MPTCP at socket creation via socket2 — all TCP features (nodelay, congestion control, window size, bidir, multi-stream, single-port mode) work transparently. The server automatically creates MPTCP listeners when available (no flag needed) — MPTCP listeners accept both MPTCP and regular TCP clients transparently, with silent fallback to TCP if the kernel lacks MPTCP support. Client uses --mptcp to opt in. Clear error message on non-Linux clients or kernels without CONFIG_MPTCP=y.
       Kernel TCP pacing via SO_MAX_PACING_RATE (issue #30) - On Linux, TCP bitrate pacing (-b) now uses the kernel's FQ scheduler with EDT (Earliest Departure Time) for precise per-packet timing, eliminating burst behavior from userspace sleep/wake cycles. Falls back to userspace pacing on non-Linux, MPTCP sockets (not yet supported in kernel, see mptcp_net-next#578), or if the setsockopt fails. Note: -b sets a global bitrate shared across all parallel streams (unlike iperf3 where -b is per-stream). Suggested by the kernel MPTCP maintainer.
       Random payload mode (--random, issue #34) — client can fill TCP/UDP send buffers with random bytes (once at allocation) to reduce compression/dedup artifacts on shaped/WAN links. Current scope is client-sent payloads only: reverse mode sender remains server-side zeros until protocol negotiation is added.


    [13 lines not shown]
VersionDeltaFile
1.4+238-187net/xfr/distinfo
1.4+78-61net/xfr/cargo-depends.mk
1.4+2-2net/xfr/Makefile
+318-2503 files

LLVM/project ac5081allvm/test/Transforms/SLPVectorizer/RISCV same-node-reused.ll

[SLP][NFC]Add a test with the missing matching of same nodes with reuses, NFC
DeltaFile
+98-0llvm/test/Transforms/SLPVectorizer/RISCV/same-node-reused.ll
+98-01 files

NetBSD/src xLvb9Xssys/net/npf npf_socket.c

   ensure softnet lock is held rather re-locking

   If we are about to interact with sockets
    we should just ensure that the softnet_lock is held.
   Because sockets initializations acquire that lock.

   fixes PR kern/60060
VersionDeltaFile
1.5+3-4sys/net/npf/npf_socket.c
+3-41 files

LLVM/project f3f3a62clang/lib/Headers amdhsa_abi.h, clang/test/Headers amdhsa_abi.cl

clang/AMDGPU: Add missing field to implicit kernarg struct definition
DeltaFile
+76-70clang/test/Headers/amdhsa_abi.cl
+4-1clang/lib/Headers/amdhsa_abi.h
+80-712 files

FreeBSD/ports a867897textproc/py-sphinxcontrib-mermaid distinfo Makefile

textproc/py-sphinxcontrib-mermaid: Update to 2.0.1

ChangeLog:      https://github.com/mgaitan/sphinxcontrib-mermaid/blob/master/CHANGELOG.md
Reported by:    portscout!
DeltaFile
+3-3textproc/py-sphinxcontrib-mermaid/distinfo
+1-1textproc/py-sphinxcontrib-mermaid/Makefile
+4-42 files

LLVM/project 4dc9167libclc/clc/include/clc/synchronization clc_sub_group_barrier.h, libclc/clc/lib/amdgcn/synchronization clc_sub_group_barrier.cl

libclc: Move sub_group_barrier to clc
DeltaFile
+23-0libclc/opencl/lib/generic/synchronization/sub_group_barrier.cl
+21-0libclc/clc/include/clc/synchronization/clc_sub_group_barrier.h
+0-21libclc/opencl/lib/amdgcn/synchronization/sub_group_barrier.cl
+18-0libclc/clc/lib/amdgcn/synchronization/clc_sub_group_barrier.cl
+14-0libclc/clc/lib/generic/subgroup/sub_group_barrier.cl
+1-0libclc/clc/lib/generic/SOURCES
+77-213 files not shown
+79-229 files

FreeBSD/ports 126e225devel/py-python-discovery distinfo Makefile

devel/py-python-discovery: Update to 1.1.1

ChangeLog:      https://github.com/tox-dev/python-discovery/releases/tag/1.1.1
Reported by:    portscout!
DeltaFile
+3-3devel/py-python-discovery/distinfo
+1-1devel/py-python-discovery/Makefile
+4-42 files

FreeBSD/ports bb16a2ctextproc/bookokrat distinfo Makefile

textproc/bookokrat: Update to 0.3.7

ChangeLog:      https://github.com/bugzmanov/bookokrat/releases/tag/v0.3.7
Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+3-3textproc/bookokrat/distinfo
+1-1textproc/bookokrat/Makefile
+4-42 files

LLVM/project 9f2f6falibclc/opencl/lib/amdgcn SOURCES, libclc/opencl/lib/amdgcn/mem_fence fence.cl

libclc: Remove target opencl copies of mem_fence
DeltaFile
+0-31libclc/opencl/lib/amdgcn/mem_fence/fence.cl
+0-31libclc/opencl/lib/ptx-nvidiacl/mem_fence/fence.cl
+0-1libclc/opencl/lib/ptx-nvidiacl/SOURCES
+0-1libclc/opencl/lib/amdgcn/SOURCES
+0-644 files

LLVM/project 9dd021dlibclc/opencl/lib/generic/workitem get_global_offset.cl get_group_id.cl, libclc/opencl/lib/ptx-nvidiacl/workitem get_num_sub_groups.cl get_max_sub_group_size.cl

libclc: Remove target definitions of opencl workitem functions

These were just calling the __clc implementation, so move it
to generic.
DeltaFile
+13-0libclc/opencl/lib/generic/workitem/get_global_offset.cl
+13-0libclc/opencl/lib/generic/workitem/get_group_id.cl
+13-0libclc/opencl/lib/generic/workitem/get_local_id.cl
+0-13libclc/opencl/lib/ptx-nvidiacl/workitem/get_num_sub_groups.cl
+0-13libclc/opencl/lib/ptx-nvidiacl/workitem/get_max_sub_group_size.cl
+0-13libclc/opencl/lib/ptx-nvidiacl/workitem/get_sub_group_size.cl
+39-3914 files not shown
+54-18020 files

FreeBSD/ports b6b23c9devel/p5-Sys-Virt distinfo Makefile

devel/p5-Sys-Virt: update to 12.1.0

Sponsored by:   The FreeBSD Foundation
DeltaFile
+3-3devel/p5-Sys-Virt/distinfo
+1-1devel/p5-Sys-Virt/Makefile
+4-42 files

NetBSD/pkgsrc-wip 885cbffrust193 Makefile

rust193: close one pkglint issue by declaring paxctl as a tool.

This comes from main pkgsrc lang/rust/Makefile revision 1.354.
DeltaFile
+2-1rust193/Makefile
+2-11 files

NetBSD/pkgsrc-wip 26a4b16rust194 Makefile distinfo, rust194/files gcc-wrap

rust194: Add a package for rust 1.94.0.

Pkgsrc changes:
 * Update version & checksums.
 * Adapt patches to new vendored crates.

This has so far just been verified to build on NetBSD/amd64.

Upstream changes relative to 1.93.1:

Version 1.94.0 (2026-03-05)
==========================

Language
--------
- [Impls and impl items inherit `dead_code` lint level of the
  corresponding traits and trait items]
  (https://github.com/rust-lang/rust/pull/144113)
- [Stabilize additional 29 RISC-V target features including large

    [159 lines not shown]
DeltaFile
+812-0rust194/Makefile
+215-0rust194/files/gcc-wrap
+179-0rust194/distinfo
+128-0rust194/patches/patch-vendor_memchr-2.7.4_src_memchr.rs
+121-0rust194/cargo.mk
+117-0rust194/do-cross.mk
+1,572-081 files not shown
+4,284-087 files

OpenBSD/ports SfPBpv3devel/uv distinfo crates.inc

   Update to uv 0.10.9 from maintainer

   https://github.com/astral-sh/uv/releases/tag/0.10.9
   https://github.com/astral-sh/uv/releases/tag/0.10.8
   https://github.com/astral-sh/uv/releases/tag/0.10.7
VersionDeltaFile
1.23+22-24devel/uv/distinfo
1.23+10-11devel/uv/crates.inc
1.25+1-1devel/uv/Makefile
+33-363 files

FreeBSD/ports 78d07a6sysutils Makefile, sysutils/py-dbuild Makefile pkg-descr

sysutils/py-dbuild: New port: Build, test, and push FreeBSD OCI container images

dbuild is a build tool for daemonless container images. It reads a
project directory containing Containerfile templates and an optional
.daemonless/config.yaml, then handles the full image lifecycle:
build, integration test, SBOM generation, and registry push.

WWW: https://daemonless.io/guides/dbuild
DeltaFile
+50-0sysutils/py-dbuild/Makefile
+10-0sysutils/py-dbuild/files/patch-dbuild_ci__test.py
+4-0sysutils/py-dbuild/pkg-descr
+3-0sysutils/py-dbuild/distinfo
+1-0sysutils/Makefile
+68-05 files

NetBSD/pkgsrc-wip 1422458py-qtconsole distinfo Makefile

py-qtconsole: Update to 5.7.1
DeltaFile
+3-3py-qtconsole/distinfo
+2-2py-qtconsole/Makefile
+3-0py-qtconsole/PLIST
+8-53 files

NetBSD/pkgsrc-wip 5ad8967py-mpi4py PLIST Makefile

py-mpi4pi: Update to 4.1.1
DeltaFile
+56-16py-mpi4py/PLIST
+10-5py-mpi4py/Makefile
+3-3py-mpi4py/distinfo
+69-243 files

NetBSD/pkgsrc-wip 1bffe82py-distributed Makefile

py-distributed: fix Makefile
DeltaFile
+2-0py-distributed/Makefile
+2-01 files

NetBSD/pkgsrc-wip 9ab19d3py-partd Makefile PLIST

py-partd: Update LICENSE file location, cleanup Makefile
DeltaFile
+1-3py-partd/Makefile
+1-1py-partd/PLIST
+2-42 files

NetBSD/pkgsrc-wip aed48eapy-vega_datasets PLIST

py-vega_datasets: Update PLIST with LICENSE change
DeltaFile
+1-1py-vega_datasets/PLIST
+1-11 files