From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D0F00158020 for ; Fri, 28 Oct 2022 17:52:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CA59E089A; Fri, 28 Oct 2022 17:51:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A5BBE0894 for ; Fri, 28 Oct 2022 17:51:21 +0000 (UTC) From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= To: gentoo-dev@lists.gentoo.org Cc: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Subject: [gentoo-dev] [PATCH 3/6] scons-utils.eclass: Enable EAPI 8 support Date: Fri, 28 Oct 2022 19:51:08 +0200 Message-Id: <20221028175111.5064-4-mgorny@gentoo.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221028175111.5064-1-mgorny@gentoo.org> References: <20221028175111.5064-1-mgorny@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Archives-Salt: e0de4cf9-b339-464c-b6ea-1f3fbe807c12 X-Archives-Hash: 3d682917ddb9335b5ec7502235e6dce1 Signed-off-by: Michał Górny --- 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: # mgorny@gentoo.org -# @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 -- 2.38.1