NetBSD/src OfcRlSxlib/libc/gen unvis.c

   PR lib/60111 - code botch, bad conversion fixed

   From Yeo Jong Han in PR lib/60111

   I will consider some bounds checking later.
VersionDeltaFile
1.46+3-3lib/libc/gen/unvis.c
+3-31 files

NetBSD/pkgsrc-wip 149ce5fpy-snmp Makefile

py-snmp: BUILD_DEPENDS -> TOOL_DEPENDS
DeltaFile
+1-1py-snmp/Makefile
+1-11 files

NetBSD/pkgsrc-wip 9a503f3py-snmp PLIST

py-snmp: LICENSE.txt file moved(?)

It's a little unclear why (python version 3.12 vs. 3.13?), the
package version is the same...
DeltaFile
+1-1py-snmp/PLIST
+1-11 files

NetBSD/pkgsrc-wip 2f3c841py-snmp Makefile

py-snmp: add py-poetry-core as a build dependency.
DeltaFile
+2-0py-snmp/Makefile
+2-01 files

NetBSD/src wWwCVWisys/stand/efiboot version, sys/stand/efiboot/bootarm Makefile

   PR/60069 NetBSD non booting on H3 Allwinner

   Disable EFI runtime support on arm as it doesn't play nicely with many
   FWs where things go south after/during the call to SetVirtualAddressMap

   Also seen by cp- on Odriod-XU4
VersionDeltaFile
1.10+3-3sys/stand/efiboot/bootarm/Makefile
1.34+2-1sys/stand/efiboot/version
+5-42 files

NetBSD/pkgsrc HbUbMXKdoc TODO

   doc/TODO: + gnunet-0.27, wayland-1.25.
VersionDeltaFile
1.26950+3-1doc/TODO
+3-11 files

NetBSD/src hGVBgJ8distrib/sets/lists/comp mi, external/mit/expat/lib/libexpat Makefile

   expat: install expat_config.h

   recently required by python311
VersionDeltaFile
1.5+2-2external/mit/expat/lib/libexpat/Makefile
1.2521+2-1distrib/sets/lists/comp/mi
+4-32 files

NetBSD/src SaXbcMasys/arch/m68k/m68k vectors.c trap_subr.s

   The Coprocessor Protocol Violation trap is not present on the 68010
   (the vector is "unassigned, reserved"), so don't install a handler
   for it on that CPU.
VersionDeltaFile
1.8+9-2sys/arch/m68k/m68k/vectors.c
1.26+3-1sys/arch/m68k/m68k/trap_subr.s
+12-32 files

NetBSD/pkgsrc Kiq2llZdoc CHANGES-2026

   Added emulators/suse15_gcc12 15.5
VersionDeltaFile
1.1800+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc okc59vqemulators Makefile

   Add suse15_gcc12
VersionDeltaFile
1.380+2-1emulators/Makefile
+2-11 files

NetBSD/pkgsrc uNxlvItemulators/suse15_gcc12 distinfo Makefile

   suse15_gcc12: add 15.5

   Import from pkgsrc-wip after fixing missing rpms.

   Tested as follows:

   % cat hello.c
   #include <stdio.h>

   int main()
   {
        printf("hello, world\n");
        return 0;
   }
   % /emul/linux/usr/bin/gcc-12 hello.c -o hellolinux
   % file hellolinux
   hellolinux: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=d586f1aec6d420635fe8f1847a7219467c98ff06, for GNU/Linux 3.2.0, with debug_info, not stripped
   % ./hellolinux
   hello, world

    [2 lines not shown]
VersionDeltaFile
1.1+20-0emulators/suse15_gcc12/distinfo
1.1+18-0emulators/suse15_gcc12/Makefile
1.1+7-0emulators/suse15_gcc12/DESCR
+45-03 files

NetBSD/src ysLyxNKsys/arch/m68k/m68k trap_subr.s, sys/arch/mac68k/mac68k genassym.cf

   Fix a brain-f*rt in the special mac68k "nofault" bus error handling.
   The information we need to pass along is packaged up for us neatly
   in the stack frame and arguments being passed to trap(), so use those
   to extract the %a2 value and faulting address.

   Issue raised and fix tested by nat@
VersionDeltaFile
1.25+17-4sys/arch/m68k/m68k/trap_subr.s
1.49+2-1sys/arch/mac68k/mac68k/genassym.cf
+19-52 files

NetBSD/src OgsNeyksys/arch/mac68k/mac68k macromasm.s

   Remove redundant copy of FR_PC.
VersionDeltaFile
1.23+1-2sys/arch/mac68k/mac68k/macromasm.s
+1-21 files

NetBSD/pkgsrc NhVxHvTlang/python311 Makefile, lang/python312 Makefile

   python31*: force use expat from pkgsrc to fix builds across platforms
VersionDeltaFile
1.31+4-2lang/python313/Makefile
1.12+4-2lang/python314/Makefile
1.46+3-2lang/python311/Makefile
1.35+2-2lang/python312/Makefile
+13-84 files

NetBSD/src wbBSjvQexternal/cddl/osnet/dist/lib/libzfs/common libzfs_import.c

   zpool_find_import_impl: fix block/character device confusion

   this commit fixes zpool import failure in some cases.

   the current logic sometimes (eg. "zpool import -d" with a directory
   which is not "/dev") ends up with picking character devices
   and pass them to ZFS_IOC_POOL_TRYIMPORT/ZFS_IOC_POOL_IMPORT ioctl.
   such attempts would fail, marking the corrosponding vdevs UNAVAIL.
   this commit fixes it by skipping character devices.

   also, this commit makes the label checking logic prefer to use
   character devices when available because it seems like the intention
   of the upstream logic.

   also, this commit fixes import of file-backed vdevs.
VersionDeltaFile
1.9+54-10external/cddl/osnet/dist/lib/libzfs/common/libzfs_import.c
+54-101 files

NetBSD/src mGstRJoexternal/cddl/osnet/sys/sys vnode.h

   zfs: fix file vdev

   make solaris compat vn_openat to honor the root vnode specified
   by the caller. it's currently only used for vdev_file.c.

   this commit fixes "no such pool or dataset" error on zpool create
   with files:
   ```
   uma% dd if=/dev/zero of=/tmp/hoge count=100
   100+0 records in
   100+0 records out
   51200 bytes transferred in 0.001 secs (51200000 bytes/sec)
   uma% sudo zpool create f /tmp/hoge
   cannot create 'f': no such pool or dataset
   uma%
   ```

   cf. "file" in "Virtual Devices (vdevs)" in zpool(8).
VersionDeltaFile
1.22+5-5external/cddl/osnet/sys/sys/vnode.h
+5-51 files

NetBSD/pkgsrc tzE2j7jnet/libmicrodns distinfo, net/libmicrodns/patches patch-src_mdns.c

   libmicrodns: Include <alloca.h> when needed.
VersionDeltaFile
1.1+16-0net/libmicrodns/patches/patch-src_mdns.c
1.4+2-1net/libmicrodns/distinfo
+18-12 files

NetBSD/pkgsrc SRhJWdOnet/hping Makefile distinfo, net/hping/patches patch-split.c

   hping: Various fixes.
VersionDeltaFile
1.1+13-0net/hping/patches/patch-split.c
1.19+2-2net/hping/Makefile
1.13+2-1net/hping/distinfo
+17-33 files

NetBSD/pkgsrc 8SqCE9Fnet/hping3 distinfo Makefile, net/hping3/patches patch-apdutils.c patch-ars.c

   hping3: Various fixes.

   - Update homepage.
   - Fix build on FreeBSD. This was failing as a result of bad patches.
   - Fix build on SunOS with recent gcc.
VersionDeltaFile
1.1+14-0net/hping3/patches/patch-apdutils.c
1.8+4-3net/hping3/distinfo
1.2+3-3net/hping3/patches/patch-ars.c
1.2+3-3net/hping3/patches/patch-sendip.c
1.14+2-2net/hping3/Makefile
+26-115 files

NetBSD/src mvf93Fatests/kernel t_time_arith.c

   tests/kernel/t_time_arith.c: update for the recent kernel change

   the test updates in the recent change was for some reasons incomplete.
   ("itimer_transition: do not keep it_value unchanged after firing the event")
   https://mail-index.netbsd.org/source-changes/2026/03/17/msg161046.html

   this commit updates the rest of tests.

   tested with a full build and then the following command:
   ```
     # chroot destdir
     # cd /usr/tests/kernel
     # atf-run t_time_arith > /dev/null
     # echo $?
     0
     #
   ```

   test failures are pointed out by Taylor R Campbell

    [5 lines not shown]
VersionDeltaFile
1.10+7-12tests/kernel/t_time_arith.c
+7-121 files

NetBSD/pkgsrc j7xGPUonet/host distinfo, net/host/patches patch-ac

   host: Fix implicit function decls
VersionDeltaFile
1.6+14-4net/host/patches/patch-ac
1.17+2-2net/host/distinfo
+16-62 files

NetBSD/pkgsrc FHAVXk5net/fair-identd distinfo, net/fair-identd/patches patch-identd.c

   fair-identd: Fix implicit functions decls
VersionDeltaFile
1.1+14-0net/fair-identd/patches/patch-identd.c
1.7+2-1net/fair-identd/distinfo
+16-12 files

NetBSD/pkgsrc KDtAUpOnet/bounce distinfo, net/bounce/patches patch-aa

   bounce: Need to always include <string.h>
VersionDeltaFile
1.3+7-8net/bounce/patches/patch-aa
1.10+2-2net/bounce/distinfo
+9-102 files

NetBSD/pkgsrc DrA2pNYnet/gopherus Makefile

   gopherus: Link socket libraries on SunOS.
VersionDeltaFile
1.2+3-1net/gopherus/Makefile
+3-11 files

NetBSD/pkgsrc jcbZKUvmisc/wdic distinfo, misc/wdic/patches patch-ab

   wdic: Fix implicit decl of bzero(3)
VersionDeltaFile
1.5+7-4misc/wdic/patches/patch-ab
1.9+2-2misc/wdic/distinfo
+9-62 files

NetBSD/pkgsrc 0AdZnn9misc/yrolo distinfo, misc/yrolo/patches patch-usage.c patch-error.c

   yrolo: Fix implicit decl of exit(3)
VersionDeltaFile
1.1+16-0misc/yrolo/patches/patch-usage.c
1.1+14-0misc/yrolo/patches/patch-error.c
1.13+3-1misc/yrolo/distinfo
+33-13 files

NetBSD/src 1UgPBwCsys/arch/riscv/riscv cpufunc.c

   Fix primary cache function prototypes to fix build on rv32
VersionDeltaFile
1.2+6-7sys/arch/riscv/riscv/cpufunc.c
+6-71 files

NetBSD/pkgsrc ILkhapedoc CHANGES-2026

   Note update of the "mutt" package to version 2.3.1
VersionDeltaFile
1.1799+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc sCKRQUDmail/mutt distinfo Makefile

   mail/mutt: Update to version 2.3.1

   This is a bug-fix release, fixing a compilation error when configured
   --without-wc-funcs, and a potential bug in the folder browser.
VersionDeltaFile
1.124+4-4mail/mutt/distinfo
1.295+2-3mail/mutt/Makefile
+6-72 files

NetBSD/src IRcz3XOsys/arch/atari/pci pci_hades.c

   splx() is defined to return (void).  Use _spl() directly here instead.
VersionDeltaFile
1.17+3-3sys/arch/atari/pci/pci_hades.c
+3-31 files