FreeBSD/ports ffa3015databases/ejdb Makefile distinfo, databases/iowow distinfo pkg-plist

databases/iowow: update the port to version 1.4.18

- Squash the chains of consecutive spaces between compilation
  flags to make the build log more readable
- databases/ejdb: pull upstream patch to synchronize with the
  new IOWOW struct naming

Reported by:    portscout
DeltaFile
+13-4databases/iowow/files/patch-src_CMakeLists.txt
+3-3databases/iowow/distinfo
+3-1databases/iowow/pkg-plist
+3-0databases/ejdb/Makefile
+1-1databases/iowow/Makefile
+2-0databases/ejdb/distinfo
+25-96 files

FreeBSD/ports 65e52a0math/lean4/files patch-stage0_src_bin_leanc.in patch-src_bin_leanc.in

math/lean4: Update patches
DeltaFile
+0-11math/lean4/files/patch-stage0_src_bin_leanc.in
+0-11math/lean4/files/patch-src_bin_leanc.in
+4-4math/lean4/files/patch-src_shell_CMakeLists.txt
+4-4math/lean4/files/patch-stage0_src_shell_CMakeLists.txt
+3-4math/lean4/files/patch-src_runtime_io.cpp
+4-2math/lean4/files/patch-src_runtime_stack__overflow.cpp
+15-366 files

FreeBSD/ports 409f916security/tor distinfo Makefile

security/tor: update 0.4.8.20 → 0.4.8.21
DeltaFile
+3-3security/tor/distinfo
+1-1security/tor/Makefile
+4-42 files

FreeBSD/ports 9bc6e7eaudio/tetraproc distinfo Makefile

audio/tetraproc: update 0.9.2 → 0.10.0
DeltaFile
+3-3audio/tetraproc/distinfo
+1-1audio/tetraproc/Makefile
+4-42 files

FreeBSD/ports 5565c25archivers/zchunk distinfo Makefile

archivers/zchunk: update 1.5.2 → 1.5.3
DeltaFile
+3-3archivers/zchunk/distinfo
+2-2archivers/zchunk/Makefile
+1-1archivers/zchunk/pkg-plist
+6-63 files

FreeBSD/ports a7d5924dns/subfinder distinfo Makefile

dns/subfinder: update 2.9.0 → 2.10.1
DeltaFile
+5-5dns/subfinder/distinfo
+2-2dns/subfinder/Makefile
+7-72 files

FreeBSD/ports ea5fe08net/torsocks Makefile

net/torsocks: update 2.4.0 → 2.5.0
DeltaFile
+1-1net/torsocks/Makefile
+1-11 files

FreeBSD/ports 9d0f301math/zimpl distinfo Makefile

math/zimpl: update 3.6.2 → 3.7.0
DeltaFile
+3-3math/zimpl/distinfo
+2-2math/zimpl/Makefile
+5-52 files

FreeBSD/doc 081e675website/content/en/releases/15.0R schedule.adoc

15.0: Put RC4 back on the schedule.

I started 15.0-RC4 builds on November 24th.  This is "one last RC"
to double-check that nothing broke with adding a backup pkgbase
signing key and tweaking the package set on DVDs again.
DeltaFile
+2-1website/content/en/releases/15.0R/schedule.adoc
+2-11 files

FreeBSD/src aac0ef5sys/kern firmw.S

kern: Fix section name for embedded firmware blobs

In practice this just ends up as an orphan section and so is placed next
to .rodata-like sections, so it's pretty harmless, but not intended.

Fixes:  a095390344fb ("Use a template assembly file for firmware object files.")
DeltaFile
+1-1sys/kern/firmw.S
+1-11 files

FreeBSD/ports 3b09b6adevel/tinysparql pkg-plist Makefile

devel/tinysparql: update to 3.10.1

Changelog: https://gitlab.gnome.org/GNOME/tinysparql/-/blob/3.10.1/NEWS

- make options for avahi, bash completions, docs, man pages, tests and vapi
- create libtracker-sparql-3.0.so unversioned symlink for consumer LIB_DEPENDS
DeltaFile
+263-14devel/tinysparql/pkg-plist
+32-12devel/tinysparql/Makefile
+3-3devel/tinysparql/distinfo
+298-293 files

FreeBSD/src f6bd9b2crypto/openssh sshconnect.c FREEBSD-upgrade

openssh: Don't attempt to connect to unsupported addresses

When iterating over known addresses for the requested target host name,
skip those that are not supported by the running kernel.

MFC after:      1 week
PR:             195231
Reviewed by:    emaste
Differential Revision:  https://reviews.freebsd.org/D53588

(cherry picked from commit 5818b6ee552b302f5300934f9b8cb94881867a5f)
DeltaFile
+9-0crypto/openssh/sshconnect.c
+6-0crypto/openssh/FREEBSD-upgrade
+15-02 files

FreeBSD/src 00e4b16crypto/openssh sshconnect.c FREEBSD-upgrade

openssh: Don't attempt to connect to unsupported addresses

When iterating over known addresses for the requested target host name,
skip those that are not supported by the running kernel.

MFC after:      1 week
PR:             195231
Reviewed by:    emaste
Differential Revision:  https://reviews.freebsd.org/D53588

(cherry picked from commit 5818b6ee552b302f5300934f9b8cb94881867a5f)
DeltaFile
+9-0crypto/openssh/sshconnect.c
+7-0crypto/openssh/FREEBSD-upgrade
+16-02 files

FreeBSD/src 7f691e0bin/sh miscbltin.c sh.1, bin/sh/tests/builtins read12.0 read11.0

sh: Don't assume EINTR means SIGALRM

While waiting for input in the read builtin, if select() is interrupted
but there is no pending signal, we act like we timed out, and return the
same status as if we had been interrupted by SIGALRM, instead of looping
until we actually do time out.

* Replace the single select() call with a ppoll() loop.

* Improve validation of the timeout value.  We now accept things like
  "1h30m15s", which we used to silently truncate to "1h".  The flip side
  is that we no longer accept things like "1hour" or "5sec".

* Modify the existing `read -t 0` test case to verify that read returns
  immediately when there is input and fails immediately when there isn't.

* Add a second test case which performs the same tests with a non-zero
  timeout value.


    [7 lines not shown]
DeltaFile
+57-26bin/sh/miscbltin.c
+32-0bin/sh/tests/builtins/read12.0
+17-2bin/sh/tests/builtins/read11.0
+5-1bin/sh/sh.1
+1-0bin/sh/tests/builtins/Makefile
+112-295 files

FreeBSD/src e9019e7bin/sh/tests/builtins read11.0

sh tests: Fix racy test11.0

This was sometimes exiting while the child fifo was created resulting in
[ENOTEMPTY] from rm.  The child fifo isn't needed, just sleep.

PR:     290837
Fixes:  e31fb97148f ("read builtin: Empty variables on timeout")
MFC after:      3 days

(cherry picked from commit 5d55553e160a93788372785300f5bd07c2451f93)
DeltaFile
+2-2bin/sh/tests/builtins/read11.0
+2-21 files

FreeBSD/src 4004f9acrypto/openssh sshconnect.c FREEBSD-upgrade

openssh: Don't attempt to connect to unsupported addresses

When iterating over known addresses for the requested target host name,
skip those that are not supported by the running kernel.

MFC after:      1 week
PR:             195231
Reviewed by:    emaste
Differential Revision:  https://reviews.freebsd.org/D53588

(cherry picked from commit 5818b6ee552b302f5300934f9b8cb94881867a5f)
DeltaFile
+9-0crypto/openssh/sshconnect.c
+7-0crypto/openssh/FREEBSD-upgrade
+16-02 files

FreeBSD/src fb57eacbin/sh miscbltin.c sh.1, bin/sh/tests/builtins read12.0 read11.0

sh: Don't assume EINTR means SIGALRM

While waiting for input in the read builtin, if select() is interrupted
but there is no pending signal, we act like we timed out, and return the
same status as if we had been interrupted by SIGALRM, instead of looping
until we actually do time out.

* Replace the single select() call with a ppoll() loop.

* Improve validation of the timeout value.  We now accept things like
  "1h30m15s", which we used to silently truncate to "1h".  The flip side
  is that we no longer accept things like "1hour" or "5sec".

* Modify the existing `read -t 0` test case to verify that read returns
  immediately when there is input and fails immediately when there isn't.

* Add a second test case which performs the same tests with a non-zero
  timeout value.


    [7 lines not shown]
DeltaFile
+57-26bin/sh/miscbltin.c
+32-0bin/sh/tests/builtins/read12.0
+17-2bin/sh/tests/builtins/read11.0
+5-1bin/sh/sh.1
+1-0bin/sh/tests/builtins/Makefile
+112-295 files

FreeBSD/src 43b1b7cbin/sh/tests/builtins read11.0

sh tests: Fix racy test11.0

This was sometimes exiting while the child fifo was created resulting in
[ENOTEMPTY] from rm.  The child fifo isn't needed, just sleep.

PR:     290837
Fixes:  e31fb97148f ("read builtin: Empty variables on timeout")
MFC after:      3 days

(cherry picked from commit 5d55553e160a93788372785300f5bd07c2451f93)
DeltaFile
+2-2bin/sh/tests/builtins/read11.0
+2-21 files

FreeBSD/ports 9bc177dmath/octave-forge-quaternion distinfo Makefile, math/octave-forge-quaternion/files patch-is__real__array.cc

math/octave-forge-quaternion: Update to 2.4.1.
DeltaFile
+0-13math/octave-forge-quaternion/files/patch-is__real__array.cc
+3-2math/octave-forge-quaternion/distinfo
+2-3math/octave-forge-quaternion/Makefile
+5-183 files

FreeBSD/src 3c85756stand loader.mk, stand/efi/libefi Makefile

stand: Rename ZFSSRC to SAZFSSRC to avoid confusion

ZFSSRC is abiguous on its surface and too clos to ZFSTOP, so rename it
to SAZFSSRC.

Sponsored by:           Netflix
Reviewed by:            tsoome
Differential Revision:  https://reviews.freebsd.org/D53901
DeltaFile
+2-2stand/libsa/zfs/Makefile.inc
+2-2stand/i386/gptzfsboot/Makefile
+1-1stand/efi/libefi/Makefile
+1-1stand/efi/loader/Makefile
+1-1stand/kboot/kboot/Makefile
+1-1stand/loader.mk
+8-82 files not shown
+10-108 files

FreeBSD/src 646c0a2libexec/nuageinit nuageinit

nuageinit: Add guards against empty user data

Add guards against attempting to process a user data file with an empty
first line or contents.

PR:             290395
Reviewed by:    bapt (earlier), dtxdf, markj
MFC after:      3 days
Differential Revision:  https://reviews.freebsd.org/D53239

(cherry picked from commit 57d25b6333523491ac7a3e869bd5d16127203eed)
DeltaFile
+8-0libexec/nuageinit/nuageinit
+8-01 files

FreeBSD/src 9eca972libexec/nuageinit nuageinit nuage.lua, libexec/nuageinit/tests addfile.lua nuageinit.sh

nuageinit: Silence luacheck warnings and fix typos

No functional change intended.

Reviewed by:    bapt, dtxdf, kevans
MFC after:      3 days
Differential Revision:  https://reviews.freebsd.org/D53238

(cherry picked from commit 81af04b081402d131c7e34b30c88b7c337271fad)
DeltaFile
+11-13libexec/nuageinit/nuageinit
+2-4libexec/nuageinit/nuage.lua
+1-1libexec/nuageinit/tests/addfile.lua
+1-1libexec/nuageinit/tests/nuageinit.sh
+15-194 files

FreeBSD/src a7cadfflibexec/nuageinit nuageinit

nuageinit: Add guards against empty user data

Add guards against attempting to process a user data file with an empty
first line or contents.

PR:             290395
Reviewed by:    bapt (earlier), dtxdf, markj
MFC after:      3 days
Differential Revision:  https://reviews.freebsd.org/D53239

(cherry picked from commit 57d25b6333523491ac7a3e869bd5d16127203eed)
DeltaFile
+8-0libexec/nuageinit/nuageinit
+8-01 files

FreeBSD/src a5adb1clibexec/nuageinit nuageinit nuage.lua, libexec/nuageinit/tests addfile.lua nuageinit.sh

nuageinit: Silence luacheck warnings and fix typos

No functional change intended.

Reviewed by:    bapt, dtxdf, kevans
MFC after:      3 days
Differential Revision:  https://reviews.freebsd.org/D53238

(cherry picked from commit 81af04b081402d131c7e34b30c88b7c337271fad)
DeltaFile
+11-13libexec/nuageinit/nuageinit
+2-4libexec/nuageinit/nuage.lua
+1-1libexec/nuageinit/tests/addfile.lua
+1-1libexec/nuageinit/tests/nuageinit.sh
+15-194 files

FreeBSD/src 0534624stand defs.mk, stand/libsa/zfs Makefile.inc

stand: Move from OZFS to ZFSTOP

Use ZFSTOP instead of OZFS. They are the saame thing.

Sponsored by:           Netflix
Reviewed by:            tsoome
Differential Revision:  https://reviews.freebsd.org/D53900
DeltaFile
+8-8stand/libsa/zfs/Makefile.inc
+2-3stand/defs.mk
+10-112 files

FreeBSD/ports 1d6c500deskutils/treesheets distinfo Makefile, deskutils/treesheets/files patch-CMakeLists.txt

deskutils/treesheets: Update to 2770

ChangeLog: https://github.com/aardappel/treesheets/compare/2732...2770
DeltaFile
+7-5deskutils/treesheets/files/patch-CMakeLists.txt
+5-5deskutils/treesheets/distinfo
+2-2deskutils/treesheets/Makefile
+14-123 files

FreeBSD/ports cda44b8shells/xonsh distinfo Makefile

shells/xonsh: Update to 0.20.0

ChangeLog: https://github.com/xonsh/xonsh/releases/tag/0.20.0
DeltaFile
+3-3shells/xonsh/distinfo
+1-1shells/xonsh/Makefile
+4-42 files

FreeBSD/doc 5dfa4cddocumentation/content/en/books/accessibility/blindness _index.adoc

Accessibility Handbook: Add Speech Synthesizer

Reviewed by:            pauamma_gundo.com
Approved by:            bcr
Sponsored by:           The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D51286
DeltaFile
+146-0documentation/content/en/books/accessibility/blindness/_index.adoc
+146-01 files

FreeBSD/ports 63b58f9x11-wm/wlmaker distinfo Makefile

x11-wm/wlmaker: update to 0.6.2

Changes:        https://github.com/phkaeser/wlmaker/releases/tag/v0.6.2
Reported by:    GitHub (watch releases)

(cherry picked from commit ba82f2cacb86f06dc3950e28a96efc6865fce3a2)
DeltaFile
+5-5x11-wm/wlmaker/distinfo
+2-2x11-wm/wlmaker/Makefile
+7-72 files

FreeBSD/ports ec894c4graphics/wayland-utils distinfo Makefile

graphics/wayland-utils: update to 1.3.0

Changes:        https://gitlab.freedesktop.org/wayland/wayland-utils/-/compare/1.2.0...1.3.0
Reported by:    GitLab (notify releases)

(cherry picked from commit 185d3f045c61ab70b39f3dadc78ea55c25475af5)
(cherry picked from commit bdcb02b9ddda85216b07a56a1326f762b24c6845)
DeltaFile
+3-3graphics/wayland-utils/distinfo
+2-3graphics/wayland-utils/Makefile
+5-62 files