Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package coreutils for openSUSE:Factory checked in at 2022-08-18 16:48:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/coreutils (Old) and /work/SRC/openSUSE:Factory/.coreutils.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "coreutils" Thu Aug 18 16:48:40 2022 rev:147 rq:994133 version:9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/coreutils/coreutils.changes 2022-08-05 19:49:30.829214844 +0200 +++ /work/SRC/openSUSE:Factory/.coreutils.new.2083/coreutils.changes 2022-08-18 16:48:48.397395525 +0200 @@ -1,0 +2,11 @@ +Tue Aug 9 12:13:00 UTC 2022 - Dirk M??ller <dmuel...@suse.com> + +- refresh coreutils-i18n.patch from Fedora to make expand and unexpand + more similar + +------------------------------------------------------------------- +Mon Aug 8 12:19:30 UTC 2022 - Stephan Kulow <co...@suse.com> + +- Remove python2 from buildrequires - appears to be a left over + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ coreutils.spec ++++++ --- /var/tmp/diff_new_pack.b3IxnE/_old 2022-08-18 16:48:49.209397416 +0200 +++ /var/tmp/diff_new_pack.b3IxnE/_new 2022-08-18 16:48:49.213397425 +0200 @@ -81,7 +81,6 @@ BuildRequires: acl BuildRequires: gdb BuildRequires: perl-Expect -BuildRequires: python BuildRequires: python3 BuildRequires: python3-pyinotify BuildRequires: strace ++++++ coreutils-i18n.patch ++++++ --- /var/tmp/diff_new_pack.b3IxnE/_old 2022-08-18 16:48:49.277397575 +0200 +++ /var/tmp/diff_new_pack.b3IxnE/_new 2022-08-18 16:48:49.281397584 +0200 @@ -19,7 +19,7 @@ src/local.mk | 4 +- src/pr.c | 443 ++++++++++++++++++-- src/sort.c | 792 +++++++++++++++++++++++++++++++++--- - src/unexpand.c | 103 ++++- + src/unexpand.c | 102 ++++- src/uniq.c | 119 +++++- tests/Coreutils.pm | 3 + tests/expand/mb.sh | 183 +++++++++ @@ -35,7 +35,7 @@ tests/misc/uniq.pl | 55 +++ tests/pr/pr-tests.pl | 49 +++ tests/unexpand/mb.sh | 172 ++++++++ - 31 files changed, 3700 insertions(+), 242 deletions(-) + 31 files changed, 3699 insertions(+), 242 deletions(-) create mode 100644 lib/mbfile.c create mode 100644 lib/mbfile.h create mode 100644 m4/mbfile.m4 @@ -4273,21 +4273,18 @@ { /* Go back one column, and force recalculation of the next tab stop. */ -@@ -218,9 +277,11 @@ unexpand (void) - next_tab_column = column; - tab_index -= !!tab_index; +@@ -220,16 +279,20 @@ unexpand (void) } -- else -+ else if (!mb_iseq (c, '\n')) + else { - column++; -+ /* mb_width() returns 0 for control characters */ -+ const int width = mb_width (c); -+ column += (width) ? width : 1; - if (!column) +- if (!column) ++ const uintmax_t orig_column = column; ++ column += mb_width (c); ++ if (column < orig_column) die (EXIT_FAILURE, 0, _("input line is too long")); } -@@ -228,8 +289,11 @@ unexpand (void) + if (pending) { if (pending > 1 && one_blank_before_tab_stop) @@ -4301,7 +4298,7 @@ die (EXIT_FAILURE, errno, _("write error")); pending = 0; one_blank_before_tab_stop = false; -@@ -239,16 +303,17 @@ unexpand (void) +@@ -239,16 +302,17 @@ unexpand (void) convert &= convert_entire_line || blank; }