commit: 6688a4a2d7c1248670f31ecc2c12cc5dfeb3debe
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 1 07:22:06 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 1 07:22:06 2025 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=6688a4a2
EAPI=9: fix ebd loading of banned assert
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
data/lib/pkgcore/ebd/generate_eapi_lib | 2 ++
1 file changed, 2 insertions(+)
diff --git a/data/lib/pkgcore/ebd/generate_eapi_lib
b/data/lib/pkgcore/ebd/generate_eapi_lib
index aaacf4e3..84ddb3ca 100755
--- a/data/lib/pkgcore/ebd/generate_eapi_lib
+++ b/data/lib/pkgcore/ebd/generate_eapi_lib
@@ -8,6 +8,8 @@
# function lists are generated at install time and used instead.
load_eapi_libs() {
+ source "${PKGCORE_EBD_PATH}"/exit-handling.bash >&2 || { echo "ERROR:
failed sourcing exit-handling.bash"; exit -1; }
+
local scope="global"
local -a skip_funcs=( $(compgen -A function) )
local skip_regex=$(IFS='|'; echo "^(${skip_funcs[*]})$")