Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe(s) *acl* to *2.4.0* has 
Succeeded.

Next steps:
    - apply the patch: git am 0001-acl-upgrade-2.3.2-2.4.0.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 051007f02197165c795e372c8732437f7166840e Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Tue, 30 Jun 2026 05:48:53 +0000
Subject: [PATCH] acl: upgrade 2.3.2 -> 2.4.0

---
 ...t_uid-fix-memory-wasting-loop-if-use.patch | 49 -------------------
 ...isc.test-Don-t-mix-stdout-and-stderr.patch | 35 -------------
 .../attr/{acl_2.3.2.bb => acl_2.4.0.bb}       |  4 +-
 3 files changed, 1 insertion(+), 87 deletions(-)
 delete mode 100644 
meta/recipes-support/attr/acl/0001-libmisc-__acl_get_uid-fix-memory-wasting-loop-if-use.patch
 delete mode 100644 
meta/recipes-support/attr/acl/0001-test-misc.test-Don-t-mix-stdout-and-stderr.patch
 rename meta/recipes-support/attr/{acl_2.3.2.bb => acl_2.4.0.bb} (90%)

diff --git 
a/meta/recipes-support/attr/acl/0001-libmisc-__acl_get_uid-fix-memory-wasting-loop-if-use.patch
 
b/meta/recipes-support/attr/acl/0001-libmisc-__acl_get_uid-fix-memory-wasting-loop-if-use.patch
deleted file mode 100644
index 5052bdaa2f..0000000000
--- 
a/meta/recipes-support/attr/acl/0001-libmisc-__acl_get_uid-fix-memory-wasting-loop-if-use.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From 56abe432b65801f31277fb9a3bca0f9e31502315 Mon Sep 17 00:00:00 2001
-From: Matthias Gerstner <[email protected]>
-Date: Thu, 25 Apr 2024 12:43:49 +0200
-Subject: [PATCH] libmisc: __acl_get_uid(): fix memory wasting loop if user
- does not exist
-
-I noticed that `acl_from_text()` unexpectedly returns ENOMEM for invalid
-user names. The reason for this is a missing break statement in the for
-loop in `__acl_get_uid()`, which causes the loop to act as if ERANGE was
-returned from `getpwnam_r()`, thereby exponentially increasing the
-buffer size to (in my case) multiple gigabytes, until `grow_buffer()`
-reports ENOMEM, which terminates the `__acl_get_uid()` function.
-
-This is a pretty costly "no such user" lookup that can disturb a
-process's heap memory management, but can also cause a process to fail
-e.g. if it is multithreaded and other threads encounter an ENOMEM,
-before `__acl_get_uid()` frees the gigantic heap buffer and returns.
-The allocated memory isn't actually used. Therefore on Linux it should
-not affect other processes by default, due to its overcommit memory
-and lazy memory allocation strategy.
-
-Fix this by properly terminating the for loop on any conditions except
-an ERANGE error being reported. The same break statement correctly
-exists in `__acl_get_gid()` already.
-
-Fixes: 3737f00 ("use thread-safe getpwnam_r and getgrnam_r")
-Signed-off-by: Andreas Gruenbacher <[email protected]>
-
-Upstream-Status: Backport
-Signed-off-by: Ross Burton <[email protected]>
----
- libmisc/uid_gid_lookup.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/libmisc/uid_gid_lookup.c b/libmisc/uid_gid_lookup.c
-index a4f21f6..74baab4 100644
---- a/libmisc/uid_gid_lookup.c
-+++ b/libmisc/uid_gid_lookup.c
-@@ -91,6 +91,7 @@ __acl_get_uid(const char *token, uid_t *uid_p)
-               if (err == ERANGE)
-                       continue;
-               errno = err ? err : EINVAL;
-+              break;
-       }
-       free(buffer);
-       return result ? 0 : -1;
--- 
-2.43.0
-
diff --git 
a/meta/recipes-support/attr/acl/0001-test-misc.test-Don-t-mix-stdout-and-stderr.patch
 
b/meta/recipes-support/attr/acl/0001-test-misc.test-Don-t-mix-stdout-and-stderr.patch
deleted file mode 100644
index 5aa3f3224c..0000000000
--- 
a/meta/recipes-support/attr/acl/0001-test-misc.test-Don-t-mix-stdout-and-stderr.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 47f8039ec9bd08b629775c8e788d11e41fa95f14 Mon Sep 17 00:00:00 2001
-From: Andreas Gruenbacher <[email protected]>
-Date: Mon, 24 Mar 2025 21:14:09 +0100
-Subject: [PATCH] test/misc.test: Don't mix stdout and stderr
-
-In different environments, we may not get the stdout and stderr output
-in the order the run script expects, so check both separately.
-
-Fixes: https://savannah.nongnu.org/bugs/?66944
-Signed-off-by: Andreas Gruenbacher <[email protected]>
-
-Upstream-Status: Backport
-Signed-off-by: Ross Burton <[email protected]>
----
- test/misc.test | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/test/misc.test b/test/misc.test
-index 06b3136..57c02e5 100644
---- a/test/misc.test
-+++ b/test/misc.test
-@@ -440,8 +440,9 @@ Dangling symlink test 
https://savannah.nongnu.org/bugs/?28131
-       > other::r-x
-       > 
-       $ setfacl -R -m u:bin:rw d
--      $ getfacl -RL d
-+      $ getfacl -RL d > /dev/null
-       > getfacl: d/b: No such file or directory
-+      $ getfacl -RL d 2> /dev/null
-       > # file: d
-       > # owner: %TUSER
-       > # group: %TGROUP
--- 
-2.43.0
-
diff --git a/meta/recipes-support/attr/acl_2.3.2.bb 
b/meta/recipes-support/attr/acl_2.4.0.bb
similarity index 90%
rename from meta/recipes-support/attr/acl_2.3.2.bb
rename to meta/recipes-support/attr/acl_2.4.0.bb
index a405cc2692..ef9ee492a0 100644
--- a/meta/recipes-support/attr/acl_2.3.2.bb
+++ b/meta/recipes-support/attr/acl_2.4.0.bb
@@ -16,11 +16,9 @@ LIC_FILES_CHKSUM = 
"file://doc/COPYING;md5=c781d70ed2b4d48995b790403217a249 \
 DEPENDS = "attr"
 
 SRC_URI = "${SAVANNAH_GNU_MIRROR}/acl/${BP}.tar.gz \
-           
file://0001-libmisc-__acl_get_uid-fix-memory-wasting-loop-if-use.patch \
-           file://0001-test-misc.test-Don-t-mix-stdout-and-stderr.patch \
            file://run-ptest \
            "
-SRC_URI[sha256sum] = 
"5f2bdbad629707aa7d85c623f994aa8a1d2dec55a73de5205bac0bf6058a2f7c"
+SRC_URI[sha256sum] = 
"73c853c3d44e1f693e5a96a986f1bd19d3d0dac2c7d453e796177774bc4e5f6a"
 
 inherit autotools gettext ptest
 
-- 
2.47.1

packages/all-poky-linux/wayland-protocols/wayland-protocols-dev: FILES: removed 
"/lib/lib*.so /lib/*.o /lib/*.la"
packages/all-poky-linux/wayland-protocols/wayland-protocols-staticdev: FILES: 
removed "/lib/*.a"
packages/all-poky-linux/wayland-protocols/wayland-protocols: FILES: removed 
"/lib/*.so.* /sbin/* /bin/*", added "/usr/lib/*.so.*"
packages/x86-64-v3-poky-linux/acl/acl-dbg: PV changed from "2.3.2" to "2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-dbg: RRECOMMENDS: removed "libattr-dbg"
packages/x86-64-v3-poky-linux/acl/acl-dbg: PKGSIZE changed from 368440 to 
439288 (+19%)
packages/x86-64-v3-poky-linux/acl/acl-dbg: PKGV changed from 2.3.2 [default] to 
2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-dbg: FILELIST: removed 
"/usr/lib/.debug/libacl.so.1.1.2302", added "/usr/lib/.debug/libacl.so.1.2.2400"
packages/x86-64-v3-poky-linux/acl/acl-dev: PV changed from "2.3.2" to "2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-dev: RRECOMMENDS: removed "libattr-dev"
packages/x86-64-v3-poky-linux/acl/acl-dev: PKGSIZE changed from 6482 to 6866 
(+6%)
packages/x86-64-v3-poky-linux/acl/acl-dev: PKGV changed from 2.3.2 [default] to 
2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-doc: PV changed from "2.3.2" to "2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-doc: PKGSIZE changed from 222615 to 
235588 (+6%)
packages/x86-64-v3-poky-linux/acl/acl-doc: PKGV changed from 2.3.2 [default] to 
2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-doc: FILELIST: added 
"/usr/share/man/man3/acl_set_file_at.3 
/usr/share/man/man3/acl_extended_file_at.3 
/usr/share/man/man3/acl_get_file_at.3 
/usr/share/man/man3/acl_delete_def_file_at.3"
packages/x86-64-v3-poky-linux/acl/acl-locale-de: PV changed from "2.3.2" to 
"2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-locale-de: PKGSIZE changed from 8722 to 
9261 (+6%)
packages/x86-64-v3-poky-linux/acl/acl-locale-de: PKGV changed from 2.3.2 
[default] to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-locale-en+boldquot: PV changed from 
"2.3.2" to "2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-locale-en+boldquot: PKGSIZE changed from 
8581 to 9091 (+6%)
packages/x86-64-v3-poky-linux/acl/acl-locale-en+boldquot: PKGV changed from 
2.3.2 [default] to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-locale-en+quot: PV changed from "2.3.2" 
to "2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-locale-en+quot: PKGSIZE changed from 8497 
to 9007 (+6%)
packages/x86-64-v3-poky-linux/acl/acl-locale-en+quot: PKGV changed from 2.3.2 
[default] to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-locale-es: PV changed from "2.3.2" to 
"2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-locale-es: PKGSIZE changed from 6972 to 
6751 (-3%)
packages/x86-64-v3-poky-linux/acl/acl-locale-es: PKGV changed from 2.3.2 
[default] to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-locale-fr: PV changed from "2.3.2" to 
"2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-locale-fr: PKGSIZE changed from 7691 to 
7440 (-3%)
packages/x86-64-v3-poky-linux/acl/acl-locale-fr: PKGV changed from 2.3.2 
[default] to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-locale-gl: PV changed from "2.3.2" to 
"2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-locale-gl: PKGSIZE changed from 6970 to 
6738 (-3%)
packages/x86-64-v3-poky-linux/acl/acl-locale-gl: PKGV changed from 2.3.2 
[default] to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-locale-ka: PV changed from "2.3.2" to 
"2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-locale-ka: PKGSIZE changed from 13107 to 
10125 (-23%)
packages/x86-64-v3-poky-linux/acl/acl-locale-ka: PKGV changed from 2.3.2 
[default] to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-locale-pl: PV changed from "2.3.2" to 
"2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-locale-pl: PKGSIZE changed from 9321 to 
7204 (-23%)
packages/x86-64-v3-poky-linux/acl/acl-locale-pl: PKGV changed from 2.3.2 
[default] to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-locale-sv: PV changed from "2.3.2" to 
"2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-locale-sv: PKGSIZE changed from 6704 to 
6491 (-3%)
packages/x86-64-v3-poky-linux/acl/acl-locale-sv: PKGV changed from 2.3.2 
[default] to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-ptest: PV changed from "2.3.2" to "2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-ptest: RDEPENDS: removed "libattr (['>= 
2.5.2'])"
packages/x86-64-v3-poky-linux/acl/acl-ptest: PKGSIZE changed from 42237 to 
25258 (-40%)
packages/x86-64-v3-poky-linux/acl/acl-ptest: PKGV changed from 2.3.2 [default] 
to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-ptest: FILELIST: removed 
"/usr/lib/acl/ptest/setfacl-X.test /usr/lib/acl/ptest/sbits-restore.test 
/usr/lib/acl/ptest/getfacl-recursive.test /usr/lib/acl/ptest/cp.test 
/usr/lib/acl/ptest/utf8-filenames.test /usr/lib/acl/ptest/getfacl-lfs.test 
/usr/lib/acl/ptest/getfacl-noacl.test /usr/lib/acl/ptest/malformed-restore.test 
/usr/lib/acl/ptest/misc.test"
packages/x86-64-v3-poky-linux/acl/acl-src: PV changed from "2.3.2" to "2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-src: PKGSIZE changed from 204219 to 
234173 (+15%)
packages/x86-64-v3-poky-linux/acl/acl-src: PKGV changed from 2.3.2 [default] to 
2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl-src: FILELIST: directory renamed 
/usr/src/debug/acl/2.3.2/tools -> /usr/src/debug/acl/2.4.0/tools, directory 
renamed /usr/src/debug/acl/2.3.2/test -> /usr/src/debug/acl/2.4.0/test, removed 
"/usr/src/debug/acl/2.3.2/libmisc/next_line.c 
/usr/src/debug/acl/2.3.2/libacl/libobj.h 
/usr/src/debug/acl/2.3.2/libacl/acl_get_qualifier.c 
/usr/src/debug/acl/2.3.2/libacl/acl_copy_entry.c 
/usr/src/debug/acl/2.3.2/libacl/acl_set_qualifier.c 
/usr/src/debug/acl/2.3.2/libacl/__libobj.c 
/usr/src/debug/acl/2.3.2/libacl/acl_entries.c 
/usr/src/debug/acl/2.3.2/libacl/acl_get_fd.c 
/usr/src/debug/acl/2.3.2/libacl/acl_set_fd.c 
/usr/src/debug/acl/2.3.2/libacl/acl_cmp.c 
/usr/src/debug/acl/2.3.2/libacl/acl_dup.c 
/usr/src/debug/acl/2.3.2/include/walk_tree.h 
/usr/src/debug/acl/2.3.2/libacl/acl_get_file.c 
/usr/src/debug/acl/2.3.2/libacl/acl_set_file.c 
/usr/src/debug/acl/2.3.2/libacl/libacl.h 
/usr/src/debug/acl/2.3.2/libmisc/walk_tree.c 
/usr/src/debug/acl/2.3.2/libmisc/unquote.c 
 /usr/src/debug/acl/2.3.2/libacl/acl_extended_file_nofollow.c 
/usr/src/debug/acl/2.3.2/libacl/__acl_to_any_text.c 
/usr/src/debug/acl/2.3.2/libacl/__apply_mask_to_mode.c 
/usr/src/debug/acl/2.3.2/libacl/acl_to_text.c 
/usr/src/debug/acl/2.3.2/libacl/acl_from_mode.c 
/usr/src/debug/acl/2.3.2/libacl/acl_clear_perms.c 
/usr/src/debug/acl/2.3.2/libacl/acl_extended_file.c 
/usr/src/debug/acl/2.3.2/libacl/perm_copy_fd.c 
/usr/src/debug/acl/2.3.2/include/acl.h 
/usr/src/debug/acl/2.3.2/libacl/acl_valid.c 
/usr/src/debug/acl/2.3.2/libacl/acl_copy_int.c 
/usr/src/debug/acl/2.3.2/libacl/acl_get_permset.c 
/usr/src/debug/acl/2.3.2/libacl/__acl_from_xattr.h 
/usr/src/debug/acl/2.3.2/libacl/acl_set_permset.c 
/usr/src/debug/acl/2.3.2/libmisc/high_water_alloc.c 
/usr/src/debug/acl/2.3.2/libacl/acl_free.c 
/usr/src/debug/acl/2.3.2/libacl/__acl_from_xattr.c 
/usr/src/debug/acl/2.3.2/libacl/acl_init.c 
/usr/src/debug/acl/2.3.2/libacl/acl_size.c 
/usr/src/debug/acl/2.3.2/libacl/acl_check.c /usr/src/debug/acl/2.3.2/liba
 cl/acl_add_perm.c /usr/src/debug/acl/2.3.2/libacl/acl_delete_perm.c 
/usr/src/debug/acl/2.3.2/libacl/acl_get_perm.c 
/usr/src/debug/acl/2.3.2/libmisc/quote.c 
/usr/src/debug/acl/2.3.2/libacl/__acl_extended_file.h 
/usr/src/debug/acl/2.3.2/libacl/acl_calc_mask.c 
/usr/src/debug/acl/2.3.2/libacl/__acl_extended_file.c 
/usr/src/debug/acl/2.3.2/libacl/acl_from_text.c 
/usr/src/debug/acl/2.3.2/libmisc/uid_gid_lookup.c 
/usr/src/debug/acl/2.3.2/include/libacl.h 
/usr/src/debug/acl/2.3.2/include/acl_ea.h 
/usr/src/debug/acl/2.3.2/libacl/acl_error.c 
/usr/src/debug/acl/2.3.2/libacl/acl_set_tag_type.c 
/usr/src/debug/acl/2.3.2/libacl/perm_copy_file.c 
/usr/src/debug/acl/2.3.2/libacl/__acl_to_xattr.h 
/usr/src/debug/acl/2.3.2/libacl/acl_equiv_mode.c 
/usr/src/debug/acl/2.3.2/libacl/acl_copy_ext.c 
/usr/src/debug/acl/2.3.2/libacl/acl_extended_fd.c 
/usr/src/debug/acl/2.3.2/libacl/acl_to_any_text.c 
/usr/src/debug/acl/2.3.2/libacl/__acl_to_xattr.c 
/usr/src/debug/acl/2.3.2/include/misc.h /usr/src/debug/acl/2.3.2/
 libacl/acl_get_entry.c /usr/src/debug/acl/2.3.2/libacl/acl_delete_entry.c 
/usr/src/debug/acl/2.3.2/libacl/acl_create_entry.c 
/usr/src/debug/acl/2.3.2/libacl/__acl_reorder_obj_p.c 
/usr/src/debug/acl/2.3.2/libacl/acl_get_tag_type.c 
/usr/src/debug/acl/2.3.2/libacl/acl_delete_def_file.c", added 
"/usr/src/debug/acl/2.4.0/libacl/acl_set_qualifier.c 
/usr/src/debug/acl/2.4.0/libacl/acl_get_qualifier.c 
/usr/src/debug/acl/2.4.0/libacl/acl_cmp.c 
/usr/src/debug/acl/2.4.0/libacl/acl_dup.c 
/usr/src/debug/acl/2.4.0/include/walk_tree.h 
/usr/src/debug/acl/2.4.0/include/xattrat.h 
/usr/src/debug/acl/2.4.0/libacl/libacl.h 
/usr/src/debug/acl/2.4.0/libmisc/unquote.c 
/usr/src/debug/acl/2.4.0/libacl/acl_valid.c 
/usr/src/debug/acl/2.4.0/libmisc/fchmodat_compat.c 
/usr/src/debug/acl/2.4.0/libacl/acl_delete_perm.c 
/usr/src/debug/acl/2.4.0/include/libacl.h 
/usr/src/debug/acl/2.4.0/libmisc/setxattrat_compat.c 
/usr/src/debug/acl/2.4.0/libmisc/getxattrat_compat.c 
/usr/src/debug/acl/2.4.0/include/xattrat_compat.h /
 usr/src/debug/acl/2.4.0/libacl/__acl_to_xattr.h 
/usr/src/debug/acl/2.4.0/libacl/acl_extended_file_at.c 
/usr/src/debug/acl/2.4.0/libacl/acl_extended_fd.c 
/usr/src/debug/acl/2.4.0/libacl/__acl_to_xattr.c 
/usr/src/debug/acl/2.4.0/libacl/acl_entries.c 
/usr/src/debug/acl/2.4.0/libacl/acl_get_file.c 
/usr/src/debug/acl/2.4.0/libacl/acl_set_file.c 
/usr/src/debug/acl/2.4.0/libacl/acl_to_text.c 
/usr/src/debug/acl/2.4.0/libacl/acl_clear_perms.c 
/usr/src/debug/acl/2.4.0/libacl/acl_extended_file.c 
/usr/src/debug/acl/2.4.0/libacl/acl_delete_def_file_at.c 
/usr/src/debug/acl/2.4.0/libacl/acl_copy_int.c 
/usr/src/debug/acl/2.4.0/libacl/__acl_from_xattr.h 
/usr/src/debug/acl/2.4.0/libacl/__acl_from_xattr.c 
/usr/src/debug/acl/2.4.0/libacl/acl_calc_mask.c 
/usr/src/debug/acl/2.4.0/libacl/acl_copy_ext.c 
/usr/src/debug/acl/2.4.0/libacl/__acl_reorder_obj_p.c 
/usr/src/debug/acl/2.4.0/libacl/acl_set_tag_type.c 
/usr/src/debug/acl/2.4.0/libacl/acl_delete_entry.c 
/usr/src/debug/acl/2.4.0/libacl/acl_create_entry.c
  /usr/src/debug/acl/2.4.0/libacl/acl_get_tag_type.c 
/usr/src/debug/acl/2.4.0/libmisc/listxattrat_compat.c 
/usr/src/debug/acl/2.4.0/libacl/libobj.h 
/usr/src/debug/acl/2.4.0/libacl/acl_copy_entry.c 
/usr/src/debug/acl/2.4.0/libmisc/walk_tree.c 
/usr/src/debug/acl/2.4.0/libmisc/xattrat.c 
/usr/src/debug/acl/2.4.0/libacl/acl_extended_file_nofollow.c 
/usr/src/debug/acl/2.4.0/libacl/acl_from_mode.c 
/usr/src/debug/acl/2.4.0/libacl/perm_copy_fd.c 
/usr/src/debug/acl/2.4.0/include/acl.h 
/usr/src/debug/acl/2.4.0/libacl/acl_get_permset.c 
/usr/src/debug/acl/2.4.0/libacl/acl_set_permset.c 
/usr/src/debug/acl/2.4.0/libmisc/high_water_alloc.c 
/usr/src/debug/acl/2.4.0/libmisc/removexattrat_compat.c 
/usr/src/debug/acl/2.4.0/include/fchmodat_compat.h 
/usr/src/debug/acl/2.4.0/libacl/acl_add_perm.c 
/usr/src/debug/acl/2.4.0/libacl/acl_get_perm.c 
/usr/src/debug/acl/2.4.0/libacl/acl_from_text.c 
/usr/src/debug/acl/2.4.0/libmisc/uid_gid_lookup.c 
/usr/src/debug/acl/2.4.0/include/acl_ea.h /usr/src/debug/acl/2.4.0/
 libacl/acl_equiv_mode.c /usr/src/debug/acl/2.4.0/libacl/acl_to_any_text.c 
/usr/src/debug/acl/2.4.0/include/misc.h 
/usr/src/debug/acl/2.4.0/libacl/acl_get_entry.c 
/usr/src/debug/acl/2.4.0/libmisc/next_line.c 
/usr/src/debug/acl/2.4.0/libmisc/proc-self-fd.c 
/usr/src/debug/acl/2.4.0/libacl/acl_get_file_at.c 
/usr/src/debug/acl/2.4.0/libacl/acl_set_file_at.c 
/usr/src/debug/acl/2.4.0/libmisc/proc-self-fd.h 
/usr/src/debug/acl/2.4.0/libacl/__libobj.c 
/usr/src/debug/acl/2.4.0/libacl/acl_get_fd.c 
/usr/src/debug/acl/2.4.0/libacl/acl_set_fd.c 
/usr/src/debug/acl/2.4.0/libacl/__acl_apply_mask_to_mode.c 
/usr/src/debug/acl/2.4.0/libacl/__acl_to_any_text.c 
/usr/src/debug/acl/2.4.0/libacl/acl_free.c 
/usr/src/debug/acl/2.4.0/libacl/acl_init.c 
/usr/src/debug/acl/2.4.0/libacl/acl_size.c 
/usr/src/debug/acl/2.4.0/libacl/acl_check.c 
/usr/src/debug/acl/2.4.0/libmisc/quote.c 
/usr/src/debug/acl/2.4.0/libacl/acl_error.c 
/usr/src/debug/acl/2.4.0/libacl/perm_copy_file.c 
/usr/src/debug/acl/2.4.0/libacl/acl_delete_
 def_file.c"
packages/x86-64-v3-poky-linux/acl/acl-staticdev: PV changed from "2.3.2" to 
"2.4.0"
packages/x86-64-v3-poky-linux/acl/acl-staticdev: PKGV changed from 2.3.2 
[default] to 2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/acl: PV changed from "2.3.2" to "2.4.0"
packages/x86-64-v3-poky-linux/acl/acl: PKGSIZE changed from 84304 to 92440 
(+10%)
packages/x86-64-v3-poky-linux/acl/acl: PKGV changed from 2.3.2 [default] to 
2.4.0 [default]
packages/x86-64-v3-poky-linux/acl: PV changed from "2.3.2" to "2.4.0"
packages/x86-64-v3-poky-linux/acl: SRC_URI changed from 
"https://download.savannah.gnu.org/releases/acl/acl-2.3.2.tar.gz 
file://0001-libmisc-__acl_get_uid-fix-memory-wasting-loop-if-use.patch 
file://0001-test-misc.test-Don-t-mix-stdout-and-stderr.patch file://run-ptest" 
to "https://download.savannah.gnu.org/releases/acl/acl-2.4.0.tar.gz 
file://run-ptest"
packages/x86-64-v3-poky-linux/acl: PKGV changed from 2.3.2 [default] to 2.4.0 
[default]
packages/x86-64-v3-poky-linux/acl/libacl: PV changed from "2.3.2" to "2.4.0"
packages/x86-64-v3-poky-linux/acl/libacl: RDEPENDS: removed all items "libattr 
(['>= 2.5.2'])"
packages/x86-64-v3-poky-linux/acl/libacl: PKGSIZE changed from 38898 to 47090 
(+21%)
packages/x86-64-v3-poky-linux/acl/libacl: PKGV changed from 2.3.2 [default] to 
2.4.0 [default]
packages/x86-64-v3-poky-linux/acl/libacl: FILELIST: removed 
"/usr/lib/libacl.so.1.1.2302", added "/usr/lib/libacl.so.1.2.2400"
Changes to packages/x86-64-v3-poky-linux/acl (sysroot):
  /usr/lib/libacl.so.1 changed symlink target from libacl.so.1.1.2302 to 
libacl.so.1.2.2400
  /usr/lib/libacl.so changed symlink target from libacl.so.1.1.2302 to 
libacl.so.1.2.2400
  /usr/lib/libacl.so.1.1.2302 moved to /usr/lib/libacl.so.1.2.2400
Changes to packages/x86_64-linux/acl-native (sysroot):
  /usr/lib/libacl.so.1 changed symlink target from libacl.so.1.1.2302 to 
libacl.so.1.2.2400
  /usr/lib/libacl.so changed symlink target from libacl.so.1.1.2302 to 
libacl.so.1.2.2400
  /usr/lib/libacl.so.1.1.2302 moved to /usr/lib/libacl.so.1.2.2400
packages/x86-64-v3-poky-linux/acl/acl-dbg: RRECOMMENDS: removed "libattr-dbg"
packages/x86-64-v3-poky-linux/acl/acl-dbg: PKGSIZE changed from 368440 to 
439288 (+19%)
packages/x86-64-v3-poky-linux/acl/acl-dev: RRECOMMENDS: removed "libattr-dev"
packages/x86-64-v3-poky-linux/acl/acl-doc: FILELIST: added 
"/usr/share/man/man3/acl_set_file_at.3 
/usr/share/man/man3/acl_delete_def_file_at.3 
/usr/share/man/man3/acl_get_file_at.3 
/usr/share/man/man3/acl_extended_file_at.3"
packages/x86-64-v3-poky-linux/acl/acl-locale-ka: PKGSIZE changed from 13107 to 
10125 (-23%)
packages/x86-64-v3-poky-linux/acl/acl-locale-pl: PKGSIZE changed from 9321 to 
7204 (-23%)
packages/x86-64-v3-poky-linux/acl/acl-ptest: RDEPENDS: removed "libattr (['>= 
2.5.2'])"
packages/x86-64-v3-poky-linux/acl/acl-ptest: PKGSIZE changed from 42237 to 
25258 (-40%)
packages/x86-64-v3-poky-linux/acl/acl-ptest: FILELIST: removed 
"/usr/lib/acl/ptest/sbits-restore.test /usr/lib/acl/ptest/utf8-filenames.test 
/usr/lib/acl/ptest/misc.test /usr/lib/acl/ptest/getfacl-lfs.test 
/usr/lib/acl/ptest/setfacl-X.test /usr/lib/acl/ptest/malformed-restore.test 
/usr/lib/acl/ptest/getfacl-noacl.test /usr/lib/acl/ptest/getfacl-recursive.test 
/usr/lib/acl/ptest/cp.test"
packages/x86-64-v3-poky-linux/acl/acl-src: PKGSIZE changed from 204219 to 
234173 (+15%)
packages/x86-64-v3-poky-linux/acl/libacl: RDEPENDS: removed all items "libattr 
(['>= 2.5.2'])"
packages/x86-64-v3-poky-linux/acl/libacl: PKGSIZE changed from 38898 to 47090 
(+21%)
packages/x86-64-v3-poky-linux/acl/libacl: FILELIST: removed 
"/usr/lib/libacl.so.1.1.2302", added "/usr/lib/libacl.so.1.2.2400"
Changes to packages/x86-64-v3-poky-linux/acl (sysroot):
  /usr/lib/libacl.so.1 changed symlink target from libacl.so.1.1.2302 to 
libacl.so.1.2.2400
  /usr/lib/libacl.so changed symlink target from libacl.so.1.1.2302 to 
libacl.so.1.2.2400
  /usr/lib/libacl.so.1.1.2302 moved to /usr/lib/libacl.so.1.2.2400
Changes to packages/x86_64-linux/acl-native (sysroot):
  /usr/lib/libacl.so.1 changed symlink target from libacl.so.1.1.2302 to 
libacl.so.1.2.2400
  /usr/lib/libacl.so changed symlink target from libacl.so.1.1.2302 to 
libacl.so.1.2.2400
  /usr/lib/libacl.so.1.1.2302 moved to /usr/lib/libacl.so.1.2.2400

Attachment: 0001-acl-upgrade-2.3.2-2.4.0.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#239847): 
https://lists.openembedded.org/g/openembedded-core/message/239847
Mute This Topic: https://lists.openembedded.org/mt/120043036/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to