diff options
author | Sam James <sam@gentoo.org> | 2022-09-30 04:33:15 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-09-30 04:47:59 +0100 |
commit | 1eb38fa6e52accf8c2a44cf3c5a6fb6c5c98def4 (patch) | |
tree | 6c41d6ffa597607921bce0296c4be27a46f24801 | |
parent | net-fs/samba: conditionally depend on cmocka (diff) | |
download | gentoo-1eb38fa6e52accf8c2a44cf3c5a6fb6c5c98def4.tar.gz gentoo-1eb38fa6e52accf8c2a44cf3c5a6fb6c5c98def4.tar.bz2 gentoo-1eb38fa6e52accf8c2a44cf3c5a6fb6c5c98def4.zip |
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@gentoo.org>
-rw-r--r-- | eclass/waf-utils.eclass | 4 |
1 files 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 <eva@gentoo.org> # Various improvements based on cmake-utils.eclass: Tomáš Chvátal <scarabeus@gentoo.org> # Proper prefix support: Jonathan Callen <jcallen@gentoo.org> -# @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 |