commit: f31fea7ce7cbb25115c2371d4de35576d415665f Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Tue Oct 8 15:31:45 2024 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Tue Oct 8 15:31:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f31fea7c
vim-spell.eclass: drop support for EAPI 6 Signed-off-by: David Seifert <soap <AT> gentoo.org> eclass/vim-spell.eclass | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/eclass/vim-spell.eclass b/eclass/vim-spell.eclass index 57bcb0dc8021..f9b496e5ffb0 100644 --- a/eclass/vim-spell.eclass +++ b/eclass/vim-spell.eclass @@ -6,7 +6,7 @@ # Vim Maintainers <[email protected]> # @AUTHOR: # Ciaran McCreesh <[email protected]> -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Eclass for managing Vim spell files. # @DESCRIPTION: # How to make a vim spell file package using prebuilt spell lists @@ -66,10 +66,6 @@ if [[ -z ${_VIM_SPELL_ECLASS} ]] ; then _VIM_SPELL_ECLASS=1 case ${EAPI} in - 6) - ewarn "${CATEGORY}/${PF}: ebuild uses ${ECLASS} with deprecated EAPI ${EAPI}!" - ewarn "${CATEGORY}/${PF}: Support will be removed on 2024-10-08. Please port to newer EAPI." - ;; 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac
