NetBSD/pkgsrc PnHPDNRlang/compiler-rt distinfo, lang/compiler-rt/patches patch-lib_sanitizer__common_sanitizer__linux.cpp

   compiler-rt: restore patch lost in update
VersionDeltaFile
1.3+3-1lang/compiler-rt/patches/patch-lib_sanitizer__common_sanitizer__linux.cpp
1.33+2-1lang/compiler-rt/distinfo
+5-22 files

NetBSD/pkgsrc OUpziPatextproc/moor DESCR

   moor: improve DESCR
VersionDeltaFile
1.2+1-1textproc/moor/DESCR
+1-11 files

NetBSD/pkgsrc y4USha8doc CHANGES-2026 TODO

   doc: Updated net/slumber to 5.2.5
VersionDeltaFile
1.2483+2-1doc/CHANGES-2026
1.27144+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc kv7QGqUnet/slumber distinfo Makefile

   slumber: update to 5.2.5.

   [5.2.5] - 2026-04-12

   Changed

       Set extension on temporary file when editing recipe body in TUI
           When editing a JSON body in the TUI, the created temp file will have .json as the extension, so your editor can use syntax highlighting and other language-specific features.

   Fixed

       Fix crash when previewing a profile value that returns a binary value
       Prompts in CLI/Python frontend no longer block other request building tasks
VersionDeltaFile
1.45+4-4net/slumber/distinfo
1.59+2-2net/slumber/Makefile
+6-62 files

NetBSD/pkgsrc PkHoGzWdoc TODO CHANGES-2026

   doc: Updated www/nginx to 1.30.0
VersionDeltaFile
1.27143+2-3doc/TODO
1.2482+2-1doc/CHANGES-2026
+4-42 files

NetBSD/pkgsrc LMxSH03www/nginx distinfo Makefile, www/nginx/patches patch-conf_nginx.conf

   nginx: update to 1.30.0.

   Changes with nginx 1.30.0                                        14 Apr 2026

       *) 1.30.x stable branch.


   Changes with nginx 1.29.8                                        07 Apr 2026

       *) Feature: the "max_headers" directive.
          Thanks to Maxim Dounin.

       *) Feature: OpenSSL 4.0 compatibility.

       *) Feature: now the "include" directive inside the "geo" block supports
          wildcards.

       *) Bugfix: in processing of HTTP 103 (Early Hints) responses from a
          proxied backend.

    [227 lines not shown]
VersionDeltaFile
1.4+11-11www/nginx/patches/patch-conf_nginx.conf
1.140+5-5www/nginx/distinfo
1.190+2-2www/nginx/Makefile
+18-183 files

NetBSD/src gHqDysusys/arch/atari/atari genassym.cf, sys/arch/hp300/hp300 genassym.cf

   Re-factor genassym.cf into common m68k definitions and platform-specific
   ones.
VersionDeltaFile
1.1+233-0sys/arch/m68k/m68k/genassym.cf
1.45+1-175sys/arch/x68k/x68k/genassym.cf
1.54+2-170sys/arch/mvme68k/mvme68k/genassym.cf
1.43+1-165sys/arch/atari/atari/genassym.cf
1.34+1-161sys/arch/luna68k/luna68k/genassym.cf
1.58+1-160sys/arch/hp300/hp300/genassym.cf
+239-83122 files not shown
+292-2,00828 files

NetBSD/pkgsrc FlwNZRumath/py-pandas distinfo, math/py-pandas/patches patch-pandas___libs_meson.build patch-pandas___libs_tslibs_meson.build

   py-pandas: fix build with meson 1.11
VersionDeltaFile
1.1+15-0math/py-pandas/patches/patch-pandas___libs_meson.build
1.1+15-0math/py-pandas/patches/patch-pandas___libs_tslibs_meson.build
1.47+3-1math/py-pandas/distinfo
+33-13 files

NetBSD/pkgsrc-wip 3b52540rust195 distinfo, rust195/patches patch-src_tools_cargo_src_bin_cargo_commands_help.rs

rust195: carry over 'cargo help build' patch from 1.94
DeltaFile
+20-0rust195/patches/patch-src_tools_cargo_src_bin_cargo_commands_help.rs
+1-0rust195/distinfo
+21-02 files

NetBSD/pkgsrc dv8xJkTcad/ghdl buildlink3.mk, devel/ghdl-yosys-plugin Makefile

   *: recursive bump for so name change in ghdl
VersionDeltaFile
1.2+2-1cad/ghdl/buildlink3.mk
1.2+2-1devel/ghdl-yosys-plugin/Makefile
+4-22 files

NetBSD/pkgsrc guxrxX8doc CHANGES-2026 TODO

   doc: Updated cad/ghdl to 6.0.0
VersionDeltaFile
1.2481+2-1doc/CHANGES-2026
1.27142+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc MrANz8scad/ghdl PLIST distinfo

   ghdl: update to 6.0.0.

   ## [2026-03-07] 6.0

   - Initial support of vhdl2019 (with --std=19)
   - --finteger64 fully supported (with jit backends)
VersionDeltaFile
1.7+9-3cad/ghdl/PLIST
1.14+4-4cad/ghdl/distinfo
1.30+2-3cad/ghdl/Makefile
+15-103 files

NetBSD/src fKfXzc2sys/arch/cesfic/cesfic locore.s

   This machine can't have an HP MMU, so don't default mmutype to that value.
VersionDeltaFile
1.72+3-3sys/arch/cesfic/cesfic/locore.s
+3-31 files

NetBSD/src zr9jGZYexternal/bsd/ntp/dist/sntp/libopts/compat pathfind.c

   Fix overlapping strcpy usages

   Using overlapping src & dest witgh strcpy is undefined, so anything
   like
        strcpy(str + N, str + M);
   is automatically invalid, regardless of the valuse of N and M.

   Change offending usages here to use memmove() instead.

   Note: 2 issues:  First, there is no (in sntp/compat) anything to deal
   with the possibility that memmove() is not available - this should not
   be a problem building nbsd, but it might be if any attempt were to be
   made to upstream this change (the autoconf machinery to detect memmove()
   would be needed, along wth a memmove() implementation).

   Second, and more serious here, I haven't been able to get a build to
   actually compile this code, so while I believe it is correct, I am unable
   to test it.   This is intended to fix the sh3 builds on in the releng
   daily builds, so we will see what happens.  As best I can tell my build

    [2 lines not shown]
VersionDeltaFile
1.10+6-4external/bsd/ntp/dist/sntp/libopts/compat/pathfind.c
+6-41 files

NetBSD/src UotEzbOsys/arch/aarch64/aarch64 pmap.c

   Fix previous for GENERIC64 and restore the call to pmap_tlb_asid_acquire
   in pmap_activate
VersionDeltaFile
1.155+4-4sys/arch/aarch64/aarch64/pmap.c
+4-41 files

NetBSD/pkgsrc Lx2qweSdoc TODO

   doc/TODO: + gimp-3.2.4.
VersionDeltaFile
1.27141+2-1doc/TODO
+2-11 files

NetBSD/pkgsrc xkfBua2doc CHANGES-2026

   doc: Updated graphics/babl to 0.1.126
VersionDeltaFile
1.2480+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc o6r8p2zgraphics/babl distinfo Makefile

   babl: update to 0.1.126.

   It is now possible to build with MSVC.
VersionDeltaFile
1.49+4-4graphics/babl/distinfo
1.73+2-2graphics/babl/Makefile
1.36+2-2graphics/babl/PLIST
+8-83 files

NetBSD/pkgsrc qxiQSdwdoc CHANGES-2026

   doc: Updated geography/gdal-lib to 3.12.3nb1
VersionDeltaFile
1.2479+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc mewzV9qgeography/gdal-lib Makefile

   gdal-lib: add rpath to gdal-config output

   Fixes build of dependencies.

   Fix some pkglint while here.

   Bump PKGREVISION.
VersionDeltaFile
1.198+11-2geography/gdal-lib/Makefile
+11-21 files

NetBSD/pkgsrc X5hNaf5doc TODO CHANGES-2026

   doc: Updated devel/lua-gi to 0.9.2nb5
VersionDeltaFile
1.27140+3-2doc/TODO
1.2478+2-1doc/CHANGES-2026
+5-32 files

NetBSD/pkgsrc gY5DVx7devel/lua-gi Makefile distinfo, devel/lua-gi/patches patch-lgi_ffi.lua

   lua-gi: adapt for glib 2.87

   using upstream pull request

   Bump PKGREVISION.
VersionDeltaFile
1.1+34-0devel/lua-gi/patches/patch-lgi_ffi.lua
1.17+2-2devel/lua-gi/Makefile
1.11+2-1devel/lua-gi/distinfo
+38-33 files

NetBSD/pkgsrc fxxbRwUparallel/slurm-wlm distinfo, parallel/slurm-wlm/patches patch-src_plugins_acct__gather__profile_hdf5_Makefile.in

   slurm-wlm: fix build by linking against one more hdf5 library
VersionDeltaFile
1.1+16-0parallel/slurm-wlm/patches/patch-src_plugins_acct__gather__profile_hdf5_Makefile.in
1.7+2-1parallel/slurm-wlm/distinfo
+18-12 files

NetBSD/pkgsrc kCCanSUgeography/R-s2 distinfo, geography/R-s2/patches patch-src_absl_debugging_internal_elf__mem__image.cc

   R-s2: fix build on -current
VersionDeltaFile
1.1+15-0geography/R-s2/patches/patch-src_absl_debugging_internal_elf__mem__image.cc
1.6+2-1geography/R-s2/distinfo
+17-12 files

NetBSD/pkgsrc o5L9khNmath/udunits buildlink3.mk

   udunits: fix pkglint
VersionDeltaFile
1.9+2-3math/udunits/buildlink3.mk
+2-31 files

NetBSD/pkgsrc PcjkvBamath/udunits Makefile

   udunits: fix build with gcc 14
VersionDeltaFile
1.44+3-1math/udunits/Makefile
+3-11 files

NetBSD/pkgsrc NIW9mVhdoc CHANGES-2026

   doc: Updated sysutils/py-Glances to 4.5.4
VersionDeltaFile
1.2477+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc kCqJlFasysutils/py-Glances PLIST distinfo, sysutils/py-Glances/patches patch-MANIFEST.in patch-glances_plugins_diskio_____init____.py

   sysutils/py-Glances: Update to 4.5.4

   Remove patches that have been merged by upstream.

   Changes since 4.5.3:

   =============
   Version 4.5.4
   =============

   Bug corrected:

     * Cannot set warning/critical temperature for a specific sensor
       #3525
     * Memory percentage and used displayed as negative numbers #3358
     * Incorrect Docker container count via Homeassistant Integration
       #3433
     * Fix LXD filter excluding containers on standalone hosts #3529


    [25 lines not shown]
VersionDeltaFile
1.23+10-1sysutils/py-Glances/PLIST
1.42+4-7sysutils/py-Glances/distinfo
1.53+2-2sysutils/py-Glances/Makefile
1.2+1-1sysutils/py-Glances/patches/patch-MANIFEST.in
1.2+1-1sysutils/py-Glances/patches/patch-glances_plugins_diskio_____init____.py
1.2+1-1sysutils/py-Glances/patches/patch-pyproject.toml
+19-136 files

NetBSD/pkgsrc o9t1Fundoc CHANGES-2026

   Updated net/rclone, editors/neovim, shells/nushell
VersionDeltaFile
1.2476+4-1doc/CHANGES-2026
+4-11 files

NetBSD/pkgsrc AYLhbOfshells/nushell distinfo Makefile

   nushell: updated to 0.112.2

   0.112.2
   Fixed regressions in quoting for string arguments in Nu script calls
   Fixed regressions for input list
VersionDeltaFile
1.71+7-7shells/nushell/distinfo
1.86+2-2shells/nushell/Makefile
1.61+1-1shells/nushell/cargo-depends.mk
+10-103 files