Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package coreutils for openSUSE:Factory checked in at 2023-04-23 22:43:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/coreutils (Old) and /work/SRC/openSUSE:Factory/.coreutils.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "coreutils" Sun Apr 23 22:43:11 2023 rev:151 rq:1080972 version:9.3 Changes: -------- --- /work/SRC/openSUSE:Factory/coreutils/coreutils.changes 2023-04-08 17:38:21.769804487 +0200 +++ /work/SRC/openSUSE:Factory/.coreutils.new.1533/coreutils.changes 2023-04-23 22:43:12.565269230 +0200 @@ -1,0 +2,41 @@ +Thu Apr 20 09:19:20 UTC 2023 - Bernhard Voelker <m...@bernhard-voelker.de> + +- update to 9.3: + Bug fixes: + * cp --reflink=auto (the default), mv, and install + will again fall back to a standard copy in more cases. + Previously copies could fail with permission errors on + more restricted systems like android or containers etc. + [bug introduced in coreutils-9.2] + * cp --recursive --backup will again operate correctly. + Previousy it may have issued "File exists" errors when + it failed to appropriately rename files being replaced. + [bug introduced in coreutils-9.2] + * date --file and dircolors will now diagnose a failure to read a file. + Previously they would have silently ignored the failure. + [This bug was present in "the beginning".] + * md5sum --check again correctly prints the status of each file checked. + Previously the status for files was printed as 'OK' once any file had passed. + This also applies to cksum, sha*sum, and b2sum. + [bug introduced in coreutils-9.2] + * wc will now diagnose if any total counts have overflowed. + [This bug was present in "the beginning".] + * `wc -c` will again correctly update the read offset of inputs. + Previously it deduced the size of inputs while leaving the offset unchanged. + [bug introduced in coreutils-8.27] + * Coreutils programs no longer fail for timestamps past the year 2038 + on obsolete configurations with 32-bit signed time_t, because the + build procedure now rejects these configurations. + [This bug was present in "the beginning".] + Changes in behavior: + * 'cp -n' and 'mv -n' now issue an error diagnostic if skipping a file, + to correspond with -n inducing a nonzero exit status as of coreutils 9.2. + Similarly 'cp -v' and 'mv -v' will output a message for each file skipped + due to -n, -i, or -u. + New features: + * cp and mv now support --update=none to always skip existing files + in the destination, while not affecting the exit status. + This is equivalent to the --no-clobber behavior from before v9.2. +- drop fix-reflink-fallback.patch (upstream). + +------------------------------------------------------------------- Old: ---- coreutils-9.2.tar.xz coreutils-9.2.tar.xz.sig fix-reflink-fallback.patch New: ---- coreutils-9.3.tar.xz coreutils-9.3.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ coreutils.spec ++++++ --- /var/tmp/diff_new_pack.OaCzry/_old 2023-04-23 22:43:14.673281139 +0200 +++ /var/tmp/diff_new_pack.OaCzry/_new 2023-04-23 22:43:14.693281252 +0200 @@ -28,7 +28,7 @@ %global psuffix %{nil} %endif Name: coreutils%{?psuffix} -Version: 9.2 +Version: 9.3 Release: 0 Summary: GNU Core Utilities License: GPL-3.0-or-later @@ -42,8 +42,6 @@ Patch3: coreutils-remove_kill_documentation.patch Patch4: coreutils-i18n.patch Patch8: coreutils-sysinfo.patch -# PATCH-FIX-UPSTREAM: https://github.com/coreutils/coreutils/commit/093a8b4bfaba60005f14493ce7ef11ed665a0176 -Patch9: fix-reflink-fallback.patch Patch16: coreutils-invalid-ids.patch # OBS / RPMLINT require /usr/bin/timeout to be built with the -fpie option. Patch100: coreutils-build-timeout-as-pie.patch @@ -135,11 +133,10 @@ %prep %setup -q -n coreutils-%{version} -%patch4 -p1 +%patch4 %patch1 %patch3 %patch8 -%patch9 -p1 %patch16 # %if 0%{?suse_version} <= 1320 ++++++ coreutils-9.2.tar.xz -> coreutils-9.3.tar.xz ++++++ ++++ 113058 lines of diff (skipped) ++++++ coreutils-i18n.patch ++++++ --- /var/tmp/diff_new_pack.OaCzry/_old 2023-04-23 22:43:17.313296055 +0200 +++ /var/tmp/diff_new_pack.OaCzry/_new 2023-04-23 22:43:17.321296100 +0200 @@ -4,38 +4,38 @@ Subject: [PATCH] coreutils-i18n.patch --- - bootstrap.conf | 1 + - configure.ac | 2 + - lib/linebuffer.h | 8 + - lib/mbfile.c | 3 + - lib/mbfile.h | 255 ++++++++++++ - m4/mbfile.m4 | 14 + - src/cut.c | 508 +++++++++++++++++++++-- - src/expand-common.c | 114 ++++++ - src/expand-common.h | 12 + - src/expand.c | 90 +++- - src/fold.c | 312 ++++++++++++-- - src/join.c | 359 ++++++++++++++-- - src/local.mk | 4 +- - src/pr.c | 443 ++++++++++++++++++-- - src/sort.c | 792 +++++++++++++++++++++++++++++++++--- - src/unexpand.c | 102 ++++- - src/uniq.c | 119 +++++- - tests/Coreutils.pm | 3 + - tests/expand/mb.sh | 183 +++++++++ - tests/i18n/sort.sh | 29 ++ - tests/local.mk | 4 + - tests/misc/expand.pl | 42 ++ - tests/misc/fold.pl | 50 ++- - tests/misc/join.pl | 50 +++ - tests/misc/sort-mb-tests.sh | 45 ++ - tests/misc/sort-merge.pl | 42 ++ - tests/misc/sort.pl | 40 +- - tests/misc/unexpand.pl | 39 ++ - tests/misc/uniq.pl | 55 +++ - tests/pr/pr-tests.pl | 49 +++ - tests/unexpand/mb.sh | 172 ++++++++ - 31 files changed, 3699 insertions(+), 242 deletions(-) + bootstrap.conf | 1 + configure.ac | 2 + lib/linebuffer.h | 8 + lib/mbfile.c | 3 + lib/mbfile.h | 255 ++++++++++++++ + m4/mbfile.m4 | 14 + src/cut.c | 508 ++++++++++++++++++++++++++-- + src/expand-common.c | 114 ++++++ + src/expand-common.h | 12 + src/expand.c | 90 ++++ + src/fold.c | 312 +++++++++++++++-- + src/join.c | 236 +++++++++++-- + src/local.mk | 4 + src/pr.c | 443 ++++++++++++++++++++++-- + src/sort.c | 793 +++++++++++++++++++++++++++++++++++++++++--- + src/unexpand.c | 102 ++++- + src/uniq.c | 119 ++++++ + tests/Coreutils.pm | 3 + tests/expand/mb.sh | 183 ++++++++++ + tests/i18n/sort.sh | 29 + + tests/local.mk | 4 + tests/misc/expand.pl | 42 ++ + tests/misc/fold.pl | 50 ++ + tests/misc/join.pl | 50 ++ + tests/misc/sort-mb-tests.sh | 45 ++ + tests/misc/sort-merge.pl | 42 ++ + tests/misc/sort.pl | 40 ++ + tests/misc/unexpand.pl | 39 ++ + tests/misc/uniq.pl | 55 +++ + tests/pr/pr-tests.pl | 49 ++ + tests/unexpand/mb.sh | 172 +++++++++ + 31 files changed, 3600 insertions(+), 219 deletions(-) create mode 100644 lib/mbfile.c create mode 100644 lib/mbfile.h create mode 100644 m4/mbfile.m4 @@ -44,10 +44,10 @@ create mode 100755 tests/misc/sort-mb-tests.sh create mode 100755 tests/unexpand/mb.sh -Index: coreutils-9.2/bootstrap.conf +Index: bootstrap.conf =================================================================== ---- coreutils-9.2.orig/bootstrap.conf -+++ coreutils-9.2/bootstrap.conf +--- bootstrap.conf.orig ++++ bootstrap.conf @@ -165,6 +165,7 @@ gnulib_modules=" maintainer-makefile malloc-gnu @@ -56,10 +56,10 @@ mbrlen mbrtowc mbsalign -Index: coreutils-9.2/configure.ac +Index: configure.ac =================================================================== ---- coreutils-9.2.orig/configure.ac -+++ coreutils-9.2/configure.ac +--- configure.ac.orig ++++ configure.ac @@ -477,6 +477,8 @@ fi # I'm leaving it here for now. This whole thing needs to be modernized... gl_WINSIZE_IN_PTEM @@ -69,10 +69,10 @@ gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H if test $gl_cv_sys_tiocgwinsz_needs_termios_h = no && \ -Index: coreutils-9.2/lib/linebuffer.h +Index: lib/linebuffer.h =================================================================== ---- coreutils-9.2.orig/lib/linebuffer.h -+++ coreutils-9.2/lib/linebuffer.h +--- lib/linebuffer.h.orig ++++ lib/linebuffer.h @@ -22,6 +22,11 @@ # include "idx.h" # include <stdio.h> @@ -95,18 +95,18 @@ }; /* Initialize linebuffer LINEBUFFER for use. */ -Index: coreutils-9.2/lib/mbfile.c +Index: lib/mbfile.c =================================================================== --- /dev/null -+++ coreutils-9.2/lib/mbfile.c ++++ lib/mbfile.c @@ -0,0 +1,3 @@ +#include <config.h> +#define MBFILE_INLINE _GL_EXTERN_INLINE +#include "mbfile.h" -Index: coreutils-9.2/lib/mbfile.h +Index: lib/mbfile.h =================================================================== --- /dev/null -+++ coreutils-9.2/lib/mbfile.h ++++ lib/mbfile.h @@ -0,0 +1,255 @@ +/* Multibyte character I/O: macros for multi-byte encodings. + Copyright (C) 2001, 2005, 2009-2015 Free Software Foundation, Inc. @@ -363,10 +363,10 @@ +_GL_INLINE_HEADER_BEGIN + +#endif /* _MBFILE_H */ -Index: coreutils-9.2/m4/mbfile.m4 +Index: m4/mbfile.m4 =================================================================== --- /dev/null -+++ coreutils-9.2/m4/mbfile.m4 ++++ m4/mbfile.m4 @@ -0,0 +1,14 @@ +# mbfile.m4 serial 7 +dnl Copyright (C) 2005, 2008-2015 Free Software Foundation, Inc. @@ -382,10 +382,10 @@ + AC_REQUIRE([AC_TYPE_MBSTATE_T]) + : +]) -Index: coreutils-9.2/src/cut.c +Index: src/cut.c =================================================================== ---- coreutils-9.2.orig/src/cut.c -+++ coreutils-9.2/src/cut.c +--- src/cut.c.orig ++++ src/cut.c @@ -28,6 +28,11 @@ #include <assert.h> #include <getopt.h> @@ -1042,10 +1042,10 @@ if (have_read_stdin && fclose (stdin) == EOF) -Index: coreutils-9.2/src/expand-common.c +Index: src/expand-common.c =================================================================== ---- coreutils-9.2.orig/src/expand-common.c -+++ coreutils-9.2/src/expand-common.c +--- src/expand-common.c.orig ++++ src/expand-common.c @@ -19,6 +19,7 @@ #include <assert.h> #include <stdio.h> @@ -1174,10 +1174,10 @@ /* Add the comma or blank separated list of tab stops STOPS to the list of tab stops. */ extern void -Index: coreutils-9.2/src/expand-common.h +Index: src/expand-common.h =================================================================== ---- coreutils-9.2.orig/src/expand-common.h -+++ coreutils-9.2/src/expand-common.h +--- src/expand-common.h.orig ++++ src/expand-common.h @@ -25,6 +25,18 @@ extern size_t max_column_width; /* The desired exit status. */ extern int exit_status; @@ -1197,10 +1197,10 @@ /* Add tab stop TABVAL to the end of 'tab_list'. */ extern void add_tab_stop (uintmax_t tabval); -Index: coreutils-9.2/src/expand.c +Index: src/expand.c =================================================================== ---- coreutils-9.2.orig/src/expand.c -+++ coreutils-9.2/src/expand.c +--- src/expand.c.orig ++++ src/expand.c @@ -37,6 +37,9 @@ #include <stdio.h> #include <getopt.h> @@ -1353,10 +1353,10 @@ } } -Index: coreutils-9.2/src/fold.c +Index: src/fold.c =================================================================== ---- coreutils-9.2.orig/src/fold.c -+++ coreutils-9.2/src/fold.c +--- src/fold.c.orig ++++ src/fold.c @@ -22,12 +22,34 @@ #include <getopt.h> #include <sys/types.h> @@ -1759,10 +1759,10 @@ break; case 's': /* Break at word boundaries. */ -Index: coreutils-9.2/src/join.c +Index: src/join.c =================================================================== ---- coreutils-9.2.orig/src/join.c -+++ coreutils-9.2/src/join.c +--- src/join.c.orig ++++ src/join.c @@ -22,19 +22,33 @@ #include <sys/types.h> #include <getopt.h> @@ -2095,10 +2095,10 @@ } break; -Index: coreutils-9.2/src/local.mk +Index: src/local.mk =================================================================== ---- coreutils-9.2.orig/src/local.mk -+++ coreutils-9.2/src/local.mk +--- src/local.mk.orig ++++ src/local.mk @@ -438,8 +438,8 @@ src_base32_CPPFLAGS = -DBASE_TYPE=32 $(A src_basenc_SOURCES = src/basenc.c src_basenc_CPPFLAGS = -DBASE_TYPE=42 $(AM_CPPFLAGS) @@ -2110,10 +2110,10 @@ src_wc_SOURCES = src/wc.c if USE_AVX2_WC_LINECOUNT -Index: coreutils-9.2/src/pr.c +Index: src/pr.c =================================================================== ---- coreutils-9.2.orig/src/pr.c -+++ coreutils-9.2/src/pr.c +--- src/pr.c.orig ++++ src/pr.c @@ -311,6 +311,24 @@ #include <getopt.h> @@ -2876,10 +2876,10 @@ /* We've just printed some files and need to clean up things before looking for more options and printing the next batch of files. -Index: coreutils-9.2/src/sort.c +Index: src/sort.c =================================================================== ---- coreutils-9.2.orig/src/sort.c -+++ coreutils-9.2/src/sort.c +--- src/sort.c.orig ++++ src/sort.c @@ -29,6 +29,14 @@ #include <sys/wait.h> #include <signal.h> @@ -3952,10 +3952,10 @@ } break; -Index: coreutils-9.2/src/unexpand.c +Index: src/unexpand.c =================================================================== ---- coreutils-9.2.orig/src/unexpand.c -+++ coreutils-9.2/src/unexpand.c +--- src/unexpand.c.orig ++++ src/unexpand.c @@ -38,6 +38,9 @@ #include <stdio.h> #include <getopt.h> @@ -4157,10 +4157,10 @@ } } -Index: coreutils-9.2/src/uniq.c +Index: src/uniq.c =================================================================== ---- coreutils-9.2.orig/src/uniq.c -+++ coreutils-9.2/src/uniq.c +--- src/uniq.c.orig ++++ src/uniq.c @@ -21,6 +21,17 @@ #include <getopt.h> #include <sys/types.h> @@ -4322,10 +4322,10 @@ skip_chars = 0; skip_fields = 0; check_chars = SIZE_MAX; -Index: coreutils-9.2/tests/Coreutils.pm +Index: tests/Coreutils.pm =================================================================== ---- coreutils-9.2.orig/tests/Coreutils.pm -+++ coreutils-9.2/tests/Coreutils.pm +--- tests/Coreutils.pm.orig ++++ tests/Coreutils.pm @@ -269,6 +269,9 @@ sub run_tests ($$$$$) # Yes, this is an arbitrary limit. If it causes trouble, # consider removing it. @@ -4336,10 +4336,10 @@ if ($max < length $test_name) { warn "$program_name: $test_name: test name is too long (> $max)\n"; -Index: coreutils-9.2/tests/expand/mb.sh +Index: tests/expand/mb.sh =================================================================== --- /dev/null -+++ coreutils-9.2/tests/expand/mb.sh ++++ tests/expand/mb.sh @@ -0,0 +1,183 @@ +#!/bin/sh + @@ -4524,10 +4524,10 @@ +compare exp out > /dev/null 2>&1 || fail=1 + +exit $fail -Index: coreutils-9.2/tests/i18n/sort.sh +Index: tests/i18n/sort.sh =================================================================== --- /dev/null -+++ coreutils-9.2/tests/i18n/sort.sh ++++ tests/i18n/sort.sh @@ -0,0 +1,29 @@ +#!/bin/sh +# Verify sort's multi-byte support. @@ -4558,11 +4558,11 @@ + + +Exit $fail -Index: coreutils-9.2/tests/local.mk +Index: tests/local.mk =================================================================== ---- coreutils-9.2.orig/tests/local.mk -+++ coreutils-9.2/tests/local.mk -@@ -381,6 +381,8 @@ all_tests = \ +--- tests/local.mk.orig ++++ tests/local.mk +@@ -383,6 +383,8 @@ all_tests = \ tests/misc/sort-discrim.sh \ tests/misc/sort-files0-from.pl \ tests/misc/sort-float.sh \ @@ -4571,7 +4571,7 @@ tests/misc/sort-h-thousands-sep.sh \ tests/misc/sort-merge.pl \ tests/misc/sort-merge-fdlimit.sh \ -@@ -582,6 +584,7 @@ all_tests = \ +@@ -584,6 +586,7 @@ all_tests = \ tests/du/threshold.sh \ tests/du/trailing-slash.sh \ tests/du/two-args.sh \ @@ -4579,7 +4579,7 @@ tests/id/gnu-zero-uids.sh \ tests/id/no-context.sh \ tests/id/context.sh \ -@@ -734,6 +737,7 @@ all_tests = \ +@@ -736,6 +739,7 @@ all_tests = \ tests/touch/read-only.sh \ tests/touch/relative.sh \ tests/touch/trailing-slash.sh \ @@ -4587,10 +4587,10 @@ $(all_root_tests) # See tests/factor/create-test.sh. -Index: coreutils-9.2/tests/misc/expand.pl +Index: tests/misc/expand.pl =================================================================== ---- coreutils-9.2.orig/tests/misc/expand.pl -+++ coreutils-9.2/tests/misc/expand.pl +--- tests/misc/expand.pl.orig ++++ tests/misc/expand.pl @@ -27,6 +27,15 @@ my $prog = 'expand'; # Turn off localization of executable's output. @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3; @@ -4654,10 +4654,10 @@ my $save_temps = $ENV{DEBUG}; my $verbose = $ENV{VERBOSE}; -Index: coreutils-9.2/tests/misc/fold.pl +Index: tests/misc/fold.pl =================================================================== ---- coreutils-9.2.orig/tests/misc/fold.pl -+++ coreutils-9.2/tests/misc/fold.pl +--- tests/misc/fold.pl.orig ++++ tests/misc/fold.pl @@ -20,9 +20,18 @@ use strict; (my $program_name = $0) =~ s|.*/||; @@ -4727,10 +4727,10 @@ -my $prog = 'fold'; my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose); exit $fail; -Index: coreutils-9.2/tests/misc/join.pl +Index: tests/misc/join.pl =================================================================== ---- coreutils-9.2.orig/tests/misc/join.pl -+++ coreutils-9.2/tests/misc/join.pl +--- tests/misc/join.pl.orig ++++ tests/misc/join.pl @@ -25,6 +25,15 @@ my $limits = getlimits (); my $prog = 'join'; @@ -4797,10 +4797,10 @@ my $save_temps = $ENV{DEBUG}; my $verbose = $ENV{VERBOSE}; -Index: coreutils-9.2/tests/misc/sort-mb-tests.sh +Index: tests/misc/sort-mb-tests.sh =================================================================== --- /dev/null -+++ coreutils-9.2/tests/misc/sort-mb-tests.sh ++++ tests/misc/sort-mb-tests.sh @@ -0,0 +1,45 @@ +#!/bin/sh +# Verify sort's multi-byte support. @@ -4847,10 +4847,10 @@ +compare exp out || { fail=1; cat out; } + +Exit $fail -Index: coreutils-9.2/tests/misc/sort-merge.pl +Index: tests/misc/sort-merge.pl =================================================================== ---- coreutils-9.2.orig/tests/misc/sort-merge.pl -+++ coreutils-9.2/tests/misc/sort-merge.pl +--- tests/misc/sort-merge.pl.orig ++++ tests/misc/sort-merge.pl @@ -26,6 +26,15 @@ my $prog = 'sort'; # Turn off localization of executable's output. @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3; @@ -4907,10 +4907,10 @@ my $save_temps = $ENV{DEBUG}; my $verbose = $ENV{VERBOSE}; -Index: coreutils-9.2/tests/misc/sort.pl +Index: tests/misc/sort.pl =================================================================== ---- coreutils-9.2.orig/tests/misc/sort.pl -+++ coreutils-9.2/tests/misc/sort.pl +--- tests/misc/sort.pl.orig ++++ tests/misc/sort.pl @@ -24,10 +24,15 @@ my $prog = 'sort'; # Turn off localization of executable's output. @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3; @@ -4975,10 +4975,10 @@ my $save_temps = $ENV{DEBUG}; my $verbose = $ENV{VERBOSE}; -Index: coreutils-9.2/tests/misc/unexpand.pl +Index: tests/misc/unexpand.pl =================================================================== ---- coreutils-9.2.orig/tests/misc/unexpand.pl -+++ coreutils-9.2/tests/misc/unexpand.pl +--- tests/misc/unexpand.pl.orig ++++ tests/misc/unexpand.pl @@ -27,6 +27,14 @@ my $limits = getlimits (); my $prog = 'unexpand'; @@ -5032,10 +5032,10 @@ my $save_temps = $ENV{DEBUG}; my $verbose = $ENV{VERBOSE}; -Index: coreutils-9.2/tests/misc/uniq.pl +Index: tests/misc/uniq.pl =================================================================== ---- coreutils-9.2.orig/tests/misc/uniq.pl -+++ coreutils-9.2/tests/misc/uniq.pl +--- tests/misc/uniq.pl.orig ++++ tests/misc/uniq.pl @@ -23,9 +23,17 @@ my $limits = getlimits (); my $prog = 'uniq'; my $try = "Try '$prog --help' for more information.\n"; @@ -5108,10 +5108,10 @@ @Tests = add_z_variants \@Tests; @Tests = triple_test \@Tests; -Index: coreutils-9.2/tests/pr/pr-tests.pl +Index: tests/pr/pr-tests.pl =================================================================== ---- coreutils-9.2.orig/tests/pr/pr-tests.pl -+++ coreutils-9.2/tests/pr/pr-tests.pl +--- tests/pr/pr-tests.pl.orig ++++ tests/pr/pr-tests.pl @@ -24,6 +24,15 @@ use strict; my $prog = 'pr'; my $normalize_strerror = "s/': .*/'/"; @@ -5177,10 +5177,10 @@ my $save_temps = $ENV{DEBUG}; my $verbose = $ENV{VERBOSE}; -Index: coreutils-9.2/tests/unexpand/mb.sh +Index: tests/unexpand/mb.sh =================================================================== --- /dev/null -+++ coreutils-9.2/tests/unexpand/mb.sh ++++ tests/unexpand/mb.sh @@ -0,0 +1,172 @@ +#!/bin/sh + ++++++ coreutils-misc.patch ++++++ --- /var/tmp/diff_new_pack.OaCzry/_old 2023-04-23 22:43:17.341296213 +0200 +++ /var/tmp/diff_new_pack.OaCzry/_new 2023-04-23 22:43:17.345296236 +0200 @@ -37,7 +37,7 @@ =================================================================== --- tests/misc/help-version.sh.orig +++ tests/misc/help-version.sh -@@ -240,6 +240,7 @@ parted_setup () { args="-s $tmp_in mklab +@@ -241,6 +241,7 @@ parted_setup () { args="-s $tmp_in mklab for i in $built_programs; do # Skip these. case $i in chroot|stty|tty|false|chcon|runcon|coreutils) continue;; esac ++++++ coreutils-remove_hostname_documentation.patch ++++++ --- /var/tmp/diff_new_pack.OaCzry/_old 2023-04-23 22:43:17.361296326 +0200 +++ /var/tmp/diff_new_pack.OaCzry/_new 2023-04-23 22:43:17.365296349 +0200 @@ -31,7 +31,7 @@ * hostid invocation:: Print numeric host identifier * uptime invocation:: Print system uptime and load -@@ -16203,7 +16201,6 @@ information. +@@ -16227,7 +16225,6 @@ information. * arch invocation:: Print machine hardware name. * nproc invocation:: Print the number of processors. * uname invocation:: Print system information. @@ -39,7 +39,7 @@ * hostid invocation:: Print numeric host identifier. * uptime invocation:: Print system uptime and load. @end menu -@@ -17094,15 +17091,6 @@ Note this is non-portable (even across G +@@ -17118,15 +17115,6 @@ Note this is non-portable (even across G Print the machine hardware name (sometimes called the hardware class or hardware type). @@ -55,7 +55,7 @@ @item -p @itemx --processor @opindex -p -@@ -17156,34 +17144,6 @@ Print the kernel version. +@@ -17180,34 +17168,6 @@ Print the kernel version. @exitstatus ++++++ coreutils-remove_kill_documentation.patch ++++++ --- /var/tmp/diff_new_pack.OaCzry/_old 2023-04-23 22:43:17.385296462 +0200 +++ /var/tmp/diff_new_pack.OaCzry/_new 2023-04-23 22:43:17.389296484 +0200 @@ -33,7 +33,7 @@ Delaying * sleep invocation:: Delay for a specified time -@@ -18604,90 +18598,6 @@ timeout -s INT 5s env --ignore-signal=IN +@@ -18628,90 +18622,6 @@ timeout -s INT 5s env --ignore-signal=IN timeout -s INT -k 3s 5s env --ignore-signal=INT sleep 20 @end example ++++++ coreutils-skip-gnulib-test-tls.patch ++++++ --- /var/tmp/diff_new_pack.OaCzry/_old 2023-04-23 22:43:17.405296575 +0200 +++ /var/tmp/diff_new_pack.OaCzry/_new 2023-04-23 22:43:17.409296597 +0200 @@ -21,7 +21,7 @@ =================================================================== --- gnulib-tests/gnulib.mk.orig +++ gnulib-tests/gnulib.mk -@@ -2676,9 +2676,10 @@ EXTRA_DIST += test-timespec.c macros.h +@@ -2765,9 +2765,10 @@ EXTRA_DIST += test-timespec.c macros.h ## begin gnulib module tls-tests ++++++ coreutils-tests-shorten-extreme-factor-tests.patch ++++++ --- /var/tmp/diff_new_pack.OaCzry/_old 2023-04-23 22:43:17.441296778 +0200 +++ /var/tmp/diff_new_pack.OaCzry/_new 2023-04-23 22:43:17.445296801 +0200 @@ -16,7 +16,7 @@ =================================================================== --- tests/local.mk.orig +++ tests/local.mk -@@ -743,14 +743,9 @@ all_tests = \ +@@ -745,14 +745,9 @@ all_tests = \ # See tests/factor/create-test.sh. tf = tests/factor factor_tests = \ ++++++ coreutils-tests-workaround-make-fdleak.patch ++++++ --- /var/tmp/diff_new_pack.OaCzry/_old 2023-04-23 22:43:17.461296892 +0200 +++ /var/tmp/diff_new_pack.OaCzry/_new 2023-04-23 22:43:17.461296892 +0200 @@ -6,7 +6,7 @@ =================================================================== --- tests/init.sh.orig +++ tests/init.sh -@@ -685,6 +685,16 @@ compare () +@@ -690,6 +690,16 @@ compare () } # ----------------------------------------------------------------------------- ++++++ coreutils-use-python3.patch ++++++ --- /var/tmp/diff_new_pack.OaCzry/_old 2023-04-23 22:43:17.477296982 +0200 +++ /var/tmp/diff_new_pack.OaCzry/_new 2023-04-23 22:43:17.485297027 +0200 @@ -1,3 +1,7 @@ +--- + tests/du/move-dir-while-traversing.sh | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + Index: tests/du/move-dir-while-traversing.sh =================================================================== --- tests/du/move-dir-while-traversing.sh.orig