commit: 1eb38fa6e52accf8c2a44cf3c5a6fb6c5c98def4 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri Sep 30 03:33:15 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Sep 30 03:47:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eb38fa6
waf-utils.eclass: add EAPI 8 I dare say that if it were going to happen organically, it would've by now. Working on WAF packages is suffering enough. Signed-off-by: Sam James <sam <AT> gentoo.org> eclass/waf-utils.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass index d5d52b9af247..cfcefed52274 100644 --- a/eclass/waf-utils.eclass +++ b/eclass/waf-utils.eclass @@ -8,7 +8,7 @@ # Original Author: Gilles Dartiguelongue <[email protected]> # Various improvements based on cmake-utils.eclass: Tomáš Chvátal <[email protected]> # Proper prefix support: Jonathan Callen <[email protected]> -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: common ebuild functions for waf-based packages # @DESCRIPTION: # The waf-utils eclass contains functions that make creating ebuild for @@ -18,7 +18,7 @@ inherit multilib toolchain-funcs multiprocessing case ${EAPI:-0} in - 6|7) EXPORT_FUNCTIONS src_configure src_compile src_install ;; + 6|7|8) EXPORT_FUNCTIONS src_configure src_compile src_install ;; *) die "EAPI=${EAPI} is not supported" ;; esac
