[packages/coreutils] up to 9.11

atler atler at pld-linux.org
Mon Apr 20 21:08:34 CEST 2026


commit e1ebdcd66d5ce842fb63597bcf1f21e2f4f7b647
Author: Jan Palus <atler at pld-linux.org>
Date:   Mon Apr 20 21:07:06 2026 +0200

    up to 9.11

 coreutils-fmt-wchars.patch | 16 ++++++----------
 coreutils-info.patch       | 36 ++++++++++++++++++++++++------------
 coreutils.spec             |  4 ++--
 tests.patch                |  6 +++---
 4 files changed, 35 insertions(+), 27 deletions(-)
---
diff --git a/coreutils.spec b/coreutils.spec
index 48170d1..74eaad8 100644
--- a/coreutils.spec
+++ b/coreutils.spec
@@ -8,12 +8,12 @@
 Summary:	GNU Core-utils - basic command line utilities
 Summary(pl.UTF-8):	GNU Core-utils - podstawowe narzędzia działające z linii poleceń
 Name:		coreutils
-Version:	9.10
+Version:	9.11
 Release:	1
 License:	GPL v3+
 Group:		Applications/System
 Source0:	https://ftp.gnu.org/gnu/coreutils/%{name}-%{version}.tar.xz
-# Source0-md5:	b0482ebec42fd48e95cb9187d566b9e4
+# Source0-md5:	e52e9857e4aa9ae38ef32f8ed6a27604
 Source1:	%{name}-non-english-man-pages.tar.bz2
 # Source1-md5:	f7c986ebc74ccb8d08ed70141063f14c
 Source2:	DIR_COLORS
diff --git a/coreutils-fmt-wchars.patch b/coreutils-fmt-wchars.patch
index dc0f892..05b3480 100644
--- a/coreutils-fmt-wchars.patch
+++ b/coreutils-fmt-wchars.patch
@@ -147,8 +147,8 @@
 +static int sentence_space;
 +
  /* Prefix minus leading and trailing spaces (default "").  */
--static char const *prefix;
-+static wchar_t *prefix;
+-static char const *prefix = "";
++static wchar_t *prefix = L"";
  
  /* User-supplied maximum line width (default WIDTH).  The only output
     lines longer than this will each comprise a single word.  */
@@ -226,19 +226,15 @@
    {"width", required_argument, NULL, 'w'},
    {"goal", required_argument, NULL, 'g'},
    {GETOPT_HELP_OPTION_DECL},
-@@ -345,9 +374,10 @@
+@@ -345,6 +374,8 @@
+ 
    atexit (close_stdout);
  
-   crown = tagged = split = uniform = false;
 +  sentence_space = 2;
-   max_width = WIDTH;
--  prefix = "";
--  prefix_length = prefix_lead_space = prefix_full_length = 0;
-+  prefix = L"";
-+  prefix_width = prefix_lead_space = prefix_full_width = 0;
- 
++
    if (argc > 1 && argv[1][0] == '-' && c_isdigit (argv[1][1]))
      {
+       /* Old option syntax; a dash followed by one or more digits.  */
 @@ -360,7 +390,7 @@
        argc--;
      }
diff --git a/coreutils-info.patch b/coreutils-info.patch
index fa680f5..6482001 100644
--- a/coreutils-info.patch
+++ b/coreutils-info.patch
@@ -1940,7 +1940,7 @@
  @section @command{timeout}: Run a command with a time limit
  
  @pindex timeout
-@@ -18292,90 +18210,6 @@ timeout -s INT 5s env --ignore-signal=IN
+@@ -18292,102 +18210,6 @@ timeout -s INT 5s env --ignore-signal=IN
  timeout -s INT -k 3s 5s env --ignore-signal=INT sleep 20
  @end example
  
@@ -2006,18 +2006,30 @@
 -argument specifies at least one process that the signal was sent to.
 -
 -The second form of the @command{kill} command lists signal information.
--Either the @option{-l} or @option{--list} option, or the @option{-t}
--or @option{--table} option must be specified.  Without any
-- at var{signal} argument, all supported signals are listed.  The output
--of @option{-l} or @option{--list} is a list of the signal names, one
--per line; if @var{signal} is already a name, the signal number is
--printed instead.  The output of @option{-t} or @option{--table} is a
--table of signal numbers, names, and descriptions.  This form of the
-- at command{kill} command succeeds if all @var{signal} arguments are valid
--and if there is no output error.
+-This form of the @command{kill} command succeeds if all @var{signal}
+-arguments are valid and if there is no output error.
 -
--The @command{kill} command also supports the @option{--help} and
-- at option{--version} options.  @xref{Common options}.
+-The program accepts the following options.  Also see @ref{Common options}.
+-
+- at table @samp
+-
+- at optAnchor{kill,-SIGNAL}
+- at optItem{kill,-s,}
+- at optItemx{kill,--signal,}
+-Specify the name or number of the signal to be sent.
+-
+- at optItem{kill,-l,}
+- at optItemx{kill,--list,}
+-List the supported signal names one per line if the @var{signal} option
+-is omitted.  If one or more @var{signal} options are provided, they are
+-converted between signal names and signal numbers.
+-
+- at optItem{kill,-t,}
+- at optItemx{kill,--table,}
+-This option behaves the same way as @option{--list} except it prints a
+-table of signal numbers, names, and descriptions.
+-
+- at end table
 -
 -A @var{signal} may be a signal name like @samp{HUP}, or a signal
 -number like @samp{1}, or an exit status of a process terminated by the
diff --git a/tests.patch b/tests.patch
index 75d40df..627bb66 100644
--- a/tests.patch
+++ b/tests.patch
@@ -112,10 +112,10 @@ diff -ruN coreutils-8.27.orig/tests/local.mk coreutils-8.27/tests/local.mk
    tests/rm/cycle.sh				\
    tests/cp/link-heap.sh				\
    tests/cp/no-ctx.sh				\
--  tests/tty/tty-eof.pl				\
+-  tests/misc/tty-eof.pl				\
    tests/misc/io-errors.sh			\
    tests/misc/read-errors.sh			\
-   tests/misc/write-errors.sh			\
+   tests/misc/responsive.sh			\
 @@ -364,7 +363,6 @@
    tests/sort/sort-unique-segv.sh		\
    tests/sort/sort-version.sh			\
@@ -127,7 +127,7 @@ diff -ruN coreutils-8.27.orig/tests/local.mk coreutils-8.27/tests/local.mk
 @@ -586,7 +586,6 @@ all_tests =					\
    tests/df/total-unprocessed.sh			\
    tests/df/no-mtab-status.sh			\
-   tests/df/no-mtab-status-masked-proc.sh			\
+   tests/df/no-mtab-status-masked-proc.sh	\
 -  tests/df/skip-duplicates.sh			\
    tests/df/skip-rootfs.sh			\
    tests/dd/ascii.sh				\
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/coreutils.git/commitdiff/e1ebdcd66d5ce842fb63597bcf1f21e2f4f7b647



More information about the pld-cvs-commit mailing list