From f59498ed6e49ef1c6e87392e71680877f8a705ca Mon Sep 17 00:00:00 2001 From: Mike Pagano Date: Wed, 7 Dec 2022 10:45:37 -0500 Subject: [PATCH] linux-mod.eclass: Warn about removal of econf called in compile phase func Notify packaga maintainers that their package relies on the EAPI deprecated use of econf being called in linux-mod_src_compile, which will go away in 30 days (20230107) Bug: https://bugs.gentoo.org/340597 Signed-off-by: Mike Pagano --- eclass/linux-mod.eclass | 1 + 1 file changed, 1 insertion(+) diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index 34151c6f27cdb..ff2294f1e4efe 100644 --- a/eclass/linux-mod.eclass +++ b/eclass/linux-mod.eclass @@ -652,6 +652,7 @@ linux-mod_src_compile() { einfo "Preparing ${modulename} module" if [[ -n ${ECONF_PARAMS} ]] then + eqawarn "This package relies on the deprecated functionality of econf being called in linux-mod_src_compile (ECONF_PARAMS), which will go away in 30 days (20230107) (https://bugs.gentoo.org/340597)" econf ${ECONF_PARAMS} || \ die "Unable to run econf ${ECONF_PARAMS}" fi