pkg-vulnerabilities: Remove duplicate inetutils entry
There was already an entry for CVE-2026-24061 and CVE-2026-24061 is not
fixed in 2.7 but will be fixed in a next release (or we should backport
them) via upstream commits fd702c02 and ccba9f74.
net/inetutils: update to 2.7
# Noteworthy changes in release 2.7 (2025-12-14) [stable]
* Systems without asprintf are now supported through the use of gnulib.
* Fix link errors on Solaris 11 OmniOS.
* ftpd: Expanded documentation of user authentication rules.
Thanks to Benjamin Cathelineau, see
<https://lists.gnu.org/archive/html/bug-inetutils/2025-10/msg00000.html>.
* syslogd: Fix a stack-based buffer overflow (CWE-121).
* syslogd: Log 'DEL' control characters as '^?'.
* Fix codespell typos.
* syslogd, talkd: Better compatibility with utmp-less GNU/Linux systems
[4 lines not shown]
ruby-gnome: update to 4.3.5
Upstream changes:
https://github.com/ruby-gnome/ruby-gnome/releases/tag/4.3.5
Ruby-GNOME 4.3.5: 2026-02-06
This is a GLib 2.87 support release.
Changes
Ruby/GLib2
* Improvements
+ Added support for GLib 2.87.
o GH-1695
o Patch by Alessandro Astone.
Ruby/Clutter
[22 lines not shown]
ftp: simplify socket buffer handling to improve performance
Only set the socket buffer sizes if the user explicitly sets the
rcvbuf (SO_RCVBUF) or sndbuf (SO_SNDBUF) to a positive value.
Otherwise leave to the operating system default.
Determine the transfer size based on the socket buffer size
clamped to 1 KiB .. 128 KiB, using using the maximum (128 KiB)
if the socket buffer size is 0 (autodetect).
Improves transfer performance on long fat links.
Bump version to 20260207.
PR bin/59865 from Christof Meerwald.