commit:     76bec668b9cd5c0cd27f224935dd66403db6db40
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 28 08:36:24 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Nov 15 16:34:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76bec668

scons-utils.eclass: Enable EAPI 8 support

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 eclass/scons-utils.eclass | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/scons-utils.eclass b/eclass/scons-utils.eclass
index 78a9958ec422..212b29e089e8 100644
--- a/eclass/scons-utils.eclass
+++ b/eclass/scons-utils.eclass
@@ -4,7 +4,7 @@
 # @ECLASS: scons-utils.eclass
 # @MAINTAINER:
 # [email protected]
-# @SUPPORTED_EAPIS: 7
+# @SUPPORTED_EAPIS: 7 8
 # @BLURB: helper functions to deal with SCons buildsystem
 # @DESCRIPTION:
 # This eclass provides a set of function to help developers sanely call
@@ -35,10 +35,10 @@
 #
 # @EXAMPLE:
 # @CODE
-# PYTHON_COMPAT=( python2_7 )
+# PYTHON_COMPAT=( python3_{8..11} )
 # inherit python-any-r1 scons-utils toolchain-funcs
 #
-# EAPI=7
+# EAPI=8
 #
 # src_configure() {
 #      MYSCONS=(
@@ -83,7 +83,7 @@
 # -- EAPI support check --
 
 case ${EAPI:-0} in
-       7) ;;
+       7|8) ;;
        *) die "EAPI ${EAPI} unsupported."
 esac
 

Reply via email to