commit: d5184aa89c525edc88ebf0df095c179dbab352fa Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Tue Oct 8 15:31:34 2024 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Tue Oct 8 15:31:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5184aa8
strip-linguas.eclass: drop support for EAPI 5 and 6 Signed-off-by: David Seifert <soap <AT> gentoo.org> eclass/strip-linguas.eclass | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/eclass/strip-linguas.eclass b/eclass/strip-linguas.eclass index b31f414c87c3..355bdcc6cd19 100644 --- a/eclass/strip-linguas.eclass +++ b/eclass/strip-linguas.eclass @@ -6,17 +6,13 @@ # Ulrich Müller <[email protected]> # @AUTHOR: # Mike Frysinger <[email protected]> -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: convenience function for LINGUAS support if [[ -z ${_STRIP_LINGUAS_ECLASS} ]]; then _STRIP_LINGUAS_ECLASS=1 case ${EAPI} in - 5|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
