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 49CBF158043 for ; Thu, 18 Apr 2024 17:05:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 496BAE2A2D; Thu, 18 Apr 2024 17:05:01 +0000 (UTC) Received: from mail.levelnine.at (wiki.levelnine.at [IPv6:2a01:4f8:201:8724::15]) (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 B3556E29E6 for ; Thu, 18 Apr 2024 17:05:00 +0000 (UTC) Received: from mail.levelnine.at (localhost [IPv6:::1]) by mail.levelnine.at (Postfix) with ESMTPA id D629F650B3DF for ; Thu, 18 Apr 2024 19:04:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=levelnine.at; s=mail; t=1713459898; bh=o80NsEANjgCf8QVAj986Q2P4kK60Nu7zyDDHiIj672A=; h=Date:From:To:Subject; b=noStM8huhLDImGR5rOYcBx9T8qK2OXYWQYfE/odQrNFzqWDmpJ798KTmPFbCiUsES YiszZO2nn2EAvrmn530SRPws6igAGSjF7/mF8rxbX+i8BQRkiTBlHMELM0NMna6nFa 2J0MiLxHYzg+YLDBHE12ndNqlvDOVrSuFjRu7nyg= 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 Date: Thu, 18 Apr 2024 19:04:58 +0200 From: Michael Mair-Keimberger To: gentoo-dev@lists.gentoo.org Subject: [gentoo-dev] PATCH vim-spell: add support for EAPI8 Message-ID: X-Sender: mmk@levelnine.at Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Archives-Salt: b9834420-7db8-4f00-ab4e-c7dcb991a7d0 X-Archives-Hash: d00fc468efda99eabc03ba6da3d79430 This adds EAPI8 support in vim-spell.eclass. I haven't changed much, just fixed the indentation in the comments. Since there are still some ebuilds at EAPI6 i also couldn't remove EAPI6 support. (my plan was to bump them next, but then directly to EAPI8) see also: https://github.com/gentoo/gentoo/pull/36166 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 Regards Michael