Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 30 Sep 2022 03:49:14
Message-Id: 1664509679.1eb38fa6e52accf8c2a44cf3c5a6fb6c5c98def4.sam@gentoo
1 commit: 1eb38fa6e52accf8c2a44cf3c5a6fb6c5c98def4
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 30 03:33:15 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 30 03:47:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eb38fa6
7
8 waf-utils.eclass: add EAPI 8
9
10 I dare say that if it were going to happen organically, it would've by now.
11
12 Working on WAF packages is suffering enough.
13
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 eclass/waf-utils.eclass | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass
20 index d5d52b9af247..cfcefed52274 100644
21 --- a/eclass/waf-utils.eclass
22 +++ b/eclass/waf-utils.eclass
23 @@ -8,7 +8,7 @@
24 # Original Author: Gilles Dartiguelongue <eva@g.o>
25 # Various improvements based on cmake-utils.eclass: Tomáš Chvátal <scarabeus@g.o>
26 # Proper prefix support: Jonathan Callen <jcallen@g.o>
27 -# @SUPPORTED_EAPIS: 6 7
28 +# @SUPPORTED_EAPIS: 6 7 8
29 # @BLURB: common ebuild functions for waf-based packages
30 # @DESCRIPTION:
31 # The waf-utils eclass contains functions that make creating ebuild for
32 @@ -18,7 +18,7 @@
33 inherit multilib toolchain-funcs multiprocessing
34
35 case ${EAPI:-0} in
36 - 6|7) EXPORT_FUNCTIONS src_configure src_compile src_install ;;
37 + 6|7|8) EXPORT_FUNCTIONS src_configure src_compile src_install ;;
38 *) die "EAPI=${EAPI} is not supported" ;;
39 esac