FreeBSD/src 6904270usr.sbin/syslogd syslogd.c, usr.sbin/syslogd/tests syslogd_test.sh

syslogd: Fix ereregex property filters and add test

This change fixes Bug 293879, where ereregex filters in syslogd
did not handle alternation correctly.

The issue appears to come from mixing up two different kinds of
flags: syslogd's internal serialized filter flags in
usr.sbin/syslogd/syslogd.h, and the regex compilation flags from
include/regex.h. ereregex was storing REG_EXTENDED in cmp_flags,
even though cmp_flags is meant to carry syslogd's own FILT_FLAG_*
values for configuration serialization and reconstruction.

REG_EXTENDED has the same bit value as FILT_FLAG_EXCLUDE, so the
filter could be reconstructed with the wrong semantics.

The fix stores FILT_FLAG_EXTENDED instead, allowing syslogd to
correctly REG_EXTENDED when compiling the regex.

A test was also added for both ereregex and !ereregex filters.

    [7 lines not shown]
DeltaFile
+22-0usr.sbin/syslogd/tests/syslogd_test.sh
+1-1usr.sbin/syslogd/syslogd.c
+23-12 files

LLVM/project 670de1fcompiler-rt/lib/msan msan_linux.cpp

[compiler-rt][msan] Fix 32-bit overflow in CheckMemoryLayoutSanity (#189199)

Use start + (end - start) / 2 instead of (start + end) / 2 to compute
the midpoint address. The original expression overflows when start + end
exceeds UPTR_MAX, which happens on 32-bit targets whose memory layout
includes regions above 0x80000000.
DeltaFile
+3-2compiler-rt/lib/msan/msan_linux.cpp
+3-21 files

LLVM/project 89d57d0compiler-rt/lib/sanitizer_common sanitizer_platform_limits_posix.cpp

[compiler-rt][sanitizer] Add struct_rlimit64_sz for musl (#189197)

On musl, rlimit64 is an alias for rlimit rather than a distinct type
provided by glibc. Add a SANITIZER_MUSL elif branch so that
struct_rlimit64_sz is defined for musl-based Linux targets.
DeltaFile
+5-2compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp
+5-21 files

FreeBSD/ports 70c8688security/nmap/files patch-libdnet-stripped_configure patch-nping_Crypto.cc

security/nmap: Update to 7.99
DeltaFile
+0-29security/nmap/files/patch-libdnet-stripped_configure
+0-13security/nmap/files/patch-nping_Crypto.cc
+0-13security/nmap/files/patch-nse__openssl.cc
+0-13security/nmap/files/patch-nse__ssl__cert.cc
+0-11security/nmap/files/patch-libdnet-stripped_src_intf.c
+3-3security/nmap/files/patch-liblua_Makefile
+3-822 files not shown
+7-878 files

FreeBSD/ports 79b10aesecurity/nmap-devel Makefile distinfo

security/nmap-devel: Update to the latest GH commit
DeltaFile
+3-4security/nmap-devel/Makefile
+3-3security/nmap-devel/distinfo
+6-72 files

FreeBSD/src e7de7fesys/dev/usb usbdevs

usbdevs: Add USB device IDs for Nuand bladeRF SDR

Add vendor and product IDs for bladeRF family of USB software defined radios manufactured by Nuand LLC.

Reviewed by:    imp, adrian
Differential Revision:  https://reviews.freebsd.org/D54733
DeltaFile
+7-0sys/dev/usb/usbdevs
+7-01 files

NetBSD/pkgsrc FAja0d2print/tex-colortbl distinfo Makefile, print/tex-colortbl-doc distinfo Makefile

   tex-colortbl{,-doc}: update to 1.0k

   Update to colortbl to match updated array package tagging code.
VersionDeltaFile
1.13+3-3print/tex-colortbl/distinfo
1.13+3-3print/tex-colortbl-doc/distinfo
1.15+2-2print/tex-colortbl/Makefile
1.12+2-2print/tex-colortbl-doc/Makefile
1.2+1-1print/tex-colortbl-doc/DESCR
+11-115 files

FreeBSD/ports eba9e07accessibility/py-atspi distinfo Makefile

accessibility/py-atspi: update to 2.58.2

Update to 2.58.2

NO_ARCH= yes (truckman)

PR:             293976
DeltaFile
+3-3accessibility/py-atspi/distinfo
+2-3accessibility/py-atspi/Makefile
+5-62 files

FreeBSD/ports 8a410b3x11-toolkits/libadwaita distinfo Makefile

x11-toolkits/libadwaita: update to 1.8.5.1

Update to 1.8.5.1

  ===============
  Version 1.8.5.1
  ===============

  - Translation updates
    - Czech

Pet portclippy (truckman)

PR:             293982
DeltaFile
+3-3x11-toolkits/libadwaita/distinfo
+1-1x11-toolkits/libadwaita/Makefile
+4-42 files

FreeBSD/ports 9b61aedx11/zenity4 Makefile distinfo

x11/zenity4: update to 4.2.2

Update to 4.2.2

  Zenity 4.2.2
    Bugfix release for Zenity 4.2.x.

    Changes and fixes since 4.2.1:
    - colview: Actually hide header via --hide-header when possible (Logan
      Rathbone) (!58)

PR:             293975
DeltaFile
+4-4x11/zenity4/Makefile
+3-3x11/zenity4/distinfo
+7-72 files

NetBSD/src qkmqB5Udistrib/sets/lists/debug mi

   dab is not built if MKCXX=no, so its debug cannot be built
VersionDeltaFile
1.509+2-2distrib/sets/lists/debug/mi
+2-21 files

NetBSD/src OWUUffGexternal/mpl/mozilla-certdata Makefile

   Avoid make descending into mozilla-certdata directory and finding no targets, which broke MKSARE=no builds
VersionDeltaFile
1.2+2-2external/mpl/mozilla-certdata/Makefile
+2-21 files

LLVM/project 6ead686clang-tools-extra/clang-tidy/misc IncludeCleanerCheck.cpp, clang-tools-extra/clang-tidy/readability IdentifierNamingCheck.cpp ImplicitBoolConversionCheck.cpp

[clang-tidy][NFC] Run `performance-faster-string-find` over the codebase (#189202)
DeltaFile
+7-7clang-tools-extra/clang-tidy/readability/IdentifierNamingCheck.cpp
+4-4clang-tools-extra/clang-tidy/readability/ImplicitBoolConversionCheck.cpp
+3-3clang-tools-extra/clang-tidy/misc/IncludeCleanerCheck.cpp
+2-2clang-tools-extra/clang-tidy/utils/Matchers.h
+1-1clang-tools-extra/clang-tidy/readability/UseStdMinMaxCheck.cpp
+1-1clang-tools-extra/clang-tidy/readability/IsolateDeclarationCheck.cpp
+18-185 files not shown
+23-2311 files

NetBSD/pkgsrc WsZWqwQdoc CHANGES-2026

   tex package updates
VersionDeltaFile
1.1935+33-1doc/CHANGES-2026
+33-11 files

NetBSD/pkgsrc vzDHzIkprint/tex-cjs-rcs-article distinfo Makefile, print/tex-cjs-rcs-article-doc distinfo PLIST

   tex-cjs-rcs-article{,-doc}: update to 2.0

   - After a switch by The Canadian Journal of Statistics | La revue canadienne
     de statistique to a single-blind peer review process, the class option `review`
     now only numbers lines and increases line spacing.
   - Implementation, headers and footers: the even header now displays the names of
     the authors in `review` mode.
   - Implementation, titling material: the author block and corresponding author
     information are now displayed in `review` mode.
   - Implementation, back matter: the acknowledgements, funding information, and
     ORCID iDs are now displayed in `review` mode.
   - Templates: delete the statements that the contents of the environments
     `acknowledgements` and `funding` are not displayed in `review` mode.
   - Author guidelines: adapted to the single-blind review process.
   - Author guidelines: section *Anonymous version* becomes *Peer review version*,
     with all anonymity-related material deleted.
   - Author guidelines: section *Figures and tables* now provides information on the
     legibility and appearance of figures, the maximum number of figures allowed in
     the main text, and font sizes used in the class. The generic sample figure is
     replaced by a statistical multipart figure.
VersionDeltaFile
1.3+4-4print/tex-cjs-rcs-article/distinfo
1.3+4-4print/tex-cjs-rcs-article-doc/distinfo
1.3+6-1print/tex-cjs-rcs-article-doc/PLIST
1.3+3-3print/tex-cjs-rcs-article-doc/Makefile
1.3+3-3print/tex-cjs-rcs-article/Makefile
1.2+3-1print/tex-cjs-rcs-article/DESCR
+23-166 files

NetBSD/pkgsrc 71RHyNnprint/tex-cellspace distinfo Makefile, print/tex-cellspace-doc distinfo Makefile

   tex-cellspace{,-doc}: update to 1.9.1a

   The package now defines \@startpbox at action
VersionDeltaFile
1.8+3-3print/tex-cellspace-doc/distinfo
1.8+3-3print/tex-cellspace/distinfo
1.8+2-2print/tex-cellspace/Makefile
1.8+2-2print/tex-cellspace-doc/Makefile
+10-104 files

NetBSD/pkgsrc 8SL674dprint/tex-bxjscls distinfo Makefile, print/tex-bxjscls-doc distinfo Makefile

   tex-bxjscls{,-doc}: update to 2.9d

   changes unknown
VersionDeltaFile
1.9+3-3print/tex-bxjscls-doc/distinfo
1.9+3-3print/tex-bxjscls/distinfo
1.7+2-2print/tex-bxjscls-doc/Makefile
1.7+2-2print/tex-bxjscls/Makefile
+10-104 files

NetBSD/pkgsrc TRXa721print/tex-bidi PLIST distinfo, print/tex-bidi-doc PLIST distinfo

   tex-bidi{,-doc}: update to 26.01.08

   changes unknown
VersionDeltaFile
1.4+168-166print/tex-bidi/PLIST
1.3+24-24print/tex-bidi-doc/PLIST
1.6+4-4print/tex-bidi/distinfo
1.6+4-4print/tex-bidi-doc/distinfo
1.6+4-4print/tex-bidi/Makefile
1.6+3-3print/tex-bidi-doc/Makefile
+207-2051 files not shown
+210-2077 files

NetBSD/pkgsrc FzVYppaprint/p5-biblatex-biber distinfo Makefile

   p5-biblatex-biber: update to 2.21

   to match latest biblatex.
VersionDeltaFile
1.17+4-4print/p5-biblatex-biber/distinfo
1.41+2-3print/p5-biblatex-biber/Makefile
+6-72 files

NetBSD/pkgsrc ZCmqdXiprint/tex-biblatex-ieee distinfo Makefile, print/tex-biblatex-ieee-doc distinfo Makefile

   tex-biblatex-ieee{,-doc}: update to 1.4f

   changes unknown
VersionDeltaFile
1.12+4-4print/tex-biblatex-ieee/distinfo
1.12+4-4print/tex-biblatex-ieee-doc/distinfo
1.11+3-3print/tex-biblatex-ieee/Makefile
1.12+3-3print/tex-biblatex-ieee-doc/Makefile
+14-144 files

NetBSD/pkgsrc o7PHg3mprint/tex-biblatex-apa distinfo Makefile, print/tex-biblatex-apa-doc distinfo Makefile

   tex-biblatex-apa{,-doc}: update to 9.20

   changes unknown
VersionDeltaFile
1.11+3-3print/tex-biblatex-apa-doc/distinfo
1.11+3-3print/tex-biblatex-apa/distinfo
1.11+2-2print/tex-biblatex-apa-doc/Makefile
1.11+2-2print/tex-biblatex-apa/Makefile
1.7+3-0print/tex-biblatex-apa/PLIST
+13-105 files

NetBSD/pkgsrc x0v3b8Zprint/tex-biblatex Makefile distinfo, print/tex-biblatex-doc distinfo Makefile

   tex-biblatex{,-doc}: update to 3.21

   changes unknown
VersionDeltaFile
1.19+3-3print/tex-biblatex-doc/distinfo
1.20+3-3print/tex-biblatex/Makefile
1.19+3-3print/tex-biblatex/distinfo
1.18+2-2print/tex-biblatex-doc/Makefile
+11-114 files

NetBSD/pkgsrc ML7cHktprint/tex-amsmath distinfo Makefile, print/tex-amsmath-doc distinfo Makefile

   tex-amsmath{,-doc}: update to 2.17z

   changes unknown
VersionDeltaFile
1.21+4-4print/tex-amsmath-doc/distinfo
1.21+4-4print/tex-amsmath/distinfo
1.24+3-3print/tex-amsmath/Makefile
1.22+3-3print/tex-amsmath-doc/Makefile
+14-144 files

OpenBSD/src GUMfoR1usr.bin/ssh progressmeter.c

   switch from int to long long for bandwidth calculations; fixes
   rate display when rate > 2GB/s; based on patch from Cyril Servant
   feedback/ok deraadt@
VersionDeltaFile
1.57+3-3usr.bin/ssh/progressmeter.c
+3-31 files

OpenBSD/ports lhtNVbCdevel/difftastic Makefile

   Mark difftastic BROKEN-sparc64

   In function `tree_sitter_hack_external_scanner_destroy':
   scanner.cc:(.text.tree_sitter_hack_external_scanner_destroy+0x20): undefined reference to `operator delete(void*, unsigned long)'

   difftastic has been broken for at least two releases
VersionDeltaFile
1.24+2-0devel/difftastic/Makefile
+2-01 files

FreeBSD/ports 79b49besecurity/py-argon2-cffi Makefile distinfo

security/py-argon2-cffi: Update to 25.1.0

PR:             293712
Reported by:    wen@
Approved by:    maintainer(timeout, > 14 days)
DeltaFile
+5-3security/py-argon2-cffi/Makefile
+3-3security/py-argon2-cffi/distinfo
+8-62 files

NetBSD/src FAZCR3Asys/arch/amiga/amiga trap.c, sys/arch/amiga/conf Makefile.amiga

   Get rid of something that's been "XXX: Temporarily required" for more
   years than I care to admit.  (Kernel config files can generate the
   required macro signals now.)
VersionDeltaFile
1.44+8-8sys/arch/m68k/m68k/switch_subr.s
1.149+3-3sys/arch/amiga/amiga/trap.c
1.113+2-2sys/arch/amiga/conf/Makefile.amiga
1.68+1-2sys/arch/cesfic/cesfic/locore.s
1.142+1-2sys/arch/atari/atari/locore.s
1.217+1-2sys/arch/hp300/hp300/locore.s
+16-1910 files not shown
+26-3916 files

NetBSD/src X2dEYy2sys/arch/m68k/m68k switch_subr.s

   G/C _M68K_CUSTOM_FPU_CTX; nothing is using it and it's just adding clutter
   at the moment.
VersionDeltaFile
1.43+1-34sys/arch/m68k/m68k/switch_subr.s
+1-341 files

NetBSD/pkgsrc ybwXORVdoc CHANGES-2026

   tex package updates
VersionDeltaFile
1.1934+16-1doc/CHANGES-2026
+16-11 files

NetBSD/pkgsrc JO9FqhUprint/tex-beamertheme-metropolis distinfo Makefile

   tex-beamertheme-metropolis: update to 1.2.78281

   changes unknown
VersionDeltaFile
1.4+4-4print/tex-beamertheme-metropolis/distinfo
1.2+3-2print/tex-beamertheme-metropolis/Makefile
+7-62 files