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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2B290138EEE for ; Thu, 24 Jun 2021 20:26:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA342E08EF; Thu, 24 Jun 2021 20:26:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8E4EEE08C8 for ; Thu, 24 Jun 2021 20:26:28 +0000 (UTC) From: Conrad Kostecki To: gentoo-dev@lists.gentoo.org Subject: [gentoo-dev] [PATCH 1/2] eclass/aspell-dict-r1.eclass: add EAPI 8 support Date: Thu, 24 Jun 2021 22:26:18 +0200 Message-Id: <20210624202619.20178-1-conikost@gentoo.org> X-Mailer: git-send-email 2.31.1 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-Transfer-Encoding: 8bit X-Archives-Salt: 07af6978-b269-45d5-8ad1-74dc6219b674 X-Archives-Hash: 31c9c2c9ff1c78f9cd8483b9d388535d This change adds EAPI 8 support. No further changed required. Signed-off-by: Conrad Kostecki --- eclass/aspell-dict-r1.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/aspell-dict-r1.eclass b/eclass/aspell-dict-r1.eclass index 24bc5ff2799..09f22dbf8c0 100644 --- a/eclass/aspell-dict-r1.eclass +++ b/eclass/aspell-dict-r1.eclass @@ -7,7 +7,7 @@ # @AUTHOR: # Seemant Kulleen (original author) # David Seifert (-r1 author) -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: An eclass to streamline the construction of ebuilds for new Aspell dictionaries. # @DESCRIPTION: # The aspell-dict-r1 eclass is designed to streamline the construction of ebuilds for @@ -40,7 +40,7 @@ case ${EAPI:-0} in [0-6]) die "${ECLASS} is banned in EAPI ${EAPI:-0}" ;; - 7) + [7-8]) ;; *) die "Unknown EAPI ${EAPI:-0}" -- 2.31.1