From db4121de1507f56158575cac93f14f786d8afacb Mon Sep 17 00:00:00 2001 From: Peter Stuge Date: Sat, 23 Apr 2022 16:24:23 +0200 Subject: [PATCH] sys-boot/lilo: Fix DEPEND=sys-devel/bin86 version and #753605 The upstream checkit script calls gcc directly to verify >=gcc-3.3.5, I think we can safely skip that. Closes: https://bugs.gentoo.org/753605 Signed-off-by: Peter Stuge --- sys-boot/lilo/lilo-24.2-r1.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys-boot/lilo/lilo-24.2-r1.ebuild b/sys-boot/lilo/lilo-24.2-r1.ebuild index 66040236a6d..e2054630a7b 100644 --- a/sys-boot/lilo/lilo-24.2-r1.ebuild +++ b/sys-boot/lilo/lilo-24.2-r1.ebuild @@ -21,7 +21,7 @@ SLOT="0" LICENSE="BSD GPL-2" KEYWORDS="-* amd64 x86" -DEPEND=">=sys-devel/bin86-0.15.5" +DEPEND=">=sys-devel/bin86-0.16.14" RDEPEND="device-mapper? ( >=sys-fs/lvm2-2.02.45 )" # Bootloaders should not be using arbitrary CFLAGS without good reason. A bootloader @@ -47,6 +47,9 @@ src_prepare() { -e '/images install/d' \ -e '/images all/d' \ || die "sed strip failed" + + # Remove direct gcc call which checks for >=gcc-3.3.5 #753605 + sed -i checkit -e '/^echo GCC version /,/^echo/d' || die } src_configure() { -- 2.26.2