From: Michał Górny Date: Sat, 28 Dec 2019 20:30:57 +0000 (+0100) Subject: sys-kernel/vanilla-kernel-bin: Verify version passed to has_version X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=63aed098518786d1b135a6c8665d84483be2f829;p=gentoo.git sys-kernel/vanilla-kernel-bin: Verify version passed to has_version Verify the version read from /usr/src/linux symlink and make sure that it consists of plain [0-9.] before passing it to has_version. If it doesn't conform, it isn't our symlink anyway. Closes: https://bugs.gentoo.org/703822 Signed-off-by: Michał Górny --- diff --git a/sys-kernel/vanilla-kernel-bin/vanilla-kernel-bin-5.4.6.ebuild b/sys-kernel/vanilla-kernel-bin/vanilla-kernel-bin-5.4.6.ebuild index fa1b7e994f20..4908786bffb8 100644 --- a/sys-kernel/vanilla-kernel-bin/vanilla-kernel-bin-5.4.6.ebuild +++ b/sys-kernel/vanilla-kernel-bin/vanilla-kernel-bin-5.4.6.ebuild @@ -81,8 +81,9 @@ pkg_postinst() { fi local symlink_target=$(readlink "${EROOT}"/usr/src/linux) - if [[ ${symlink_target} == linux-[0-9]* ]]; then - local symlink_ver=${symlink_target#linux-} + local symlink_ver=${symlink_target#linux-} + if [[ ${symlink_target} == linux-* && -z ${symlink_ver//[0-9.]/} ]] + then local symlink_pkg=${CATEGORY}/${PN}-${symlink_ver} # if the current target is either being replaced, or still # installed (probably depclean candidate), update the symlink