public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Cc: Adolf Belka <adolf.belka@ipfire.org>
Subject: [PATCH] coreutils: Update to version 9.11
Date: Sun, 26 Apr 2026 13:44:00 +0200	[thread overview]
Message-ID: <20260426114418.122889-11-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20260426114418.122889-1-adolf.belka@ipfire.org>

- Update from version 9.10 to 9.11
- No change to rootfile
- Changelog
    9.11
Bug fixes
  'dd' now always diagnoses partial writes correctly upon write failure.
   Previously it may have indicated that only full writes were performed.
   [This bug was present in "the beginning".]
  'fold' will no longer truncate output when encountering 0xFF bytes.
   [bug introduced in coreutils-9.8]
  'fold' is again responsive to its input.  Previously it would have delayed
   processing until 256KiB was read from the input.
   [bug introduced in coreutils-9.8]
  'kill --help' now has links to valid anchors in the html manual.
   [bug introduced in coreutils-9.10]
  When configured with --enable-systemd, the commands 'pinky',
   'uptime', 'users', and 'who' no longer consider the systemd session
   classes 'greeter', 'lock-screen', 'background', 'background-light',
   and 'none' to be users.
   [bug introduced in coreutils-9.4]
  'pwd' on ancient systems will no longer overflow a buffer
   when operating in deep paths longer than twice the system PATH_MAX.
   [bug introduced in coreutils-9.6]
  'stat --printf=%%N' no longer performs unnecessary checks of the QUOTING_STYLE
   environment variable.
   [bug introduced in coreutils-8.26]
  'timeout' no longer exits abruptly when its parent is the init process, e.g.,
   when started by the entrypoint of a container.
   [bug introduced in coreutils-9.10]
New Features
  'cut' now supports multi-byte input and delimiters.  Consequently
   the -c option is now honored, and no longer an alias for -b, and
   the -n option is now honored, and no longer ignored.
   Also the -d option supports multi-byte delimiters.
  'cut' adds new options for better compatibility:
   The -w,--whitespace-delimited option was added to support blank aligned fields
   and for better compatibility with FreeBSD/macOS.
   The -O option was added as an alias for the --output-delimiter option,
   for better compatibility with busybox/toybox.
   The -F option was added as an alias for -w -O ' '
   for better compatibility with busybox/toybox.
  'date --date' now parses dot delimited dd.mm.yy format common in Europe.
   This is in addition to the already supported mm/dd/yy and yy-mm-dd formats.
Changes in behavior
  'cksum --check' now uses shell quoting when required, to more robustly
   escape file names output in diagnostics.
   This also affects md5sum, sha*sum, and b2sum.
Improvements
  'cat' now uses zero-copy I/O on Linux when appropriate, to improve throughput.
   E.g., throughput improved 6x from 12.9GiB/s to 81.8GiB/s on a Power10 system.
  'df --local' recognises more file system types as remote.
   Specifically: autofs, ncpfs, smb, smb2, gfs, gfs2, userlandfs.
  'df' improves duplicate mount suppression, by checking each mount against
   all previously kept entries for the same device, not just the latest one.
  'expand' and 'unexpand' now support multi-byte characters.
  'groups' and 'id' will now exit sooner after a write error,
   which is significant when listing information for many users.
  'install' now allows the combination of the --compare and
   --preserve-timestamps options.
  'fold', 'join', 'numfmt', 'uniq' now use more consistent blank character
   determination on non GLIBC platforms.  For example \u3000 (ideographic space)
   will be considered a blank character on all platforms.
  'nl' now supports multi-byte --section-delimiter characters.
  'shuf -i' now operates up to two times faster on systems with unlocked stdio
   functions.
  'tac' will now exit sooner after a write error, which is significant when
   operating on a file with many lines.
  'timeout' now properly detects when it is reparented by a subreaper process on
   Linux instead of init, e.g., the 'systemd --user' process.
  'wc -l' now operates up to four and a half times faster on hosts that support
   Neon instructions.
  'wc -m' now operates up to 2.6 times faster on GLIBC when processing
   non-ASCII UTF-8 characters.
  'yes' now uses zero-copy I/O on Linux to significantly increase throughput.
   E.g., throughput improved 15x from 11.6GiB/s to 175GiB/s on a Power10 system.
Build-related
  ./configure --enable-single-binary=hardlinks is now supported on systems
   with dash as the system shell at /bin/sh.
   [issue introduced in coreutils-9.10]
  The test suite may have failed with a "Hangup" error if run non-interactively.
   [issue introduced in coreutils-9.10]

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/coreutils | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/coreutils b/lfs/coreutils
index 9b4270c37..862a7249d 100644
--- a/lfs/coreutils
+++ b/lfs/coreutils
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 9.10
+VER        = 9.11
 
 THISAPP    = coreutils-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -56,7 +56,7 @@ objects =$(DL_FILE)
 
 $(DL_FILE)= $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 7f9f93afc996dea7b6ab412703b1706f40616ae4fee1eea9e5cad0f1e8e95b03df9570084a2703fa4b5bb1cb2eaf8bbe55368c0c7ff58af985b30d09227f9309
+$(DL_FILE)_BLAKE2 = bea602b60824724bddd53ef7a232292ddb99f9b940ebedc30bd42f9b2f3d4763e7ea6c1d76c556413261b8c0bba7b1adbb4a5f6619ff3c9bdbe80d05a12ebd86
 
 install : $(TARGET)
 
-- 
2.54.0



  parent reply	other threads:[~2026-04-26 11:44 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-26 11:43 [PATCH] core202: Ship coreutils Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship glib Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship hwdata Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship iproute2 Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship libcap Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship libgcrypt Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship libjpeg Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship libxml2 Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship parted Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship texinfo Adolf Belka
2026-04-26 11:44 ` Adolf Belka [this message]
2026-04-26 11:44 ` [PATCH] git: Update to version 2.54.0 Adolf Belka
2026-04-26 11:44 ` [PATCH] glib: Update to version 2.88.0 Adolf Belka
2026-04-26 11:44 ` [PATCH] harfbuzz: Update to version 14.2.0 Adolf Belka
2026-04-26 11:44 ` [PATCH] hwdata: Update to version 0.406 Adolf Belka
2026-04-26 11:44 ` [PATCH] iana-etc: Update to version 20260409 Adolf Belka
2026-04-26 11:44 ` [PATCH] iperf3: Update to version 3.21 Adolf Belka
2026-04-26 11:44 ` [PATCH] iproute2: Update to version 7.0.0 Adolf Belka
2026-04-26 11:44 ` [PATCH] libcap-ng: Update to version 0.9.3 Adolf Belka
2026-04-26 11:44 ` [PATCH] libcap: Update to version 2.78 Adolf Belka
2026-04-26 11:44 ` [PATCH] libgcrypt: Update to version 1.12.2 Adolf Belka
2026-04-26 11:44 ` [PATCH] libjpeg: Update to version 3.1.4.1 Adolf Belka
2026-04-26 11:44 ` [PATCH] libmpc: Update to version 1.4.1 Adolf Belka
2026-04-26 11:44 ` [PATCH] libpng: Update to version 1.6.58 Adolf Belka
2026-04-26 11:44 ` [PATCH] libsodium: Update to version 1.0.22 Adolf Belka
2026-04-26 11:44 ` [PATCH] libxml2: Update to version 2.15.3 Adolf Belka
2026-04-26 11:44 ` [PATCH] parted: Update to version 3.7 Adolf Belka
2026-04-26 11:44 ` [PATCH] pciutils: Update to version 3.15.0 Adolf Belka
2026-04-26 11:44 ` [PATCH] texinfo: Update to version 7.3 Adolf Belka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260426114418.122889-11-adolf.belka@ipfire.org \
    --to=adolf.belka@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox