sys-apps/keyutils: Sync with Gentoo

It's from Gentoo commit c9645e94e82e399c738168a4423c0969048d1fd2.
This commit is contained in:
Flatcar Buildbot 2025-07-07 07:14:20 +00:00
parent df0113c622
commit b6ee1e828a
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,30 @@
https://lore.kernel.org/keyrings/85561febfcf0618a9280448d5c53775646f470d6.1703712863.git.nvinson234@gmail.com/raw
Functions keyctl_restrict() and keyctl_dh_compute_kdf_alloc() are
nodefined. Their inclusion in version.lds causes clang/llvm LTO
optimizations to fail with error messages similar to
error: version script assignment of KEYUTILS_1.7 to symbol
keyctl_restrict failed: symbol not defined
This patch fixes the issue by removing the symbol names from
version.lds.
Fixes Gentoo bug 914637 (https://bugs.gentoo.org/914637)
Signed-off-by: Nicholas Vinson <nvinson234@gmail.com>
--- a/version.lds
+++ b/version.lds
@@ -76,9 +76,7 @@ KEYUTILS_1.6 {
KEYUTILS_1.7 {
/* management functions */
- keyctl_restrict;
keyctl_dh_compute_kdf;
- keyctl_dh_compute_kdf_alloc;
} KEYUTILS_1.6;
--
2.43.0

View File

@ -23,6 +23,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-1.5.10-disable-tests.patch #519062 #522050
"${FILESDIR}"/${PN}-1.5.9-header-extern-c.patch
"${FILESDIR}"/${PN}-1.6.3-fix-rpmspec-check.patch
"${FILESDIR}"/${PN}-1.6.3-symbols.patch
"${FILESDIR}"/${P}-tests.patch
)