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 A0D79139347 for ; Wed, 7 Jul 2021 19:49:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6FA35E0D86; Wed, 7 Jul 2021 19:49:51 +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 56425E0D86 for ; Wed, 7 Jul 2021 19:49:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 543E43404A5 for ; Wed, 7 Jul 2021 19:49:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A025720 for ; Wed, 7 Jul 2021 19:49:48 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1625687245.9961f2fcb0d8065e06ba760c4dfdf75b21071c6e.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/aspell-dict-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 9961f2fcb0d8065e06ba760c4dfdf75b21071c6e X-VCS-Branch: master Date: Wed, 7 Jul 2021 19:49:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 44bf8f64-35a1-4aa4-b7f8-20c201012534 X-Archives-Hash: e0194e644334708173de1549689eb76e commit: 9961f2fcb0d8065e06ba760c4dfdf75b21071c6e Author: Conrad Kostecki gentoo org> AuthorDate: Sun Jul 4 15:40:10 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Jul 7 19:47:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9961f2fc eclass/aspell-dict-r1.eclass: add EAPI 8 support This change adds EAPI 8 support. No further changes required. Signed-off-by: Conrad Kostecki gentoo.org> 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}"