NetBSD/pkgsrc LZ1XGFEmk/compiler gcc.mk

   mk: remove reference to lang/gcc4 and lang/gcc5, removed some time ago
VersionDeltaFile
1.299+2-2mk/compiler/gcc.mk
+2-21 files

NetBSD/pkgsrc F8q5T4zmk/compiler gcc.mk

   compiler/gcc.mk: remove _GCC_DEPENDENCY

   Only set, but never used.
VersionDeltaFile
1.298+8-18mk/compiler/gcc.mk
+8-181 files

NetBSD/src z2eICipsys/arch/arm/rockchip rk_v1crypto.c

   Match rockchip,rk3399-crypto
VersionDeltaFile
1.12+3-2sys/arch/arm/rockchip/rk_v1crypto.c
+3-21 files

FreeBSD/ports a7fed18devel/golangci-lint distinfo Makefile

devel/golangci-lint: Update to 2.8.0

ChangeLog:
https://github.com/golangci/golangci-lint/releases/tag/v2.8.0
DeltaFile
+5-5devel/golangci-lint/distinfo
+2-2devel/golangci-lint/Makefile
+7-72 files

NetBSD/src HiFuNWHlibexec/ld.elf_so xmalloc.c rtldenv.h

   Provide a xmalloc_aligned (unused at present). From FreeBSD.
VersionDeltaFile
1.22+40-7libexec/ld.elf_so/xmalloc.c
1.13+2-1libexec/ld.elf_so/rtldenv.h
+42-82 files

FreeBSD/ports 945aa59devel/gh distinfo Makefile

devel/gh: Update to 2.83.2

ChangeLog:
https://github.com/cli/cli/releases/tag/v2.83.2
DeltaFile
+5-5devel/gh/distinfo
+2-3devel/gh/Makefile
+7-82 files

NetBSD/src cNWEkRUlibexec/ld.elf_so xmalloc.c

   Replace a magic number with FIRST_BUCKET_SHIFT
VersionDeltaFile
1.21+8-7libexec/ld.elf_so/xmalloc.c
+8-71 files

FreeBSD/src 7afa039release/powerpc mkisoimages.sh

powerpc: fix release image building for Apple partitions

awk changed somewhere between 14 and 15 and it stopped accepting
a hexadecimal number as its input - it will always return 0.
This results in a very badly written apple boot block.

So just remove it; do the math in shell.

PR:             kern/292341
Differential Revision:  https://reviews.freebsd.org/D54639
Reviewed by:    imp
MFC after:      1 week
DeltaFile
+1-1release/powerpc/mkisoimages.sh
+1-11 files

HardenedBSD/src f45c26esbin/newfs newfs.8 newfs.c, share/mk bsd.man.mk

Merge remote-tracking branch 'origin/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+18-6sbin/newfs/newfs.8
+6-3sbin/newfs/newfs.c
+3-3share/mk/bsd.man.mk
+27-123 files

HardenedBSD/src 9f33a83sbin/newfs newfs.8 newfs.c, share/mk bsd.man.mk

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+18-6sbin/newfs/newfs.8
+6-3sbin/newfs/newfs.c
+3-3share/mk/bsd.man.mk
+27-123 files

NetBSD/src cuZNg1Vlibexec/ld.elf_so xmalloc.c

   s/unsigned/size_t/ for consistency
VersionDeltaFile
1.20+3-3libexec/ld.elf_so/xmalloc.c
+3-31 files

NetBSD/src vtd3qbylibexec/ld.elf_so xmalloc.c

   Group function declarations.
VersionDeltaFile
1.19+3-3libexec/ld.elf_so/xmalloc.c
+3-31 files

NetBSD/src 80WoYJGlibexec/ld.elf_so xmalloc.c

   Iniitialise pageshift - lost in previous
VersionDeltaFile
1.18+5-3libexec/ld.elf_so/xmalloc.c
+5-31 files

NetBSD/src TE4PQMIsys/dev/arcbios arcbios_calls.S

   arcbios: add RCSId
VersionDeltaFile
1.6+3-1sys/dev/arcbios/arcbios_calls.S
+3-11 files

NetBSD/src mGxTjg1sys/dev/arcbios arcbios_calls.S

   arcbios: add hazard nops for pre-R4000 MIPS1 machines

   All MIPS ARC (Advanced RISC Computing) machines have R4000/R4400
    https://www.netbsd.org/docs/Hardware/Machines/ARC/
   as supported by NetBSD/arc and they don't require nops,
   but the sgimips port fakes ARCS for older R2k/R3k machines,
   so it uses this code on older CPUs, too.

   Patch from Steve Rumble on port-mips@:
    https://mail-index.netbsd.org/port-mips/2025/12/06/msg001542.html
VersionDeltaFile
1.5+3-1sys/dev/arcbios/arcbios_calls.S
+3-11 files

NetBSD/src dmZqRm0sys/dev/ic wd33c93.c

   wd33c93: split wd33c93_timeout() into timeout and callback

   The code actually directly calls the same function for both
   processing a timeout (and thus sending an abort, bus reset, etc)
   and the callout running.

   However, the timeout code doesn't actually complete an acb.
   So if an acb times out, it seems to just .. be timed out.
   Forever.

   So in preparation for adding support for completing an acb with
   timeout, split wd33c93_timeout() into timeout and callout.

   This should be a no-op.

   Patch from Adrian Chadd on port-mips@:
    https://mail-index.netbsd.org/port-mips/2025/12/01/msg001535.html
VersionDeltaFile
1.38+30-6sys/dev/ic/wd33c93.c
+30-61 files

NetBSD/src SzbCftYsys/dev/ic wd33c93.c wd33c93var.h

   wd33c93: add a debug section for submitted SCSI requests from scsipi

   Whilst debugging things like hangs I found it useful to know the
   class of scsi request coming in from the upper layer.

   * Add a new debug bit entry - SCSIREQ
   * Use it to echo the submitted SCSI requests
   * Note that the unhandled one will just .. never be serviced, which is
     problematic and should be addressed in a subsequent commit.

   Patch from Adrian Chadd on port-mips@:
    https://mail-index.netbsd.org/port-mips/2025/12/01/msg001535.html
VersionDeltaFile
1.37+11-3sys/dev/ic/wd33c93.c
1.15+2-1sys/dev/ic/wd33c93var.h
+13-42 files

NetBSD/src Q99PSUssys/dev/ic wd33c93.c

   wd33c93: extend wd33c93_error() to include a reason

   Add in a string argument to allow the caller to describe the error.

   Patch from Adrian Chadd on port-mips@:
    https://mail-index.netbsd.org/port-mips/2025/12/01/msg001535.html
VersionDeltaFile
1.36+9-7sys/dev/ic/wd33c93.c
+9-71 files

LLVM/project 00915b2llvm/lib/Target/RISCV RISCVISelLowering.cpp

[RISCV] Use static arrays+ArrayRef instead of SmallVector to select P extension vector VTs. NFC (#175390)

DeltaFile
+5-3llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+5-31 files

NetBSD/src Odg2zphsys/dev/ic wd33c93.c

   wd33c93: abort the given transfer, not what's on or not currently active

   The timeout is per-transfer, not global.  And if this happens after
   a state changing event - eg the device disconnecting - then sc->sc_nexus
   is NULL.   Calling wd33c93_abort() with a NULL acb leads to a panic.

   Patch from Adrian Chadd on port-mips@:
    https://mail-index.netbsd.org/port-mips/2025/12/01/msg001535.html
VersionDeltaFile
1.35+3-3sys/dev/ic/wd33c93.c
+3-31 files

NetBSD/pkgsrc 8hjUZIHdoc CHANGES-2026

   doc: Updated fonts/harfbuzz to 12.3.0nb1
VersionDeltaFile
1.233+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc PZ2IE5ofonts/harfbuzz distinfo Makefile, fonts/harfbuzz/patches patch-src_hb-ot-cmap-table.hh

   harfbuzz: add upstream fix for GHSA-xvjr-f2r9-c7ww

   Bump PKGREVISION.
VersionDeltaFile
1.1+18-0fonts/harfbuzz/patches/patch-src_hb-ot-cmap-table.hh
1.165+2-1fonts/harfbuzz/distinfo
1.155+2-1fonts/harfbuzz/Makefile
+22-23 files

LLVM/project a4e434eutils/bazel/llvm-project-overlay/mlir BUILD.bazel

Fix Bazel build for 0e4be26 (#175412)

DeltaFile
+8-0utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+8-01 files

LLVM/project 9bd910dmlir/lib/Bindings/Python Rewrite.cpp, mlir/test/python rewrite.py

[MLIR][Python] Rename `GreedyRewriteDriverConfig` to `GreedyRewriteConfig` (#175409)

This is mainly for two purposes: 
1. to keep it consistent with the C++ class name
`mlir::GreedyRewriteConfig`,
2. to make it shorter.

Since this type was only added a few days ago
(654b3e844f21d3f64521e9cb028efdfebbf99bb4), it shouldn’t cause any
obvious compatibility issues.
DeltaFile
+22-24mlir/lib/Bindings/Python/Rewrite.cpp
+12-12mlir/test/python/rewrite.py
+34-362 files

NetBSD/pkgsrc SeHw5kZdoc CHANGES-2026

   doc: Updated textproc/ruby-nokogiri to 1.19.0
VersionDeltaFile
1.232+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc XWj7ovAtextproc/ruby-nokogiri distinfo Makefile

   ruby-nokogiri: update to 1.19.0

   Upstream changes:
    https://github.com/sparklemotion/nokogiri/releases/tag/v1.19.0

   v1.19.0 / 2025-12-28

   Ruby

   This release is focused on changes to Ruby version support,
   and is otherwise functionally identical to v1.18.10.

    * Introduce native gem support for Ruby 4.0. #3590
    * End support for Ruby 3.1, for which upstream support ended 2025-03-26.
    * End support for JRuby 9.4 (which targets Ruby 3.1 compatibility).
VersionDeltaFile
1.75+4-4textproc/ruby-nokogiri/distinfo
1.108+2-3textproc/ruby-nokogiri/Makefile
+6-72 files

NetBSD/pkgsrc U9uQAuLdoc TODO CHANGES-2026

   doc: Updated textproc/py-pdf to 6.6.0
VersionDeltaFile
1.26650+2-2doc/TODO
1.231+2-1doc/CHANGES-2026
+4-32 files

NetBSD/pkgsrc bWT7bWwtextproc/py-pdf Makefile distinfo

   py-pdf: update to 6.6.0.

   ## Version 6.6.0, 2026-01-09

   ### Security (SEC)
   - Improve handling of partially broken PDF files (#3594)

   ### Deprecations (DEP)
   - Block common page content modifications when assigned to reader (#3582)

   ### New Features (ENH)
   - Embellishments to generated text appearance streams (#3571)

   ### Bug Fixes (BUG)
   - Do not consider multi-byte BOM-like sequences as BOMs (#3589)

   ### Robustness (ROB)
   - Avoid empty FlateDecode outputs without warning (#3579)


    [8 lines not shown]
VersionDeltaFile
1.51+4-4textproc/py-pdf/Makefile
1.45+4-4textproc/py-pdf/distinfo
+8-82 files

NetBSD/pkgsrc PNZpswubenchmarks/netperf Makefile

   netperf: switch to github, other site is gone
VersionDeltaFile
1.17+3-3benchmarks/netperf/Makefile
+3-31 files

NetBSD/pkgsrc uFw2UMIgames/netmaj Makefile

   netmaj: comment out dead site
VersionDeltaFile
1.33+3-4games/netmaj/Makefile
+3-41 files