commit: fae49c087a35ae5a6d78ca043fda68a6f1557e6c Author: Marek Szuba <marecki <AT> gentoo <DOT> org> AuthorDate: Tue Dec 22 22:41:05 2020 +0000 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org> CommitDate: Tue Dec 22 22:47:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fae49c08
waf-utils.eclass: support EAPI-7 Trivial bump. Tested with a modified media-video/mpv ebuild (which package requires this change before it can be migrated to Lua eclasses), seems to work fine. Closes: https://bugs.gentoo.org/743826 Signed-off-by: Marek Szuba <marecki <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 7a894f6bbb7..f22460881ef 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: 4 5 6 +# @SUPPORTED_EAPIS: 4 5 6 7 # @BLURB: common ebuild functions for waf-based packages # @DESCRIPTION: # The waf-utils eclass contains functions that make creating ebuild for @@ -19,7 +19,7 @@ inherit multilib toolchain-funcs multiprocessing case ${EAPI:-0} in - 4|5|6) EXPORT_FUNCTIONS src_configure src_compile src_install ;; + 4|5|6|7) EXPORT_FUNCTIONS src_configure src_compile src_install ;; *) die "EAPI=${EAPI} is not supported" ;; esac
