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 C0E76158064 for ; Thu, 9 May 2024 19:54:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B750E2BC014; Thu, 9 May 2024 19:54:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A12DC2BC014 for ; Thu, 9 May 2024 19:54:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 smtp.gentoo.org (Postfix) with ESMTPS id DE006343091 for ; Thu, 9 May 2024 19:54:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 241591A7D for ; Thu, 9 May 2024 19:54:54 +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: <1715284442.fd708545f0ecc491e196c6043080c0c4c09eb441.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/vim-spell.eclass X-VCS-Directories: eclass/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: fd708545f0ecc491e196c6043080c0c4c09eb441 X-VCS-Branch: master Date: Thu, 9 May 2024 19:54:54 +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: 7098336f-e324-4fe2-bdad-b57c46fea5b7 X-Archives-Hash: 3e32b0f2f50498f07a9e1c686ef8d309 commit: fd708545f0ecc491e196c6043080c0c4c09eb441 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Apr 8 18:58:17 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu May 9 19:54:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd708545 eclass/vim-spell.eclass: support EAPI8 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/36166 Signed-off-by: Conrad Kostecki gentoo.org> eclass/vim-spell.eclass | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/eclass/vim-spell.eclass b/eclass/vim-spell.eclass index 855518d23e5b..607771ae8035 100644 --- a/eclass/vim-spell.eclass +++ b/eclass/vim-spell.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: vim-spell.eclass @@ -6,7 +6,7 @@ # Vim Maintainers # @AUTHOR: # Ciaran McCreesh -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Eclass for managing Vim spell files. # @DESCRIPTION: # How to make a vim spell file package using prebuilt spell lists @@ -39,15 +39,14 @@ # # # -# -# your@email.tld -# Your Name -# -# -# vim@gentoo.org -# Vim Maintainers -# -# +# +# your@email.tld +# Your Name +# +# +# vim@gentoo.org +# Vim Maintainers +# # # Vim spell files for French (fr). Supported character sets are # UTF-8 and latin1. @@ -64,7 +63,7 @@ # for another language rather than keeping them Gentoo-specific. case ${EAPI} in - 6|7) ;; + 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac