Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *coreutils* to *9.5* has Succeeded.
Next steps:
- apply the patch: git am 0001-coreutils-upgrade-9.4-9.5.patch
- check the changes to upstream patches and summarize them in the commit
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list
Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.
Please review the attached files for further information and build/update
failures.
Any problem please file a bug at
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler
Regards,
The Upgrade Helper
-- >8 --
From 62901c3e1a8f58b6b9a846248ecd7691d114b97c Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Mon, 1 Apr 2024 06:11:57 +0000
Subject: [PATCH] coreutils: upgrade 9.4 -> 9.5
---
...local.mk-fix-cross-compiling-problem.patch | 12 +++---
.../0001-posixtm-pacify-clang-18.patch | 38 ------------------
.../coreutils/coreutils/CVE-2024-0684.patch | 39 -------------------
.../remove-usr-local-lib-from-m4.patch | 7 ++--
.../{coreutils_9.4.bb => coreutils_9.5.bb} | 26 +++++++++++--
5 files changed, 31 insertions(+), 91 deletions(-)
delete mode 100644
meta/recipes-core/coreutils/coreutils/0001-posixtm-pacify-clang-18.patch
delete mode 100644 meta/recipes-core/coreutils/coreutils/CVE-2024-0684.patch
rename meta/recipes-core/coreutils/{coreutils_9.4.bb => coreutils_9.5.bb} (91%)
diff --git
a/meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch
b/meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch
index 66f9a716c9..e28cba0336 100644
---
a/meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch
+++
b/meta/recipes-core/coreutils/coreutils/0001-local.mk-fix-cross-compiling-problem.patch
@@ -1,4 +1,7 @@
-Subject: local.mk: fix cross compiling problem
+From ed7de0728f996e0ad936628a6001f4045af55c2b Mon Sep 17 00:00:00 2001
+From: Chen Qi <[email protected]>
+Date: Mon, 26 Dec 2016 16:10:35 +0800
+Subject: [PATCH] local.mk: fix cross compiling problem
We meet the following error when cross compiling.
| Makefile:3418: *** Recursive variable 'INSTALL' references itself
(eventually). Stop.
@@ -12,15 +15,12 @@ Signed-off-by: Chen Qi <[email protected]>
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/local.mk b/src/local.mk
-index 36dfa4e..c5898cc 100644
+index 96ee941..cdd47d6 100644
--- a/src/local.mk
+++ b/src/local.mk
-@@ -649,4 +649,4 @@ cu_install_program = @INSTALL_PROGRAM@
+@@ -704,4 +704,4 @@ cu_install_program = @INSTALL@
else
cu_install_program = src/ginstall
endif
-INSTALL = $(cu_install_program) -c
+INSTALL_PROGRAM = $(cu_install_program)
---
-2.1.0
-
diff --git
a/meta/recipes-core/coreutils/coreutils/0001-posixtm-pacify-clang-18.patch
b/meta/recipes-core/coreutils/coreutils/0001-posixtm-pacify-clang-18.patch
deleted file mode 100644
index e6c84be3c4..0000000000
--- a/meta/recipes-core/coreutils/coreutils/0001-posixtm-pacify-clang-18.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 67c298c36f69b6906840b7584be06b7b5f33f829 Mon Sep 17 00:00:00 2001
-From: Paul Eggert <[email protected]>
-Date: Tue, 16 Jan 2024 17:21:08 -0800
-Subject: [PATCH] posixtm: pacify clang 18
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Problem reported by Khem Raj in:
-https://lists.gnu.org/r/bug-gnulib/2024-01/msg00045.html
-* lib/posixtm.c (posixtime): Pacify clang 18 by converting bool to int.
-Arguably this is a bug in draft C2x, since the non-pointer args to
-ckd_add should promote just like any other expressions do;
-but that’s not clang’s fault.
-
-Upstream-Status: Submitted
[https://lists.gnu.org/archive/html/bug-gnulib/2024-01/msg00046.html]
-Signed-off-by: Khem Raj <[email protected]>
----
- ChangeLog | 10 ++++++++++
- lib/posixtm.c | 2 +-
- 2 files changed, 11 insertions(+), 1 deletion(-)
-
-diff --git a/lib/posixtm.c b/lib/posixtm.c
-index ef9f55f873..a072c7cad0 100644
---- a/lib/posixtm.c
-+++ b/lib/posixtm.c
-@@ -191,7 +191,7 @@ posixtime (time_t *p, const char *s, unsigned int
syntax_bits)
- | (tm0.tm_min ^ tm1.tm_min)
- | (tm0.tm_sec ^ tm1.tm_sec)))
- {
-- if (ckd_add (&t, t, leapsec))
-+ if (ckd_add (&t, t, +leapsec))
- return false;
- *p = t;
- return true;
---
-2.43.0
-
diff --git a/meta/recipes-core/coreutils/coreutils/CVE-2024-0684.patch
b/meta/recipes-core/coreutils/coreutils/CVE-2024-0684.patch
deleted file mode 100644
index 0c68e2dce0..0000000000
--- a/meta/recipes-core/coreutils/coreutils/CVE-2024-0684.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From c4c5ed8f4e9cd55a12966d4f520e3a13101637d9 Mon Sep 17 00:00:00 2001
-From: Paul Eggert <[email protected]>
-Date: Tue, 16 Jan 2024 13:48:32 -0800
-Subject: [PATCH 1/1] split: do not shrink hold buffer
-MIME-Version: 1.0
-Content-Type: text/plain; charset=utf8
-Content-Transfer-Encoding: 8bit
-
-* src/split.c (line_bytes_split): Do not shrink hold buffer.
-If it’s large for this batch it’s likely to be large for the next
-batch, and for ‘split’ it’s not worth the complexity/CPU hassle to
-shrink it. Do not assume hold_size can be bufsize.
-
-CVE: CVE-2024-0684
-Upstream-Status: Backport
[https://github.com/coreutils/coreutils/commit/c4c5ed8f4e9cd55a12966d4f520e3a13101637d9]
-Signed-off-by: Simone Weiß <[email protected]>
----
- src/split.c | 3 ---
- 1 file changed, 3 deletions(-)
-
-diff --git a/src/split.c b/src/split.c
-index 64020c859..037960a59 100644
---- a/src/split.c
-+++ b/src/split.c
-@@ -809,10 +809,7 @@ line_bytes_split (intmax_t n_bytes, char *buf, idx_t
bufsize)
- {
- cwrite (n_out == 0, hold, n_hold);
- n_out += n_hold;
-- if (n_hold > bufsize)
-- hold = xirealloc (hold, bufsize);
- n_hold = 0;
-- hold_size = bufsize;
- }
-
- /* Output to eol if present. */
---
-2.11.4.GIT
-
-
diff --git
a/meta/recipes-core/coreutils/coreutils/remove-usr-local-lib-from-m4.patch
b/meta/recipes-core/coreutils/coreutils/remove-usr-local-lib-from-m4.patch
index 1a8a9b9983..0ea89eaaa8 100644
--- a/meta/recipes-core/coreutils/coreutils/remove-usr-local-lib-from-m4.patch
+++ b/meta/recipes-core/coreutils/coreutils/remove-usr-local-lib-from-m4.patch
@@ -1,4 +1,4 @@
-From a26530083a29eeee910bfd606ecc621acecd547a Mon Sep 17 00:00:00 2001
+From 9c08b7d3188ac674eaf0f6d30d9b84b2df9a21b0 Mon Sep 17 00:00:00 2001
From: Khem Raj <[email protected]>
Date: Wed, 3 Aug 2011 14:12:30 -0700
Subject: [PATCH] coreutils: Fix build on uclibc
@@ -12,16 +12,15 @@ and make life easier for cross compilation process.
Signed-off-by: Khem Raj <[email protected]>
Upstream-Status: Inappropriate [Upstream does care for AIX while we may not]
-
---
m4/getloadavg.m4 | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/m4/getloadavg.m4 b/m4/getloadavg.m4
-index 8e96965..63782a2 100644
+index 9d0236f..68f7c52 100644
--- a/m4/getloadavg.m4
+++ b/m4/getloadavg.m4
-@@ -41,18 +41,6 @@ AC_CHECK_FUNC([getloadavg], [],
+@@ -46,18 +46,6 @@ if test $ac_cv_func_getloadavg != yes; then
[LIBS="-lutil $LIBS" gl_func_getloadavg_done=yes])
fi
diff --git a/meta/recipes-core/coreutils/coreutils_9.4.bb
b/meta/recipes-core/coreutils/coreutils_9.5.bb
similarity index 91%
rename from meta/recipes-core/coreutils/coreutils_9.4.bb
rename to meta/recipes-core/coreutils/coreutils_9.5.bb
index 62ecdea6ec..386f17b11d 100644
--- a/meta/recipes-core/coreutils/coreutils_9.4.bb
+++ b/meta/recipes-core/coreutils/coreutils_9.5.bb
@@ -1,3 +1,23 @@
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- src/ls.c
+# +++ src/ls.c
+# @@ -1,5 +1,5 @@
+# /* 'dir', 'vdir' and 'ls' directory listing programs for GNU.
+# - Copyright (C) 1985-2023 Free Software Foundation, Inc.
+# + Copyright (C) 1985-2024 Free Software Foundation, Inc.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+#
+#
+
SUMMARY = "The basic file, shell and text manipulation utilities"
DESCRIPTION = "The GNU Core Utilities provide the basic file, shell and text \
manipulation utilities. These are the core utilities which are expected to
exist on \
@@ -6,7 +26,7 @@ HOMEPAGE = "http://www.gnu.org/software/coreutils/"
BUGTRACKER = "http://debbugs.gnu.org/coreutils"
LICENSE = "GPL-3.0-or-later"
LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464 \
-
file://src/ls.c;beginline=1;endline=15;md5=b720a8b317035d66c555fc6d89e3674c \
+
file://src/ls.c;beginline=1;endline=15;md5=9ac94aaed7fd46fd8df7147a9e3410cb \
"
DEPENDS = "gmp libcap"
DEPENDS:class-native = ""
@@ -16,11 +36,9 @@ inherit autotools gettext texinfo
SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.xz \
file://remove-usr-local-lib-from-m4.patch \
file://0001-local.mk-fix-cross-compiling-problem.patch \
- file://0001-posixtm-pacify-clang-18.patch \
- file://CVE-2024-0684.patch \
file://run-ptest \
"
-SRC_URI[sha256sum] =
"ea613a4cf44612326e917201bbbcdfbd301de21ffc3b59b6e5c07e040b275e52"
+SRC_URI[sha256sum] =
"cd328edeac92f6a665de9f323c93b712af1858bc2e0d88f3f7100469470a1b8a"
#
http://git.savannah.gnu.org/cgit/coreutils.git/commit/?id=v8.27-101-gf5d7c0842
#
--
2.42.0
packages/core2-64-poky-linux/coreutils/coreutils-locale-ka: PKGSIZE changed from 106774 to 122188 (+14%) packages/core2-64-poky-linux/coreutils/coreutils-ptest: FILELIST: removed "/usr/lib/coreutils/ptest/src/chgrp.o /usr/lib/coreutils/ptest/tests/misc/basenc.pl /usr/lib/coreutils/ptest/src/chgrp.c /usr/lib/coreutils/ptest/tests/misc/base64.pl /usr/lib/coreutils/ptest/tests/misc/join.pl", added "/usr/lib/coreutils/ptest/tests/join/join-utf8.sh /usr/lib/coreutils/ptest/src/chown-chgrp.c /usr/lib/coreutils/ptest/src/chown-chown.c /usr/lib/coreutils/ptest/tests/tail/tail-sysfs.sh /usr/lib/coreutils/ptest/tests/basenc/base64.pl /usr/lib/coreutils/ptest/tests/cp/keep-directory-symlink.sh /usr/lib/coreutils/ptest/src/chown-chgrp.o /usr/lib/coreutils/ptest/src/chown-chown.o /usr/lib/coreutils/ptest/tests/join/join.pl /usr/lib/coreutils/ptest/tests/mv/mv-exchange.sh /usr/lib/coreutils/ptest/tests/chmod/symlinks.sh /usr/lib/coreutils/ptest/tests/basenc/basenc.pl /usr/lib/coreutils/ptest/tests/ls/size-align.sh /usr/lib/coreutils/ptest/tests/ls/acl.sh /usr/lib/coreutils/ptest/src/coreutils-chgrp.c /usr/lib/coreutils/ptest/tests/chgrp/from.sh"
0001-coreutils-upgrade-9.4-9.5.patch
Description: Binary data
packages/core2-64-poky-linux/coreutils/coreutils-dbg: FILELIST: removed "/usr/lib/coreutils/ptest/src/.debug/chgrp.o", added "/usr/lib/coreutils/ptest/src/.debug/chown-chown.o /usr/lib/coreutils/ptest/src/.debug/chown-chgrp.o" packages/core2-64-poky-linux/coreutils/coreutils-dbg: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-dbg: PKGSIZE changed from 59609016 to 59782448 (+0%) packages/core2-64-poky-linux/coreutils/coreutils-dbg: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-dev: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-dev: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-doc: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-doc: PKGSIZE changed from 1273811 to 1284783 (+1%) packages/core2-64-poky-linux/coreutils/coreutils-doc: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-af: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-af: PKGSIZE changed from 26799 to 26225 (-2%) packages/core2-64-poky-linux/coreutils/coreutils-locale-af: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-be: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-be: PKGSIZE changed from 55684 to 53809 (-3%) packages/core2-64-poky-linux/coreutils/coreutils-locale-be: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-bg: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-bg: PKGSIZE changed from 503125 to 476830 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-bg: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-ca: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-ca: PKGSIZE changed from 402120 to 381093 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-ca: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-cs: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-cs: PKGSIZE changed from 388492 to 367226 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-cs: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-da: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-da: PKGSIZE changed from 358849 to 343601 (-4%) packages/core2-64-poky-linux/coreutils/coreutils-locale-da: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-de: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-de: PKGSIZE changed from 391105 to 369525 (-6%) packages/core2-64-poky-linux/coreutils/coreutils-locale-de: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-el: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-el: PKGSIZE changed from 23203 to 22995 (-1%) packages/core2-64-poky-linux/coreutils/coreutils-locale-el: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-eo: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-eo: PKGSIZE changed from 149554 to 143258 (-4%) packages/core2-64-poky-linux/coreutils/coreutils-locale-eo: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-es: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-es: PKGSIZE changed from 223196 to 212581 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-es: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-et: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-et: PKGSIZE changed from 358835 to 339114 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-et: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-eu: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-eu: PKGSIZE changed from 26629 to 26099 (-2%) packages/core2-64-poky-linux/coreutils/coreutils-locale-eu: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-fi: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-fi: PKGSIZE changed from 111777 to 108182 (-3%) packages/core2-64-poky-linux/coreutils/coreutils-locale-fi: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-fr: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-fr: PKGSIZE changed from 399752 to 402148 (+1%) packages/core2-64-poky-linux/coreutils/coreutils-locale-fr: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-ga: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-ga: PKGSIZE changed from 103870 to 100569 (-3%) packages/core2-64-poky-linux/coreutils/coreutils-locale-ga: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-gl: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-gl: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-hr: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-hr: PKGSIZE changed from 375873 to 354959 (-6%) packages/core2-64-poky-linux/coreutils/coreutils-locale-hr: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-hu: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-hu: PKGSIZE changed from 300362 to 286802 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-hu: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-ia: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-ia: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-id: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-id: PKGSIZE changed from 127020 to 123590 (-3%) packages/core2-64-poky-linux/coreutils/coreutils-locale-id: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-it: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-it: PKGSIZE changed from 145727 to 140653 (-3%) packages/core2-64-poky-linux/coreutils/coreutils-locale-it: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-ja: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-ja: PKGSIZE changed from 361130 to 395754 (+10%) packages/core2-64-poky-linux/coreutils/coreutils-locale-ja: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-ka: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-ka: PKGSIZE changed from 106774 to 122188 (+14%) packages/core2-64-poky-linux/coreutils/coreutils-locale-ka: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-kk: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-kk: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-ko: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-ko: PKGSIZE changed from 395239 to 396783 (+0%) packages/core2-64-poky-linux/coreutils/coreutils-locale-ko: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-lg: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-lg: PKGSIZE changed from 184572 to 178795 (-3%) packages/core2-64-poky-linux/coreutils/coreutils-locale-lg: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-lt: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-lt: PKGSIZE changed from 29221 to 28442 (-3%) packages/core2-64-poky-linux/coreutils/coreutils-locale-lt: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-ms: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-ms: PKGSIZE changed from 21374 to 20790 (-3%) packages/core2-64-poky-linux/coreutils/coreutils-locale-ms: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-nb: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-nb: PKGSIZE changed from 342191 to 325175 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-nb: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-nl: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-nl: PKGSIZE changed from 323335 to 319482 (-1%) packages/core2-64-poky-linux/coreutils/coreutils-locale-nl: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-pl: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-pl: PKGSIZE changed from 387885 to 366738 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-pl: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-pt-br: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-pt-br: PKGSIZE changed from 306558 to 291682 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-pt-br: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-pt: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-pt: PKGSIZE changed from 318749 to 303367 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-pt: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-ro: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-ro: PKGSIZE changed from 402501 to 404968 (+1%) packages/core2-64-poky-linux/coreutils/coreutils-locale-ro: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-ru: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-ru: PKGSIZE changed from 461705 to 439026 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-ru: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-sk: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-sk: PKGSIZE changed from 65831 to 64872 (-1%) packages/core2-64-poky-linux/coreutils/coreutils-locale-sk: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-sl: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-sl: PKGSIZE changed from 260870 to 278910 (+7%) packages/core2-64-poky-linux/coreutils/coreutils-locale-sl: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-sr: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-sr: PKGSIZE changed from 467581 to 447961 (-4%) packages/core2-64-poky-linux/coreutils/coreutils-locale-sr: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-sv: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-sv: PKGSIZE changed from 367280 to 347314 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-sv: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-ta: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-ta: PKGSIZE changed from 56216 to 52443 (-7%) packages/core2-64-poky-linux/coreutils/coreutils-locale-ta: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-tr: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-tr: PKGSIZE changed from 347682 to 330196 (-5%) packages/core2-64-poky-linux/coreutils/coreutils-locale-tr: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-uk: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-uk: PKGSIZE changed from 489840 to 492976 (+1%) packages/core2-64-poky-linux/coreutils/coreutils-locale-uk: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-vi: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-vi: PKGSIZE changed from 313068 to 299170 (-4%) packages/core2-64-poky-linux/coreutils/coreutils-locale-vi: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-zh-cn: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-zh-cn: PKGSIZE changed from 364453 to 366642 (+1%) packages/core2-64-poky-linux/coreutils/coreutils-locale-zh-cn: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-locale-zh-tw: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-locale-zh-tw: PKGSIZE changed from 267890 to 265025 (-1%) packages/core2-64-poky-linux/coreutils/coreutils-locale-zh-tw: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-ptest: FILELIST: removed "/usr/lib/coreutils/ptest/src/chgrp.c /usr/lib/coreutils/ptest/tests/misc/basenc.pl /usr/lib/coreutils/ptest/src/chgrp.o /usr/lib/coreutils/ptest/tests/misc/join.pl /usr/lib/coreutils/ptest/tests/misc/base64.pl", added "/usr/lib/coreutils/ptest/tests/tail/tail-sysfs.sh /usr/lib/coreutils/ptest/tests/cp/keep-directory-symlink.sh /usr/lib/coreutils/ptest/tests/join/join.pl /usr/lib/coreutils/ptest/src/coreutils-chgrp.c /usr/lib/coreutils/ptest/src/chown-chgrp.c /usr/lib/coreutils/ptest/src/chown-chown.c /usr/lib/coreutils/ptest/tests/chmod/symlinks.sh /usr/lib/coreutils/ptest/tests/join/join-utf8.sh /usr/lib/coreutils/ptest/src/chown-chown.o /usr/lib/coreutils/ptest/tests/mv/mv-exchange.sh /usr/lib/coreutils/ptest/tests/basenc/base64.pl /usr/lib/coreutils/ptest/tests/ls/acl.sh /usr/lib/coreutils/ptest/tests/ls/size-align.sh /usr/lib/coreutils/ptest/src/chown-chgrp.o /usr/lib/coreutils/ptest/tests/chgrp/from.sh /u sr/lib/coreutils/ptest/tests/basenc/basenc.pl" packages/core2-64-poky-linux/coreutils/coreutils-ptest: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-ptest: PKGSIZE changed from 16066263 to 16101939 (+0%) packages/core2-64-poky-linux/coreutils/coreutils-ptest: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-src: FILELIST: directory renamed /usr/src/debug/coreutils/9.4/lib/unistr -> /usr/src/debug/coreutils/9.5/lib/unistr, directory renamed /usr/src/debug/coreutils/9.4/lib/sys -> /usr/src/debug/coreutils/9.5/lib/sys, directory renamed /usr/src/debug/coreutils/9.4/src/blake2 -> /usr/src/debug/coreutils/9.5/src/blake2, directory renamed /usr/src/debug/coreutils/9.4/lib/malloc -> /usr/src/debug/coreutils/9.5/lib/malloc, directory renamed /usr/src/debug/coreutils/9.4/lib/selinux -> /usr/src/debug/coreutils/9.5/lib/selinux, removed "/usr/src/debug/coreutils/9.4/lib/fts_.h /usr/src/debug/coreutils/9.4/lib/xalloc.h /usr/src/debug/coreutils/9.4/lib/smack.h /usr/src/debug/coreutils/9.4/src/printf.c /usr/src/debug/coreutils/9.4/src/hostid.c /usr/src/debug/coreutils/9.4/lib/hash-pjw.h /usr/src/debug/coreutils/9.4/src/ln.c /usr/src/debug/coreutils/9.4/lib/sha256-stream.c /usr/src/debug/coreutils/9.4/lib/sha512-stream.c /usr/src/debug/coreutils/9.4/lib /hash-pjw.c /usr/src/debug/coreutils/9.4/lib/rand-isaac.h /usr/src/debug/coreutils/9.4/lib/stdio-safer.h /usr/src/debug/coreutils/9.4/lib/rand-isaac.c /usr/src/debug/coreutils/9.4/lib/acl-internal.c /usr/src/debug/coreutils/9.4/src/stty.c /usr/src/debug/coreutils/9.4/lib/version-etc-fsf.c /usr/src/debug/coreutils/9.4/lib/acl-internal.h /usr/src/debug/coreutils/9.4/lib/closeout.h /usr/src/debug/coreutils/9.4/src/date.c /usr/src/debug/coreutils/9.4/lib/closeout.c /usr/src/debug/coreutils/9.4/lib/sha1-stream.c /usr/src/debug/coreutils/9.4/lib/vfprintf.c /usr/src/debug/coreutils/9.4/lib/nanosleep.c /usr/src/debug/coreutils/9.4/lib/version-etc.h /usr/src/debug/coreutils/9.4/lib/version-etc.c /usr/src/debug/coreutils/9.4/lib/strnumcmp-in.h /usr/src/debug/coreutils/9.4/lib/targetdir.c /usr/src/debug/coreutils/9.4/lib/mbrtoc32.c /usr/src/debug/coreutils/9.4/lib/targetdir.h /usr/src/debug/coreutils/9.4/lib/backupfile.h /usr/src/debug/coreutils/9.4/lib/wchar.h /usr/src/debug/coreutils/9.4/lib /backupfile.c /usr/src/debug/coreutils/9.4/lib/readtokens.h /usr/src/debug/coreutils/9.4/lib/xbinary-io.h /usr/src/debug/coreutils/9.4/lib/readtokens.c /usr/src/debug/coreutils/9.4/lib/filevercmp.h /usr/src/debug/coreutils/9.4/lib/freopen-safer.c /usr/src/debug/coreutils/9.4/lib/filevercmp.c /usr/src/debug/coreutils/9.4/src/pwd.c /usr/src/debug/coreutils/9.4/src/nl.c /usr/src/debug/coreutils/9.4/lib/xvasprintf.c /usr/src/debug/coreutils/9.4/lib/full-read.h /usr/src/debug/coreutils/9.4/lib/c-strncasecmp.c /usr/src/debug/coreutils/9.4/lib/xvasprintf.h /usr/src/debug/coreutils/9.4/src/statx.h /usr/src/debug/coreutils/9.4/src/copy.h /usr/src/debug/coreutils/9.4/src/copy.c /usr/src/debug/coreutils/9.4/src/ioblksize.h /usr/src/debug/coreutils/9.4/lib/idx.h /usr/src/debug/coreutils/9.4/lib/mbsrtowcs.c /usr/src/debug/coreutils/9.4/lib/fpucw.h /usr/src/debug/coreutils/9.4/lib/selinux-at.h /usr/src/debug/coreutils/9.4/lib/physmem.h /usr/src/debug/coreutils/9.4/lib/posixtm.h /usr/src/debug/cor eutils/9.4/lib/xgetcwd.h /usr/src/debug/coreutils/9.4/lib/xprintf.h /usr/src/debug/coreutils/9.4/lib/copy-acl.c /usr/src/debug/coreutils/9.4/lib/xstrtod.h /usr/src/debug/coreutils/9.4/lib/xstrtol.h /usr/src/debug/coreutils/9.4/lib/mountlist.h /usr/src/debug/coreutils/9.4/src/sleep.c /usr/src/debug/coreutils/9.4/src/pathchk.c /usr/src/debug/coreutils/9.4/lib/posixtm.c /usr/src/debug/coreutils/9.4/lib/mountlist.c /usr/src/debug/coreutils/9.4/lib/physmem.c /usr/src/debug/coreutils/9.4/lib/xgetcwd.c /usr/src/debug/coreutils/9.4/lib/xmalloc.c /usr/src/debug/coreutils/9.4/lib/xprintf.c /usr/src/debug/coreutils/9.4/lib/xstrtod.c /usr/src/debug/coreutils/9.4/lib/xstrtol.c /usr/src/debug/coreutils/9.4/lib/save-cwd.h /usr/src/debug/coreutils/9.4/lib/c-strtod.h /usr/src/debug/coreutils/9.4/lib/save-cwd.c /usr/src/debug/coreutils/9.4/lib/c-strtod.c /usr/src/debug/coreutils/9.4/src/touch.c /usr/src/debug/coreutils/9.4/src/tsort.c /usr/src/debug/coreutils/9.4/lib/openat.h /usr/src/debug/coreutils /9.4/lib/getcwd.c /usr/src/debug/coreutils/9.4/lib/getopt.c /usr/src/debug/coreutils/9.4/src/groups.c /usr/src/debug/coreutils/9.4/src/whoami.c /usr/src/debug/coreutils/9.4/src/cksum_pclmul.c /usr/src/debug/coreutils/9.4/src/mkdir.c /usr/src/debug/coreutils/9.4/src/users.c /usr/src/debug/coreutils/9.4/src/cksum.h /usr/src/debug/coreutils/9.4/src/make-prime-list.c /usr/src/debug/coreutils/9.4/lib/mbuiterf.h /usr/src/debug/coreutils/9.4/lib/file-set.h /usr/src/debug/coreutils/9.4/src/cksum.c /usr/src/debug/coreutils/9.4/src/yes.c /usr/src/debug/coreutils/9.4/lib/fchmodat.c /usr/src/debug/coreutils/9.4/lib/file-set.c /usr/src/debug/coreutils/9.4/src/readlink.c /usr/src/debug/coreutils/9.4/src/sync.c /usr/src/debug/coreutils/9.4/lib/sm3-stream.c /usr/src/debug/coreutils/9.4/src/paste.c /usr/src/debug/coreutils/9.4/lib/randperm.c /usr/src/debug/coreutils/9.4/lib/areadlinkat-with-size.c /usr/src/debug/coreutils/9.4/lib/careadlinkat.h /usr/src/debug/coreutils/9.4/lib/gethrxtime.c /usr/src/ debug/coreutils/9.4/lib/randperm.h /usr/src/debug/coreutils/9.4/lib/gethrxtime.h /usr/src/debug/coreutils/9.4/lib/careadlinkat.c /usr/src/debug/coreutils/9.4/src/expr.c /usr/src/debug/coreutils/9.4/lib/basename.c /usr/src/debug/coreutils/9.4/src/basename.c /usr/src/debug/coreutils/9.4/lib/fd-reopen.c /usr/src/debug/coreutils/9.4/lib/fd-reopen.h /usr/src/debug/coreutils/9.4/lib/getopt-ext.h /usr/src/debug/coreutils/9.4/src/test.c /usr/src/debug/coreutils/9.4/lib/memcasecmp.h /usr/src/debug/coreutils/9.4/lib/xdectoint.h /usr/src/debug/coreutils/9.4/lib/opendir-safer.c /usr/src/debug/coreutils/9.4/lib/openat-safer.c /usr/src/debug/coreutils/9.4/lib/mbscasecmp.c /usr/src/debug/coreutils/9.4/lib/memcasecmp.c /usr/src/debug/coreutils/9.4/lib/xdectoint.c /usr/src/debug/coreutils/9.4/lib/write-any-file.c /usr/src/debug/coreutils/9.4/lib/write-any-file.h /usr/src/debug/coreutils/9.4/lib/acl.h /usr/src/debug/coreutils/9.4/lib/nstrftime.c /usr/src/debug/coreutils/9.4/lib/xgethostname.h /usr/sr c/debug/coreutils/9.4/lib/idcache.h /usr/src/debug/coreutils/9.4/lib/ino-map.h /usr/src/debug/coreutils/9.4/lib/isapipe.h /usr/src/debug/coreutils/9.4/lib/isapipe.c /usr/src/debug/coreutils/9.4/lib/at-func.c /usr/src/debug/coreutils/9.4/lib/idcache.c /usr/src/debug/coreutils/9.4/lib/ino-map.c /usr/src/debug/coreutils/9.4/src/install.c /usr/src/debug/coreutils/9.4/src/find-mount-point.c /usr/src/debug/coreutils/9.4/lib/fnmatch_loop.c /usr/src/debug/coreutils/9.4/lib/open-safer.c /usr/src/debug/coreutils/9.4/src/kill.c /usr/src/debug/coreutils/9.4/src/chcon.c /usr/src/debug/coreutils/9.4/src/find-mount-point.h /usr/src/debug/coreutils/9.4/src/chown.c /usr/src/debug/coreutils/9.4/lib/mgetgroups.h /usr/src/debug/coreutils/9.4/lib/base32.h /usr/src/debug/coreutils/9.4/lib/base64.h /usr/src/debug/coreutils/9.4/lib/mgetgroups.c /usr/src/debug/coreutils/9.4/src/remove.h /usr/src/debug/coreutils/9.4/lib/base32.c /usr/src/debug/coreutils/9.4/lib/base64.c /usr/src/debug/coreutils/9.4/src/basen c.c /usr/src/debug/coreutils/9.4/src/remove.c /usr/src/debug/coreutils/9.4/src/runcon.c /usr/src/debug/coreutils/9.4/src/tty.c /usr/src/debug/coreutils/9.4/src/rm.c /usr/src/debug/coreutils/9.4/src/df.c /usr/src/debug/coreutils/9.4/lib/dup-safer.c /usr/src/debug/coreutils/9.4/lib/getopt_int.h /usr/src/debug/coreutils/9.4/src/fmt.c /usr/src/debug/coreutils/9.4/lib/regex.h /usr/src/debug/coreutils/9.4/src/fs-is-local.h /usr/src/debug/coreutils/9.4/lib/close-stream.c /usr/src/debug/coreutils/9.4/lib/dup-safer-flag.c /usr/src/debug/coreutils/9.4/src/uniq.c /usr/src/debug/coreutils/9.4/lib/close-stream.h /usr/src/debug/coreutils/9.4/lib/localcharset.c /usr/src/debug/coreutils/9.4/lib/localcharset.h /usr/src/debug/coreutils/9.4/lib/gettime-res.c /usr/src/debug/coreutils/9.4/lib/mbswidth.c /usr/src/debug/coreutils/9.4/src/group-list.h /usr/src/debug/coreutils/9.4/src/tac.c /usr/src/debug/coreutils/9.4/lib/mbswidth.h /usr/src/debug/coreutils/9.4/src/fold.c /usr/src/debug/coreutils/9.4/src/g roup-list.c /usr/src/debug/coreutils/9.4/src/sum.h /usr/src/debug/coreutils/9.4/lib/mbsalign.c /usr/src/debug/coreutils/9.4/src/sum.c /usr/src/debug/coreutils/9.4/lib/mbsalign.h /usr/src/debug/coreutils/9.4/lib/hard-locale.h /usr/src/debug/coreutils/9.4/lib/sm3.c /usr/src/debug/coreutils/9.4/lib/hard-locale.c /usr/src/debug/coreutils/9.4/lib/sm3.h /usr/src/debug/coreutils/9.4/lib/freadptr.h /usr/src/debug/coreutils/9.4/lib/fd-safer.c /usr/src/debug/coreutils/9.4/lib/freadptr.c /usr/src/debug/coreutils/9.4/lib/quotearg.h /usr/src/debug/coreutils/9.4/lib/opendirat.c /usr/src/debug/coreutils/9.4/lib/opendirat.h /usr/src/debug/coreutils/9.4/lib/quotearg.c /usr/src/debug/coreutils/9.4/lib/canonicalize.h /usr/src/debug/coreutils/9.4/src/dd.c /usr/src/debug/coreutils/9.4/lib/c-strcaseeq.h /usr/src/debug/coreutils/9.4/lib/canonicalize.c /usr/src/debug/coreutils/9.4/lib/mbsrtowcs-impl.h /usr/src/debug/coreutils/9.4/src/version.h /usr/src/debug/coreutils/9.4/lib/fadvise.h /usr/src/debug/coreu tils/9.4/lib/fnmatch.h /usr/src/debug/coreutils/9.4/lib/read-file.h /usr/src/debug/coreutils/9.4/lib/exitfail.c /usr/src/debug/coreutils/9.4/lib/fseterr.h /usr/src/debug/coreutils/9.4/lib/fsusage.h /usr/src/debug/coreutils/9.4/lib/ftoastr.h /usr/src/debug/coreutils/9.4/lib/read-file.c /usr/src/debug/coreutils/9.4/lib/stripslash.c /usr/src/debug/coreutils/9.4/lib/vprintf.c /usr/src/debug/coreutils/9.4/src/version.c /usr/src/debug/coreutils/9.4/lib/fadvise.c /usr/src/debug/coreutils/9.4/lib/fnmatch.c /usr/src/debug/coreutils/9.4/lib/exitfail.h /usr/src/debug/coreutils/9.4/lib/freopen.c /usr/src/debug/coreutils/9.4/lib/fseterr.c /usr/src/debug/coreutils/9.4/lib/fsusage.c /usr/src/debug/coreutils/9.4/lib/ftoastr.c /usr/src/debug/coreutils/9.4/lib/cycle-check.h /usr/src/debug/coreutils/9.4/lib/cycle-check.c /usr/src/debug/coreutils/9.4/src/echo.c /usr/src/debug/coreutils/9.4/src/unexpand.c /usr/src/debug/coreutils/9.4/src/mknod.c /usr/src/debug/coreutils/9.4/lib/strnumcmp.h /usr/src/debu g/coreutils/9.4/lib/backup-rename.c /usr/src/debug/coreutils/9.4/lib/af_alg.h /usr/src/debug/coreutils/9.4/lib/xgetgroups.c /usr/src/debug/coreutils/9.4/lib/i-ring.h /usr/src/debug/coreutils/9.4/lib/ialloc.h /usr/src/debug/coreutils/9.4/lib/strintcmp.c /usr/src/debug/coreutils/9.4/lib/strnumcmp.c /usr/src/debug/coreutils/9.4/lib/i-ring.c /usr/src/debug/coreutils/9.4/src/iopoll.c /usr/src/debug/coreutils/9.4/src/iopoll.h /usr/src/debug/coreutils/9.4/lib/u64.h /usr/src/debug/coreutils/9.4/lib/time.h /usr/src/debug/coreutils/9.4/src/env.c /usr/src/debug/coreutils/9.4/lib/time.c /usr/src/debug/coreutils/9.4/lib/fopen-safer.c /usr/src/debug/coreutils/9.4/lib/fcntl-safer.h /usr/src/debug/coreutils/9.4/src/getlimits.c /usr/src/debug/coreutils/9.4/lib/getopt-core.h /usr/src/debug/coreutils/9.4/src/chmod.c /usr/src/debug/coreutils/9.4/src/comm.c /usr/src/debug/coreutils/9.4/lib/priv-set.h /usr/src/debug/coreutils/9.4/lib/backup-internal.h /usr/src/debug/coreutils/9.4/lib/backup-find.c /usr/s rc/debug/coreutils/9.4/lib/md5-stream.c /usr/src/debug/coreutils/9.4/lib/buffer-lcm.h /usr/src/debug/coreutils/9.4/lib/tempname.h /usr/src/debug/coreutils/9.4/lib/fts.c /usr/src/debug/coreutils/9.4/lib/set-permissions.c /usr/src/debug/coreutils/9.4/lib/buffer-lcm.c /usr/src/debug/coreutils/9.4/lib/tempname.c /usr/src/debug/coreutils/9.4/src/truncate.c /usr/src/debug/coreutils/9.4/lib/utimecmp.h /usr/src/debug/coreutils/9.4/lib/utimecmp.c /usr/src/debug/coreutils/9.4/src/tail.c /usr/src/debug/coreutils/9.4/lib/xalloc-die.c /usr/src/debug/coreutils/9.4/lib/xfts.h /usr/src/debug/coreutils/9.4/lib/mkstemp-safer.c /usr/src/debug/coreutils/9.4/lib/xfts.c /usr/src/debug/coreutils/9.4/lib/regex_internal.c /usr/src/debug/coreutils/9.4/lib/regex_internal.h /usr/src/debug/coreutils/9.4/src/rmdir.c /usr/src/debug/coreutils/9.4/lib/strnlen1.c /usr/src/debug/coreutils/9.4/lib/strnlen1.h /usr/src/debug/coreutils/9.4/src/force-link.c /usr/src/debug/coreutils/9.4/src/nohup.c /usr/src/debug/coreutils /9.4/src/uname-uname.c /usr/src/debug/coreutils/9.4/lib/boot-time-aux.h /usr/src/debug/coreutils/9.4/src/force-link.h /usr/src/debug/coreutils/9.4/lib/obstack.h /usr/src/debug/coreutils/9.4/lib/hash-triple.h /usr/src/debug/coreutils/9.4/lib/xmemcoll.c /usr/src/debug/coreutils/9.4/lib/hash-triple.c /usr/src/debug/coreutils/9.4/src/wc_avx2.c /usr/src/debug/coreutils/9.4/lib/obstack.c /usr/src/debug/coreutils/9.4/lib/getopt1.c /usr/src/debug/coreutils/9.4/lib/gettime.c /usr/src/debug/coreutils/9.4/lib/xmemcoll.h /usr/src/debug/coreutils/9.4/lib/timespec.h /usr/src/debug/coreutils/9.4/lib/hash-triple-simple.c /usr/src/debug/coreutils/9.4/lib/c-strcasecmp.c /usr/src/debug/coreutils/9.4/src/shuf.c /usr/src/debug/coreutils/9.4/lib/copy-file-range.c /usr/src/debug/coreutils/9.4/lib/mbsrtowcs-state.c /usr/src/debug/coreutils/9.4/lib/count-leading-zeros.h /usr/src/debug/coreutils/9.4/src/cat.c /usr/src/debug/coreutils/9.4/src/prog-fprintf.h /usr/src/debug/coreutils/9.4/lib/getugroups.h /usr/s rc/debug/coreutils/9.4/lib/tmpdir.h /usr/src/debug/coreutils/9.4/lib/di-set.h /usr/src/debug/coreutils/9.4/src/prog-fprintf.c /usr/src/debug/coreutils/9.4/lib/dirent.h /usr/src/debug/coreutils/9.4/lib/tmpdir.c /usr/src/debug/coreutils/9.4/src/ls-dir.c /usr/src/debug/coreutils/9.4/lib/di-set.c /usr/src/debug/coreutils/9.4/src/digest.c /usr/src/debug/coreutils/9.4/lib/human.h /usr/src/debug/coreutils/9.4/lib/human.c /usr/src/debug/coreutils/9.4/lib/str-two-way.h /usr/src/debug/coreutils/9.4/lib/dirchownmod.h /usr/src/debug/coreutils/9.4/src/operand2sig.c /usr/src/debug/coreutils/9.4/lib/dirchownmod.c /usr/src/debug/coreutils/9.4/src/operand2sig.h /usr/src/debug/coreutils/9.4/lib/setlocale_null.h /usr/src/debug/coreutils/9.4/lib/xreadlink.c /usr/src/debug/coreutils/9.4/lib/setlocale_null.c /usr/src/debug/coreutils/9.4/lib/xreadlink.h /usr/src/debug/coreutils/9.4/src/shred.c /usr/src/debug/coreutils/9.4/lib/openat-priv.h /usr/src/debug/coreutils/9.4/lib/chdir-long.c /usr/src/debug/coreu tils/9.4/src/seq.c /usr/src/debug/coreutils/9.4/lib/chdir-long.h /usr/src/debug/coreutils/9.4/lib/strftime.h /usr/src/debug/coreutils/9.4/lib/same.h /usr/src/debug/coreutils/9.4/lib/same.c /usr/src/debug/coreutils/9.4/src/set-fields.h /usr/src/debug/coreutils/9.4/lib/file-type.c /usr/src/debug/coreutils/9.4/lib/freadseek.c /usr/src/debug/coreutils/9.4/src/set-fields.c /usr/src/debug/coreutils/9.4/lib/freadseek.h /usr/src/debug/coreutils/9.4/lib/file-type.h /usr/src/debug/coreutils/9.4/lib/openat-die.c /usr/src/debug/coreutils/9.4/src/printenv.c /usr/src/debug/coreutils/9.4/src/tr.c /usr/src/debug/coreutils/9.4/lib/mkancesdirs.h /usr/src/debug/coreutils/9.4/lib/dirent-safer.h /usr/src/debug/coreutils/9.4/lib/mkancesdirs.c /usr/src/debug/coreutils/9.4/lib/posixver.h /usr/src/debug/coreutils/9.4/src/ptx.c /usr/src/debug/coreutils/9.4/lib/posixver.c /usr/src/debug/coreutils/9.4/lib/cl-strtod.c /usr/src/debug/coreutils/9.4/lib/cl-strtod.h /usr/src/debug/coreutils/9.4/lib/stdio.h /usr/src /debug/coreutils/9.4/lib/printf-args.c /usr/src/debug/coreutils/9.4/lib/printf-args.h /usr/src/debug/coreutils/9.4/lib/xasprintf.c /usr/src/debug/coreutils/9.4/lib/dev-ino.h /usr/src/debug/coreutils/9.4/lib/dirname.h /usr/src/debug/coreutils/9.4/src/tee.c /usr/src/debug/coreutils/9.4/lib/dirname.c /usr/src/debug/coreutils/9.4/lib/propername-lite.c /usr/src/debug/coreutils/9.4/lib/time_rz.c /usr/src/debug/coreutils/9.4/src/dirname.c /usr/src/debug/coreutils/9.4/src/logname.c /usr/src/debug/coreutils/9.4/src/ls-vdir.c /usr/src/debug/coreutils/9.4/src/pr.c /usr/src/debug/coreutils/9.4/src/timeout.c /usr/src/debug/coreutils/9.4/lib/linebuffer.c /usr/src/debug/coreutils/9.4/lib/linebuffer.h /usr/src/debug/coreutils/9.4/src/id.c /usr/src/debug/coreutils/9.4/src/system.h /usr/src/debug/coreutils/9.4/lib/savewd.h /usr/src/debug/coreutils/9.4/lib/sha256.h /usr/src/debug/coreutils/9.4/lib/sha512.h /usr/src/debug/coreutils/9.4/lib/stdlib.h /usr/src/debug/coreutils/9.4/lib/string.h /usr/src/deb ug/coreutils/9.4/lib/savewd.c /usr/src/debug/coreutils/9.4/lib/sha256.c /usr/src/debug/coreutils/9.4/lib/sha512.c /usr/src/debug/coreutils/9.4/lib/strstr.c /usr/src/debug/coreutils/9.4/src/chroot.c /usr/src/debug/coreutils/9.4/src/crctab.c /usr/src/debug/coreutils/9.4/src/csplit.c /usr/src/debug/coreutils/9.4/src/stdbuf.c /usr/src/debug/coreutils/9.4/lib/fprintftime.h /usr/src/debug/coreutils/9.4/src/uname.h /usr/src/debug/coreutils/9.4/lib/c-strcase.h /usr/src/debug/coreutils/9.4/lib/areadlink.c /usr/src/debug/coreutils/9.4/src/uname.c /usr/src/debug/coreutils/9.4/lib/fdutimensat.c /usr/src/debug/coreutils/9.4/lib/areadlink.h /usr/src/debug/coreutils/9.4/src/temp-stream.h /usr/src/debug/coreutils/9.4/src/who.c /usr/src/debug/coreutils/9.4/lib/asprintf.c /usr/src/debug/coreutils/9.4/src/temp-stream.c /usr/src/debug/coreutils/9.4/lib/parse-datetime.h /usr/src/debug/coreutils/9.4/src/wc.c /usr/src/debug/coreutils/9.4/lib/time-internal.h /usr/src/debug/coreutils/9.4/src/chgrp.c /usr/sr c/debug/coreutils/9.4/src/libstdbuf.c /usr/src/debug/coreutils/9.4/lib/filemode.h /usr/src/debug/coreutils/9.4/src/true.c /usr/src/debug/coreutils/9.4/lib/xgetaname-impl.h /usr/src/debug/coreutils/9.4/lib/filemode.c /usr/src/debug/coreutils/9.4/src/realpath.c /usr/src/debug/coreutils/9.4/src/stat.c /usr/src/debug/coreutils/9.4/src/mv.c /usr/src/debug/coreutils/9.4/lib/safe-write.h /usr/src/debug/coreutils/9.4/lib/printf-parse.c /usr/src/debug/coreutils/9.4/lib/modechange.h /usr/src/debug/coreutils/9.4/lib/fcntl.c /usr/src/debug/coreutils/9.4/lib/modechange.c /usr/src/debug/coreutils/9.4/lib/printf-parse.h /usr/src/debug/coreutils/9.4/lib/stdlib-safer.h /usr/src/debug/coreutils/9.4/lib/fcntl.h /usr/src/debug/coreutils/9.4/lib/safe-read.c /usr/src/debug/coreutils/9.4/lib/safe-read.h /usr/src/debug/coreutils/9.4/src/od.c /usr/src/debug/coreutils/9.4/lib/basename-lgpl.c /usr/src/debug/coreutils/9.4/src/ls.h /usr/src/debug/coreutils/9.4/lib/parse-datetime-gen.h /usr/src/debug/coreutils/9 .4/lib/sys-limits.h /usr/src/debug/coreutils/9.4/src/ls.c /usr/src/debug/coreutils/9.4/lib/basename-lgpl.h /usr/src/debug/coreutils/9.4/lib/memchr2.h /usr/src/debug/coreutils/9.4/lib/memcmp2.h /usr/src/debug/coreutils/9.4/lib/memcoll.h /usr/src/debug/coreutils/9.4/lib/mkdir-p.h /usr/src/debug/coreutils/9.4/lib/exclude.h /usr/src/debug/coreutils/9.4/lib/freadahead.c /usr/src/debug/coreutils/9.4/lib/mbuiter.h /usr/src/debug/coreutils/9.4/lib/nproc.c /usr/src/debug/coreutils/9.4/lib/utimens.h /usr/src/debug/coreutils/9.4/src/nproc.c /usr/src/debug/coreutils/9.4/lib/mbrtowc.c /usr/src/debug/coreutils/9.4/lib/memchr2.c /usr/src/debug/coreutils/9.4/lib/memcmp2.c /usr/src/debug/coreutils/9.4/lib/memcoll.c /usr/src/debug/coreutils/9.4/lib/mkdir-p.c /usr/src/debug/coreutils/9.4/lib/exclude.c /usr/src/debug/coreutils/9.4/lib/freadahead.h /usr/src/debug/coreutils/9.4/lib/nproc.h /usr/src/debug/coreutils/9.4/lib/utimens.c /usr/src/debug/coreutils/9.4/src/sort.c /usr/src/debug/coreutils/9.4/src/ unlink.c /usr/src/debug/coreutils/9.4/lib/randread.h /usr/src/debug/coreutils/9.4/lib/randread.c /usr/src/debug/coreutils/9.4/lib/verror.h /usr/src/debug/coreutils/9.4/lib/fclose.c /usr/src/debug/coreutils/9.4/lib/fflush.c /usr/src/debug/coreutils/9.4/lib/fpurge.c /usr/src/debug/coreutils/9.4/lib/fseeko.c /usr/src/debug/coreutils/9.4/lib/renameatu.c /usr/src/debug/coreutils/9.4/lib/verror.c /usr/src/debug/coreutils/9.4/src/factor.c /usr/src/debug/coreutils/9.4/src/numfmt.c /usr/src/debug/coreutils/9.4/lib/renameatu.h /usr/src/debug/coreutils/9.4/lib/md5.h /usr/src/debug/coreutils/9.4/lib/futimens.c /usr/src/debug/coreutils/9.4/lib/md5.c /usr/src/debug/coreutils/9.4/lib/bitrotate.h /usr/src/debug/coreutils/9.4/src/join.c /usr/src/debug/coreutils/9.4/src/nice.c /usr/src/debug/coreutils/9.4/lib/file-has-acl.c /usr/src/debug/coreutils/9.4/lib/memset_explicit.c /usr/src/debug/coreutils/9.4/lib/dirname-lgpl.c /usr/src/debug/coreutils/9.4/lib/sha1.c /usr/src/debug/coreutils/9.4/src/head.c /usr/src/debug/coreutils/9.4/lib/sha1.h /usr/src/debug/coreutils/9.4/lib/argmatch.c /usr/src/debug/coreutils/9.4/lib/readutmp.h /usr/src/debug/coreutils/9.4/lib/readutmp.c /usr/src/debug/coreutils/9.4/lib/filenamecat-lgpl.c /usr/src/debug/coreutils/9.4/lib/argmatch.h /usr/src/debug/coreutils/9.4/lib/uchar.h /usr/src/debug/coreutils/9.4/lib/full-write.c /usr/src/debug/coreutils/9.4/lib/unicodeio.h /usr/src/debug/coreutils/9.4/lib/full-write.h /usr/src/debug/coreutils/9.4/lib/unicodeio.c /usr/src/debug/coreutils/9.4/lib/allocator.h /usr/src/debug/coreutils/9.4/lib/propername.h /usr/src/debug/coreutils/9.4/src/cut.c /usr/src/debug/coreutils/9.4/lib/allocator.c /usr/src/debug/coreutils/9.4/lib/vasnprintf.c /usr/src/debug/coreutils/9.4/lib/vasnprintf.h /usr/src/debug/coreutils/9.4/lib/readtokens0.h /usr/src/debug/coreutils/9.4/src/dircolors.c /usr/src/debug/coreutils/9.4/lib/stat-time.h /usr/src/debug/coreutils/9.4/lib/readtokens0.c /usr/src/debug/coreutils/9.4/src/dircolors.h /usr/src/d ebug/coreutils/9.4/lib/filenamecat.c /usr/src/debug/coreutils/9.4/lib/filenamecat.h /usr/src/debug/coreutils/9.4/lib/vasprintf.c /usr/src/debug/coreutils/9.4/lib/randint.h /usr/src/debug/coreutils/9.4/src/relpath.h /usr/src/debug/coreutils/9.4/lib/qset-acl.c /usr/src/debug/coreutils/9.4/lib/userspec.c /usr/src/debug/coreutils/9.4/lib/fts-cycle.c /usr/src/debug/coreutils/9.4/lib/randint.c /usr/src/debug/coreutils/9.4/lib/regcomp.c /usr/src/debug/coreutils/9.4/lib/regexec.c /usr/src/debug/coreutils/9.4/lib/userspec.h /usr/src/debug/coreutils/9.4/src/relpath.c /usr/src/debug/coreutils/9.4/src/expand-common.c /usr/src/debug/coreutils/9.4/lib/xalignalloc.c /usr/src/debug/coreutils/9.4/src/expand-common.h /usr/src/debug/coreutils/9.4/lib/getndelim2.c /usr/src/debug/coreutils/9.4/lib/mbchar.h /usr/src/debug/coreutils/9.4/lib/mpsort.h /usr/src/debug/coreutils/9.4/lib/unistd.h /usr/src/debug/coreutils/9.4/lib/unistr.h /usr/src/debug/coreutils/9.4/src/uptime.c /usr/src/debug/coreutils/9.4/lib /mbrlen.c /usr/src/debug/coreutils/9.4/lib/getndelim2.h /usr/src/debug/coreutils/9.4/lib/mbschr.c /usr/src/debug/coreutils/9.4/lib/mbslen.c /usr/src/debug/coreutils/9.4/lib/memchr.c /usr/src/debug/coreutils/9.4/lib/mpsort.c /usr/src/debug/coreutils/9.4/src/expand.c /usr/src/debug/coreutils/9.4/src/mkfifo.c /usr/src/debug/coreutils/9.4/src/mktemp.c /usr/src/debug/coreutils/9.4/lib/xstrtol-error.c /usr/src/debug/coreutils/9.4/lib/quote.h /usr/src/debug/coreutils/9.4/lib/pipe2.c /usr/src/debug/coreutils/9.4/lib/xstrtol-error.h /usr/src/debug/coreutils/9.4/lib/xsize.h /usr/src/debug/coreutils/9.4/lib/xtime.h /usr/src/debug/coreutils/9.4/src/link.c /usr/src/debug/coreutils/9.4/lib/unitypes.h /usr/src/debug/coreutils/9.4/lib/argv-iter.c /usr/src/debug/coreutils/9.4/lib/heap.c /usr/src/debug/coreutils/9.4/lib/argv-iter.h /usr/src/debug/coreutils/9.4/lib/heap.h /usr/src/debug/coreutils/9.4/lib/qcopy-acl.c /usr/src/debug/coreutils/9.4/lib/areadlink-with-size.c /usr/src/debug/coreutils/9.4/sr c/split.c /usr/src/debug/coreutils/9.4/src/ls-ls.c /usr/src/debug/coreutils/9.4/src/chown-core.h /usr/src/debug/coreutils/9.4/lib/progname.h /usr/src/debug/coreutils/9.4/lib/yesno.h /usr/src/debug/coreutils/9.4/lib/dtotimespec.c /usr/src/debug/coreutils/9.4/lib/canon-host.h /usr/src/debug/coreutils/9.4/lib/fopen.c /usr/src/debug/coreutils/9.4/lib/progname.c /usr/src/debug/coreutils/9.4/src/chown-core.c /usr/src/debug/coreutils/9.4/lib/canon-host.c /usr/src/debug/coreutils/9.4/src/cp.c /usr/src/debug/coreutils/9.4/src/hostname.c /usr/src/debug/coreutils/9.4/lib/yesno.c /usr/src/debug/coreutils/9.4/src/pinky.c /usr/src/debug/coreutils/9.4/src/du.c /usr/src/debug/coreutils/9.4/lib/acl-errno-valid.c /usr/src/debug/coreutils/9.4/lib/binary-io.h /usr/src/debug/coreutils/9.4/lib/fd-safer-flag.c /usr/src/debug/coreutils/9.4/lib/alignalloc.h /usr/src/debug/coreutils/9.4/lib/unistd-safer.h /usr/src/debug/coreutils/9.4/lib/inttostr.h /usr/src/debug/coreutils/9.4/lib/long-options.c /usr/src/deb ug/coreutils/9.4/lib/c-file-type.c /usr/src/debug/coreutils/9.4/lib/openat-proc.c /usr/src/debug/coreutils/9.4/lib/anytostr.c /usr/src/debug/coreutils/9.4/lib/btowc.c /usr/src/debug/coreutils/9.4/lib/long-options.h /usr/src/debug/coreutils/9.4/lib/xnanosleep.h /usr/src/debug/coreutils/9.4/lib/xnanosleep.c /usr/src/debug/coreutils/9.4/src/uname-arch.c /usr/src/debug/coreutils/9.4/lib/savedir.h /usr/src/debug/coreutils/9.4/lib/c-ctype.h /usr/src/debug/coreutils/9.4/lib/closein.h /usr/src/debug/coreutils/9.4/lib/sig2str.h /usr/src/debug/coreutils/9.4/src/cp-hash.h /usr/src/debug/coreutils/9.4/src/selinux.h /usr/src/debug/coreutils/9.4/lib/root-dev-ino.h /usr/src/debug/coreutils/9.4/lib/savedir.c /usr/src/debug/coreutils/9.4/lib/set-acl.c /usr/src/debug/coreutils/9.4/lib/settime.c /usr/src/debug/coreutils/9.4/lib/root-dev-ino.c /usr/src/debug/coreutils/9.4/lib/closein.c /usr/src/debug/coreutils/9.4/lib/sig2str.c /usr/src/debug/coreutils/9.4/src/cp-hash.c /usr/src/debug/coreutils/9.4/lib /hash.c /usr/src/debug/coreutils/9.4/lib/hash.h", added "/usr/src/debug/coreutils/9.5/lib/fts_.h /usr/src/debug/coreutils/9.5/lib/xalloc.h /usr/src/debug/coreutils/9.5/lib/smack.h /usr/src/debug/coreutils/9.5/src/printf.c /usr/src/debug/coreutils/9.5/src/hostid.c /usr/src/debug/coreutils/9.5/lib/hash-pjw.h /usr/src/debug/coreutils/9.5/src/ln.c /usr/src/debug/coreutils/9.5/lib/sha256-stream.c /usr/src/debug/coreutils/9.5/lib/sha512-stream.c /usr/src/debug/coreutils/9.5/lib/hash-pjw.c /usr/src/debug/coreutils/9.5/lib/rand-isaac.h /usr/src/debug/coreutils/9.5/lib/stdio-safer.h /usr/src/debug/coreutils/9.5/lib/rand-isaac.c /usr/src/debug/coreutils/9.5/lib/acl-internal.c /usr/src/debug/coreutils/9.5/src/stty.c /usr/src/debug/coreutils/9.5/lib/version-etc-fsf.c /usr/src/debug/coreutils/9.5/lib/acl-internal.h /usr/src/debug/coreutils/9.5/lib/closeout.h /usr/src/debug/coreutils/9.5/src/date.c /usr/src/debug/coreutils/9.5/lib/closeout.c /usr/src/debug/coreutils/9.5/lib/sha1-stream.c /usr/src /debug/coreutils/9.5/lib/vfprintf.c /usr/src/debug/coreutils/9.5/lib/nanosleep.c /usr/src/debug/coreutils/9.5/lib/version-etc.h /usr/src/debug/coreutils/9.5/lib/version-etc.c /usr/src/debug/coreutils/9.5/lib/strnumcmp-in.h /usr/src/debug/coreutils/9.5/lib/targetdir.c /usr/src/debug/coreutils/9.5/lib/mbrtoc32.c /usr/src/debug/coreutils/9.5/lib/targetdir.h /usr/src/debug/coreutils/9.5/lib/backupfile.h /usr/src/debug/coreutils/9.5/lib/wchar.h /usr/src/debug/coreutils/9.5/lib/backupfile.c /usr/src/debug/coreutils/9.5/lib/readtokens.h /usr/src/debug/coreutils/9.5/lib/xbinary-io.h /usr/src/debug/coreutils/9.5/lib/readtokens.c /usr/src/debug/coreutils/9.5/lib/filevercmp.h /usr/src/debug/coreutils/9.5/lib/freopen-safer.c /usr/src/debug/coreutils/9.5/src/chown-chown.c /usr/src/debug/coreutils/9.5/lib/filevercmp.c /usr/src/debug/coreutils/9.5/src/pwd.c /usr/src/debug/coreutils/9.5/src/nl.c /usr/src/debug/coreutils/9.5/lib/xvasprintf.c /usr/src/debug/coreutils/9.5/lib/full-read.h /usr/src/debu g/coreutils/9.5/lib/c-strncasecmp.c /usr/src/debug/coreutils/9.5/lib/xvasprintf.h /usr/src/debug/coreutils/9.5/src/statx.h /usr/src/debug/coreutils/9.5/src/copy.h /usr/src/debug/coreutils/9.5/src/copy.c /usr/src/debug/coreutils/9.5/src/ioblksize.h /usr/src/debug/coreutils/9.5/lib/idx.h /usr/src/debug/coreutils/9.5/lib/mbsrtowcs.c /usr/src/debug/coreutils/9.5/lib/fpucw.h /usr/src/debug/coreutils/9.5/lib/selinux-at.h /usr/src/debug/coreutils/9.5/lib/physmem.h /usr/src/debug/coreutils/9.5/lib/posixtm.h /usr/src/debug/coreutils/9.5/lib/xgetcwd.h /usr/src/debug/coreutils/9.5/lib/xprintf.h /usr/src/debug/coreutils/9.5/lib/copy-acl.c /usr/src/debug/coreutils/9.5/lib/xstrtod.h /usr/src/debug/coreutils/9.5/lib/xstrtol.h /usr/src/debug/coreutils/9.5/lib/mountlist.h /usr/src/debug/coreutils/9.5/src/sleep.c /usr/src/debug/coreutils/9.5/src/pathchk.c /usr/src/debug/coreutils/9.5/lib/posixtm.c /usr/src/debug/coreutils/9.5/lib/mountlist.c /usr/src/debug/coreutils/9.5/lib/physmem.c /usr/src/debug/c oreutils/9.5/lib/xgetcwd.c /usr/src/debug/coreutils/9.5/lib/xmalloc.c /usr/src/debug/coreutils/9.5/lib/xprintf.c /usr/src/debug/coreutils/9.5/lib/xstrtod.c /usr/src/debug/coreutils/9.5/lib/xstrtol.c /usr/src/debug/coreutils/9.5/lib/save-cwd.h /usr/src/debug/coreutils/9.5/lib/c-strtod.h /usr/src/debug/coreutils/9.5/lib/save-cwd.c /usr/src/debug/coreutils/9.5/lib/c-strtod.c /usr/src/debug/coreutils/9.5/src/touch.c /usr/src/debug/coreutils/9.5/src/tsort.c /usr/src/debug/coreutils/9.5/lib/openat.h /usr/src/debug/coreutils/9.5/lib/getcwd.c /usr/src/debug/coreutils/9.5/lib/getopt.c /usr/src/debug/coreutils/9.5/src/groups.c /usr/src/debug/coreutils/9.5/src/whoami.c /usr/src/debug/coreutils/9.5/src/cksum_pclmul.c /usr/src/debug/coreutils/9.5/src/mkdir.c /usr/src/debug/coreutils/9.5/src/users.c /usr/src/debug/coreutils/9.5/src/cksum.h /usr/src/debug/coreutils/9.5/src/make-prime-list.c /usr/src/debug/coreutils/9.5/lib/file-set.h /usr/src/debug/coreutils/9.5/src/cksum.c /usr/src/debug/coreutil s/9.5/src/yes.c /usr/src/debug/coreutils/9.5/lib/fchmodat.c /usr/src/debug/coreutils/9.5/lib/file-set.c /usr/src/debug/coreutils/9.5/src/readlink.c /usr/src/debug/coreutils/9.5/src/sync.c /usr/src/debug/coreutils/9.5/lib/sm3-stream.c /usr/src/debug/coreutils/9.5/src/paste.c /usr/src/debug/coreutils/9.5/lib/randperm.c /usr/src/debug/coreutils/9.5/lib/areadlinkat-with-size.c /usr/src/debug/coreutils/9.5/lib/careadlinkat.h /usr/src/debug/coreutils/9.5/lib/gethrxtime.c /usr/src/debug/coreutils/9.5/lib/randperm.h /usr/src/debug/coreutils/9.5/lib/gethrxtime.h /usr/src/debug/coreutils/9.5/lib/careadlinkat.c /usr/src/debug/coreutils/9.5/src/expr.c /usr/src/debug/coreutils/9.5/lib/basename.c /usr/src/debug/coreutils/9.5/src/basename.c /usr/src/debug/coreutils/9.5/lib/fd-reopen.c /usr/src/debug/coreutils/9.5/lib/mcel.h /usr/src/debug/coreutils/9.5/lib/fd-reopen.h /usr/src/debug/coreutils/9.5/lib/getopt-ext.h /usr/src/debug/coreutils/9.5/src/test.c /usr/src/debug/coreutils/9.5/lib/memcasecmp.h /usr/src/debug/coreutils/9.5/lib/xdectoint.h /usr/src/debug/coreutils/9.5/lib/opendir-safer.c /usr/src/debug/coreutils/9.5/lib/openat-safer.c /usr/src/debug/coreutils/9.5/lib/mbscasecmp.c /usr/src/debug/coreutils/9.5/lib/memcasecmp.c /usr/src/debug/coreutils/9.5/lib/xdectoint.c /usr/src/debug/coreutils/9.5/lib/write-any-file.c /usr/src/debug/coreutils/9.5/lib/write-any-file.h /usr/src/debug/coreutils/9.5/lib/acl.h /usr/src/debug/coreutils/9.5/lib/skipchars.h /usr/src/debug/coreutils/9.5/lib/xgethostname.h /usr/src/debug/coreutils/9.5/lib/idcache.h /usr/src/debug/coreutils/9.5/lib/ino-map.h /usr/src/debug/coreutils/9.5/lib/isapipe.h /usr/src/debug/coreutils/9.5/lib/isapipe.c /usr/src/debug/coreutils/9.5/lib/at-func.c /usr/src/debug/coreutils/9.5/lib/idcache.c /usr/src/debug/coreutils/9.5/lib/ino-map.c /usr/src/debug/coreutils/9.5/src/install.c /usr/src/debug/coreutils/9.5/src/find-mount-point.c /usr/src/debug/coreutils/9.5/src/chown-chgrp.c /usr/src/debug/coreutils/9.5/lib/fnmatch_l oop.c /usr/src/debug/coreutils/9.5/lib/open-safer.c /usr/src/debug/coreutils/9.5/src/chown.h /usr/src/debug/coreutils/9.5/src/chcon.c /usr/src/debug/coreutils/9.5/src/kill.c /usr/src/debug/coreutils/9.5/src/find-mount-point.h /usr/src/debug/coreutils/9.5/src/chown.c /usr/src/debug/coreutils/9.5/lib/mgetgroups.h /usr/src/debug/coreutils/9.5/lib/base32.h /usr/src/debug/coreutils/9.5/lib/base64.h /usr/src/debug/coreutils/9.5/lib/mgetgroups.c /usr/src/debug/coreutils/9.5/src/remove.h /usr/src/debug/coreutils/9.5/lib/base32.c /usr/src/debug/coreutils/9.5/lib/base64.c /usr/src/debug/coreutils/9.5/src/basenc.c /usr/src/debug/coreutils/9.5/src/remove.c /usr/src/debug/coreutils/9.5/src/runcon.c /usr/src/debug/coreutils/9.5/src/tty.c /usr/src/debug/coreutils/9.5/src/rm.c /usr/src/debug/coreutils/9.5/src/df.c /usr/src/debug/coreutils/9.5/lib/dup-safer.c /usr/src/debug/coreutils/9.5/lib/getopt_int.h /usr/src/debug/coreutils/9.5/src/fmt.c /usr/src/debug/coreutils/9.5/lib/regex.h /usr/src/debug/c oreutils/9.5/src/fs-is-local.h /usr/src/debug/coreutils/9.5/lib/close-stream.c /usr/src/debug/coreutils/9.5/lib/dup-safer-flag.c /usr/src/debug/coreutils/9.5/src/uniq.c /usr/src/debug/coreutils/9.5/lib/close-stream.h /usr/src/debug/coreutils/9.5/lib/setlocale_null-unlocked.c /usr/src/debug/coreutils/9.5/lib/localcharset.c /usr/src/debug/coreutils/9.5/lib/localcharset.h /usr/src/debug/coreutils/9.5/lib/gettime-res.c /usr/src/debug/coreutils/9.5/lib/mbswidth.c /usr/src/debug/coreutils/9.5/src/group-list.h /usr/src/debug/coreutils/9.5/src/tac.c /usr/src/debug/coreutils/9.5/lib/mbswidth.h /usr/src/debug/coreutils/9.5/src/fold.c /usr/src/debug/coreutils/9.5/src/group-list.c /usr/src/debug/coreutils/9.5/src/sum.h /usr/src/debug/coreutils/9.5/src/sum.c /usr/src/debug/coreutils/9.5/lib/hard-locale.h /usr/src/debug/coreutils/9.5/lib/sm3.c /usr/src/debug/coreutils/9.5/lib/hard-locale.c /usr/src/debug/coreutils/9.5/lib/sm3.h /usr/src/debug/coreutils/9.5/lib/freadptr.h /usr/src/debug/coreutils/ 9.5/lib/fd-safer.c /usr/src/debug/coreutils/9.5/lib/freadptr.c /usr/src/debug/coreutils/9.5/lib/quotearg.h /usr/src/debug/coreutils/9.5/lib/opendirat.c /usr/src/debug/coreutils/9.5/lib/opendirat.h /usr/src/debug/coreutils/9.5/lib/quotearg.c /usr/src/debug/coreutils/9.5/lib/canonicalize.h /usr/src/debug/coreutils/9.5/src/dd.c /usr/src/debug/coreutils/9.5/lib/c-strcaseeq.h /usr/src/debug/coreutils/9.5/lib/canonicalize.c /usr/src/debug/coreutils/9.5/lib/mbsrtowcs-impl.h /usr/src/debug/coreutils/9.5/src/version.h /usr/src/debug/coreutils/9.5/lib/fadvise.h /usr/src/debug/coreutils/9.5/lib/fnmatch.h /usr/src/debug/coreutils/9.5/lib/read-file.h /usr/src/debug/coreutils/9.5/lib/exitfail.c /usr/src/debug/coreutils/9.5/lib/fseterr.h /usr/src/debug/coreutils/9.5/lib/fsusage.h /usr/src/debug/coreutils/9.5/lib/ftoastr.h /usr/src/debug/coreutils/9.5/lib/read-file.c /usr/src/debug/coreutils/9.5/lib/stripslash.c /usr/src/debug/coreutils/9.5/lib/vprintf.c /usr/src/debug/coreutils/9.5/src/version.c / usr/src/debug/coreutils/9.5/lib/fadvise.c /usr/src/debug/coreutils/9.5/lib/fnmatch.c /usr/src/debug/coreutils/9.5/lib/exitfail.h /usr/src/debug/coreutils/9.5/lib/freopen.c /usr/src/debug/coreutils/9.5/lib/fseterr.c /usr/src/debug/coreutils/9.5/lib/fsusage.c /usr/src/debug/coreutils/9.5/lib/ftoastr.c /usr/src/debug/coreutils/9.5/lib/cycle-check.h /usr/src/debug/coreutils/9.5/lib/cycle-check.c /usr/src/debug/coreutils/9.5/src/echo.c /usr/src/debug/coreutils/9.5/src/unexpand.c /usr/src/debug/coreutils/9.5/src/mknod.c /usr/src/debug/coreutils/9.5/lib/strnumcmp.h /usr/src/debug/coreutils/9.5/lib/backup-rename.c /usr/src/debug/coreutils/9.5/lib/af_alg.h /usr/src/debug/coreutils/9.5/lib/xgetgroups.c /usr/src/debug/coreutils/9.5/lib/i-ring.h /usr/src/debug/coreutils/9.5/lib/ialloc.h /usr/src/debug/coreutils/9.5/lib/strintcmp.c /usr/src/debug/coreutils/9.5/lib/strnumcmp.c /usr/src/debug/coreutils/9.5/lib/i-ring.c /usr/src/debug/coreutils/9.5/src/iopoll.c /usr/src/debug/coreutils/9.5/src/iopo ll.h /usr/src/debug/coreutils/9.5/lib/u64.h /usr/src/debug/coreutils/9.5/lib/time.h /usr/src/debug/coreutils/9.5/src/env.c /usr/src/debug/coreutils/9.5/lib/time.c /usr/src/debug/coreutils/9.5/lib/fopen-safer.c /usr/src/debug/coreutils/9.5/lib/fcntl-safer.h /usr/src/debug/coreutils/9.5/src/getlimits.c /usr/src/debug/coreutils/9.5/lib/getopt-core.h /usr/src/debug/coreutils/9.5/src/chmod.c /usr/src/debug/coreutils/9.5/src/comm.c /usr/src/debug/coreutils/9.5/lib/priv-set.h /usr/src/debug/coreutils/9.5/lib/backup-internal.h /usr/src/debug/coreutils/9.5/lib/backup-find.c /usr/src/debug/coreutils/9.5/lib/md5-stream.c /usr/src/debug/coreutils/9.5/lib/buffer-lcm.h /usr/src/debug/coreutils/9.5/lib/tempname.h /usr/src/debug/coreutils/9.5/lib/fts.c /usr/src/debug/coreutils/9.5/lib/set-permissions.c /usr/src/debug/coreutils/9.5/lib/buffer-lcm.c /usr/src/debug/coreutils/9.5/lib/tempname.c /usr/src/debug/coreutils/9.5/src/truncate.c /usr/src/debug/coreutils/9.5/lib/utimecmp.h /usr/src/debug/coreut ils/9.5/lib/utimecmp.c /usr/src/debug/coreutils/9.5/src/tail.c /usr/src/debug/coreutils/9.5/lib/xalloc-die.c /usr/src/debug/coreutils/9.5/lib/xfts.h /usr/src/debug/coreutils/9.5/lib/mkstemp-safer.c /usr/src/debug/coreutils/9.5/lib/xfts.c /usr/src/debug/coreutils/9.5/lib/regex_internal.c /usr/src/debug/coreutils/9.5/lib/regex_internal.h /usr/src/debug/coreutils/9.5/src/rmdir.c /usr/src/debug/coreutils/9.5/lib/strnlen1.c /usr/src/debug/coreutils/9.5/lib/strnlen1.h /usr/src/debug/coreutils/9.5/src/force-link.c /usr/src/debug/coreutils/9.5/src/nohup.c /usr/src/debug/coreutils/9.5/src/uname-uname.c /usr/src/debug/coreutils/9.5/lib/boot-time-aux.h /usr/src/debug/coreutils/9.5/src/force-link.h /usr/src/debug/coreutils/9.5/lib/obstack.h /usr/src/debug/coreutils/9.5/lib/hash-triple.h /usr/src/debug/coreutils/9.5/lib/xmemcoll.c /usr/src/debug/coreutils/9.5/lib/hash-triple.c /usr/src/debug/coreutils/9.5/src/wc_avx2.c /usr/src/debug/coreutils/9.5/lib/timespec.h /usr/src/debug/coreutils/9.5/lib/ obstack.c /usr/src/debug/coreutils/9.5/lib/getopt1.c /usr/src/debug/coreutils/9.5/lib/xmemcoll.h /usr/src/debug/coreutils/9.5/lib/gettime.c /usr/src/debug/coreutils/9.5/lib/hash-triple-simple.c /usr/src/debug/coreutils/9.5/lib/c-strcasecmp.c /usr/src/debug/coreutils/9.5/src/shuf.c /usr/src/debug/coreutils/9.5/lib/copy-file-range.c /usr/src/debug/coreutils/9.5/lib/mbsrtowcs-state.c /usr/src/debug/coreutils/9.5/lib/count-leading-zeros.h /usr/src/debug/coreutils/9.5/src/cat.c /usr/src/debug/coreutils/9.5/src/prog-fprintf.h /usr/src/debug/coreutils/9.5/lib/getugroups.h /usr/src/debug/coreutils/9.5/lib/tmpdir.h /usr/src/debug/coreutils/9.5/lib/di-set.h /usr/src/debug/coreutils/9.5/src/prog-fprintf.c /usr/src/debug/coreutils/9.5/lib/dirent.h /usr/src/debug/coreutils/9.5/lib/tmpdir.c /usr/src/debug/coreutils/9.5/src/ls-dir.c /usr/src/debug/coreutils/9.5/lib/di-set.c /usr/src/debug/coreutils/9.5/src/digest.c /usr/src/debug/coreutils/9.5/lib/human.h /usr/src/debug/coreutils/9.5/lib/human.c / usr/src/debug/coreutils/9.5/lib/str-two-way.h /usr/src/debug/coreutils/9.5/lib/dirchownmod.h /usr/src/debug/coreutils/9.5/src/operand2sig.c /usr/src/debug/coreutils/9.5/lib/dirchownmod.c /usr/src/debug/coreutils/9.5/src/operand2sig.h /usr/src/debug/coreutils/9.5/lib/setlocale_null.h /usr/src/debug/coreutils/9.5/lib/xreadlink.c /usr/src/debug/coreutils/9.5/lib/setlocale_null.c /usr/src/debug/coreutils/9.5/lib/xreadlink.h /usr/src/debug/coreutils/9.5/src/shred.c /usr/src/debug/coreutils/9.5/lib/openat-priv.h /usr/src/debug/coreutils/9.5/lib/chdir-long.c /usr/src/debug/coreutils/9.5/src/seq.c /usr/src/debug/coreutils/9.5/lib/chdir-long.h /usr/src/debug/coreutils/9.5/lib/strftime.h /usr/src/debug/coreutils/9.5/lib/same.h /usr/src/debug/coreutils/9.5/lib/same.c /usr/src/debug/coreutils/9.5/lib/strftime.c /usr/src/debug/coreutils/9.5/src/set-fields.h /usr/src/debug/coreutils/9.5/lib/file-type.c /usr/src/debug/coreutils/9.5/lib/freadseek.c /usr/src/debug/coreutils/9.5/src/set-fields.c /usr /src/debug/coreutils/9.5/lib/freadseek.h /usr/src/debug/coreutils/9.5/lib/file-type.h /usr/src/debug/coreutils/9.5/lib/openat-die.c /usr/src/debug/coreutils/9.5/src/printenv.c /usr/src/debug/coreutils/9.5/src/tr.c /usr/src/debug/coreutils/9.5/lib/mkancesdirs.h /usr/src/debug/coreutils/9.5/lib/dirent-safer.h /usr/src/debug/coreutils/9.5/lib/mkancesdirs.c /usr/src/debug/coreutils/9.5/lib/posixver.h /usr/src/debug/coreutils/9.5/src/ptx.c /usr/src/debug/coreutils/9.5/lib/posixver.c /usr/src/debug/coreutils/9.5/lib/cl-strtod.c /usr/src/debug/coreutils/9.5/lib/cl-strtod.h /usr/src/debug/coreutils/9.5/lib/stdio.h /usr/src/debug/coreutils/9.5/lib/printf-args.c /usr/src/debug/coreutils/9.5/lib/printf-args.h /usr/src/debug/coreutils/9.5/lib/xasprintf.c /usr/src/debug/coreutils/9.5/lib/dev-ino.h /usr/src/debug/coreutils/9.5/lib/dirname.h /usr/src/debug/coreutils/9.5/src/tee.c /usr/src/debug/coreutils/9.5/lib/dirname.c /usr/src/debug/coreutils/9.5/lib/propername-lite.c /usr/src/debug/coreutils/ 9.5/lib/time_rz.c /usr/src/debug/coreutils/9.5/src/dirname.c /usr/src/debug/coreutils/9.5/src/logname.c /usr/src/debug/coreutils/9.5/src/ls-vdir.c /usr/src/debug/coreutils/9.5/src/pr.c /usr/src/debug/coreutils/9.5/src/timeout.c /usr/src/debug/coreutils/9.5/lib/linebuffer.c /usr/src/debug/coreutils/9.5/lib/linebuffer.h /usr/src/debug/coreutils/9.5/src/id.c /usr/src/debug/coreutils/9.5/src/system.h /usr/src/debug/coreutils/9.5/lib/savewd.h /usr/src/debug/coreutils/9.5/lib/sha256.h /usr/src/debug/coreutils/9.5/lib/sha512.h /usr/src/debug/coreutils/9.5/lib/stdlib.h /usr/src/debug/coreutils/9.5/lib/string.h /usr/src/debug/coreutils/9.5/lib/sha256.c /usr/src/debug/coreutils/9.5/lib/sha512.c /usr/src/debug/coreutils/9.5/lib/savewd.c /usr/src/debug/coreutils/9.5/lib/strstr.c /usr/src/debug/coreutils/9.5/src/chroot.c /usr/src/debug/coreutils/9.5/src/crctab.c /usr/src/debug/coreutils/9.5/src/csplit.c /usr/src/debug/coreutils/9.5/src/stdbuf.c /usr/src/debug/coreutils/9.5/lib/fprintftime.h /usr /src/debug/coreutils/9.5/src/uname.h /usr/src/debug/coreutils/9.5/lib/c-strcase.h /usr/src/debug/coreutils/9.5/lib/areadlink.c /usr/src/debug/coreutils/9.5/src/uname.c /usr/src/debug/coreutils/9.5/lib/fdutimensat.c /usr/src/debug/coreutils/9.5/lib/areadlink.h /usr/src/debug/coreutils/9.5/src/temp-stream.h /usr/src/debug/coreutils/9.5/src/who.c /usr/src/debug/coreutils/9.5/lib/asprintf.c /usr/src/debug/coreutils/9.5/src/temp-stream.c /usr/src/debug/coreutils/9.5/src/wc.h /usr/src/debug/coreutils/9.5/lib/parse-datetime.h /usr/src/debug/coreutils/9.5/src/wc.c /usr/src/debug/coreutils/9.5/lib/time-internal.h /usr/src/debug/coreutils/9.5/src/libstdbuf.c /usr/src/debug/coreutils/9.5/lib/filemode.h /usr/src/debug/coreutils/9.5/src/true.c /usr/src/debug/coreutils/9.5/lib/xgetaname-impl.h /usr/src/debug/coreutils/9.5/lib/filemode.c /usr/src/debug/coreutils/9.5/src/realpath.c /usr/src/debug/coreutils/9.5/src/stat.c /usr/src/debug/coreutils/9.5/src/mv.c /usr/src/debug/coreutils/9.5/lib/safe-wr ite.h /usr/src/debug/coreutils/9.5/lib/printf-parse.c /usr/src/debug/coreutils/9.5/lib/modechange.h /usr/src/debug/coreutils/9.5/lib/fcntl.c /usr/src/debug/coreutils/9.5/lib/modechange.c /usr/src/debug/coreutils/9.5/lib/printf-parse.h /usr/src/debug/coreutils/9.5/lib/stdlib-safer.h /usr/src/debug/coreutils/9.5/lib/fcntl.h /usr/src/debug/coreutils/9.5/lib/safe-read.c /usr/src/debug/coreutils/9.5/lib/safe-read.h /usr/src/debug/coreutils/9.5/src/od.c /usr/src/debug/coreutils/9.5/lib/basename-lgpl.c /usr/src/debug/coreutils/9.5/src/ls.h /usr/src/debug/coreutils/9.5/lib/sys-limits.h /usr/src/debug/coreutils/9.5/lib/basename-lgpl.h /usr/src/debug/coreutils/9.5/lib/memcmp2.h /usr/src/debug/coreutils/9.5/lib/memcoll.h /usr/src/debug/coreutils/9.5/lib/mkdir-p.h /usr/src/debug/coreutils/9.5/lib/exclude.h /usr/src/debug/coreutils/9.5/lib/freadahead.c /usr/src/debug/coreutils/9.5/lib/memchr2.h /usr/src/debug/coreutils/9.5/lib/nproc.c /usr/src/debug/coreutils/9.5/lib/utimens.h /usr/src/debug/cor eutils/9.5/src/ls.c /usr/src/debug/coreutils/9.5/src/nproc.c /usr/src/debug/coreutils/9.5/lib/mbrtowc.c /usr/src/debug/coreutils/9.5/lib/memchr2.c /usr/src/debug/coreutils/9.5/lib/memcmp2.c /usr/src/debug/coreutils/9.5/lib/memcoll.c /usr/src/debug/coreutils/9.5/lib/mkdir-p.c /usr/src/debug/coreutils/9.5/lib/exclude.c /usr/src/debug/coreutils/9.5/lib/freadahead.h /usr/src/debug/coreutils/9.5/lib/nproc.h /usr/src/debug/coreutils/9.5/lib/utimens.c /usr/src/debug/coreutils/9.5/src/sort.c /usr/src/debug/coreutils/9.5/src/unlink.c /usr/src/debug/coreutils/9.5/lib/randread.h /usr/src/debug/coreutils/9.5/lib/randread.c /usr/src/debug/coreutils/9.5/lib/verror.h /usr/src/debug/coreutils/9.5/lib/fclose.c /usr/src/debug/coreutils/9.5/lib/fflush.c /usr/src/debug/coreutils/9.5/lib/fpurge.c /usr/src/debug/coreutils/9.5/lib/fseeko.c /usr/src/debug/coreutils/9.5/lib/renameatu.c /usr/src/debug/coreutils/9.5/lib/verror.c /usr/src/debug/coreutils/9.5/src/factor.c /usr/src/debug/coreutils/9.5/src/numfmt .c /usr/src/debug/coreutils/9.5/lib/renameatu.h /usr/src/debug/coreutils/9.5/lib/md5.h /usr/src/debug/coreutils/9.5/lib/futimens.c /usr/src/debug/coreutils/9.5/lib/md5.c /usr/src/debug/coreutils/9.5/lib/bitrotate.h /usr/src/debug/coreutils/9.5/src/join.c /usr/src/debug/coreutils/9.5/src/nice.c /usr/src/debug/coreutils/9.5/lib/file-has-acl.c /usr/src/debug/coreutils/9.5/lib/memset_explicit.c /usr/src/debug/coreutils/9.5/lib/same-inode.h /usr/src/debug/coreutils/9.5/lib/dirname-lgpl.c /usr/src/debug/coreutils/9.5/lib/sha1.c /usr/src/debug/coreutils/9.5/src/head.c /usr/src/debug/coreutils/9.5/lib/sha1.h /usr/src/debug/coreutils/9.5/lib/argmatch.c /usr/src/debug/coreutils/9.5/lib/readutmp.h /usr/src/debug/coreutils/9.5/lib/readutmp.c /usr/src/debug/coreutils/9.5/lib/filenamecat-lgpl.c /usr/src/debug/coreutils/9.5/lib/argmatch.h /usr/src/debug/coreutils/9.5/lib/uchar.h /usr/src/debug/coreutils/9.5/lib/full-write.c /usr/src/debug/coreutils/9.5/lib/unicodeio.h /usr/src/debug/coreutils/9.5/ lib/full-write.h /usr/src/debug/coreutils/9.5/lib/unicodeio.c /usr/src/debug/coreutils/9.5/lib/allocator.h /usr/src/debug/coreutils/9.5/lib/propername.h /usr/src/debug/coreutils/9.5/src/cut.c /usr/src/debug/coreutils/9.5/lib/allocator.c /usr/src/debug/coreutils/9.5/lib/vasnprintf.c /usr/src/debug/coreutils/9.5/lib/vasnprintf.h /usr/src/debug/coreutils/9.5/lib/readtokens0.h /usr/src/debug/coreutils/9.5/src/dircolors.c /usr/src/debug/coreutils/9.5/lib/stat-time.h /usr/src/debug/coreutils/9.5/lib/readtokens0.c /usr/src/debug/coreutils/9.5/src/dircolors.h /usr/src/debug/coreutils/9.5/lib/filenamecat.c /usr/src/debug/coreutils/9.5/lib/filenamecat.h /usr/src/debug/coreutils/9.5/lib/vasprintf.c /usr/src/debug/coreutils/9.5/lib/randint.h /usr/src/debug/coreutils/9.5/src/relpath.h /usr/src/debug/coreutils/9.5/lib/qset-acl.c /usr/src/debug/coreutils/9.5/lib/userspec.c /usr/src/debug/coreutils/9.5/lib/fts-cycle.c /usr/src/debug/coreutils/9.5/lib/randint.c /usr/src/debug/coreutils/9.5/lib/regco mp.c /usr/src/debug/coreutils/9.5/lib/regexec.c /usr/src/debug/coreutils/9.5/lib/userspec.h /usr/src/debug/coreutils/9.5/src/relpath.c /usr/src/debug/coreutils/9.5/src/expand-common.c /usr/src/debug/coreutils/9.5/lib/xalignalloc.c /usr/src/debug/coreutils/9.5/src/expand-common.h /usr/src/debug/coreutils/9.5/lib/getndelim2.c /usr/src/debug/coreutils/9.5/lib/mpsort.h /usr/src/debug/coreutils/9.5/lib/unistd.h /usr/src/debug/coreutils/9.5/lib/unistr.h /usr/src/debug/coreutils/9.5/src/uptime.c /usr/src/debug/coreutils/9.5/lib/mbrlen.c /usr/src/debug/coreutils/9.5/lib/getndelim2.h /usr/src/debug/coreutils/9.5/lib/mbschr.c /usr/src/debug/coreutils/9.5/lib/mbslen.c /usr/src/debug/coreutils/9.5/lib/memchr.c /usr/src/debug/coreutils/9.5/lib/mpsort.c /usr/src/debug/coreutils/9.5/src/expand.c /usr/src/debug/coreutils/9.5/src/mkfifo.c /usr/src/debug/coreutils/9.5/src/mktemp.c /usr/src/debug/coreutils/9.5/lib/xstrtol-error.c /usr/src/debug/coreutils/9.5/lib/quote.h /usr/src/debug/coreutils/9.5/li b/pipe2.c /usr/src/debug/coreutils/9.5/lib/xstrtol-error.h /usr/src/debug/coreutils/9.5/lib/xsize.h /usr/src/debug/coreutils/9.5/lib/xtime.h /usr/src/debug/coreutils/9.5/src/link.c /usr/src/debug/coreutils/9.5/lib/unitypes.h /usr/src/debug/coreutils/9.5/lib/argv-iter.c /usr/src/debug/coreutils/9.5/lib/heap.c /usr/src/debug/coreutils/9.5/lib/argv-iter.h /usr/src/debug/coreutils/9.5/lib/heap.h /usr/src/debug/coreutils/9.5/lib/qcopy-acl.c /usr/src/debug/coreutils/9.5/lib/areadlink-with-size.c /usr/src/debug/coreutils/9.5/src/split.c /usr/src/debug/coreutils/9.5/src/ls-ls.c /usr/src/debug/coreutils/9.5/src/chown-core.h /usr/src/debug/coreutils/9.5/lib/progname.h /usr/src/debug/coreutils/9.5/lib/yesno.h /usr/src/debug/coreutils/9.5/lib/dtotimespec.c /usr/src/debug/coreutils/9.5/lib/canon-host.h /usr/src/debug/coreutils/9.5/lib/fopen.c /usr/src/debug/coreutils/9.5/lib/progname.c /usr/src/debug/coreutils/9.5/src/chown-core.c /usr/src/debug/coreutils/9.5/lib/canon-host.c /usr/src/debug/core utils/9.5/src/cp.c /usr/src/debug/coreutils/9.5/src/hostname.c /usr/src/debug/coreutils/9.5/lib/yesno.c /usr/src/debug/coreutils/9.5/src/pinky.c /usr/src/debug/coreutils/9.5/src/du.c /usr/src/debug/coreutils/9.5/lib/acl-errno-valid.c /usr/src/debug/coreutils/9.5/lib/binary-io.h /usr/src/debug/coreutils/9.5/lib/fd-safer-flag.c /usr/src/debug/coreutils/9.5/lib/alignalloc.h /usr/src/debug/coreutils/9.5/lib/unistd-safer.h /usr/src/debug/coreutils/9.5/lib/inttostr.h /usr/src/debug/coreutils/9.5/lib/long-options.c /usr/src/debug/coreutils/9.5/lib/c-file-type.c /usr/src/debug/coreutils/9.5/lib/openat-proc.c /usr/src/debug/coreutils/9.5/lib/anytostr.c /usr/src/debug/coreutils/9.5/lib/btowc.c /usr/src/debug/coreutils/9.5/lib/long-options.h /usr/src/debug/coreutils/9.5/lib/xnanosleep.h /usr/src/debug/coreutils/9.5/lib/xnanosleep.c /usr/src/debug/coreutils/9.5/src/uname-arch.c /usr/src/debug/coreutils/9.5/lib/savedir.h /usr/src/debug/coreutils/9.5/lib/c-ctype.h /usr/src/debug/coreutils/9.5/lib /closein.h /usr/src/debug/coreutils/9.5/lib/sig2str.h /usr/src/debug/coreutils/9.5/src/cp-hash.h /usr/src/debug/coreutils/9.5/src/selinux.h /usr/src/debug/coreutils/9.5/lib/root-dev-ino.h /usr/src/debug/coreutils/9.5/lib/savedir.c /usr/src/debug/coreutils/9.5/lib/set-acl.c /usr/src/debug/coreutils/9.5/lib/settime.c /usr/src/debug/coreutils/9.5/lib/root-dev-ino.c /usr/src/debug/coreutils/9.5/lib/closein.c /usr/src/debug/coreutils/9.5/lib/sig2str.c /usr/src/debug/coreutils/9.5/src/cp-hash.c /usr/src/debug/coreutils/9.5/lib/hash.c /usr/src/debug/coreutils/9.5/lib/hash.h" packages/core2-64-poky-linux/coreutils/coreutils-src: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-src: PKGSIZE changed from 5905684 to 5937151 (+1%) packages/core2-64-poky-linux/coreutils/coreutils-src: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-staticdev: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-staticdev: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils-stdbuf: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils-stdbuf: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils/coreutils: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils/coreutils: PKGSIZE changed from 7669688 to 7669592 (-0%) packages/core2-64-poky-linux/coreutils/coreutils: PKGV changed from 9.4 [default] to 9.5 [default] packages/core2-64-poky-linux/coreutils: SRC_URI changed from "https://ftp.gnu.org/gnu/coreutils/coreutils-9.4.tar.xz file://remove-usr-local-lib-from-m4.patch file://0001-local.mk-fix-cross-compiling-problem.patch file://0001-posixtm-pacify-clang-18.patch file://CVE-2024-0684.patch file://run-ptest" to "https://ftp.gnu.org/gnu/coreutils/coreutils-9.5.tar.xz file://remove-usr-local-lib-from-m4.patch file://0001-local.mk-fix-cross-compiling-problem.patch file://run-ptest" packages/core2-64-poky-linux/coreutils: PV changed from "9.4" to "9.5" packages/core2-64-poky-linux/coreutils: PKGV changed from 9.4 [default] to 9.5 [default]
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#197700): https://lists.openembedded.org/g/openembedded-core/message/197700 Mute This Topic: https://lists.openembedded.org/mt/105271621/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
