diff options
author | David Seifert <soap@gentoo.org> | 2024-10-08 17:31:34 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2024-10-08 17:31:34 +0200 |
commit | d5184aa89c525edc88ebf0df095c179dbab352fa (patch) | |
tree | 5f589a8371af105de6caf8b157ab3282ad7632cd /eclass | |
parent | ruby-utils.eclass: drop support for EAPI 5 and 6 (diff) | |
download | gentoo-d5184aa89c525edc88ebf0df095c179dbab352fa.tar.gz gentoo-d5184aa89c525edc88ebf0df095c179dbab352fa.tar.bz2 gentoo-d5184aa89c525edc88ebf0df095c179dbab352fa.zip |
strip-linguas.eclass: drop support for EAPI 5 and 6
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/strip-linguas.eclass | 6 |
1 files changed, 1 insertions, 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 <ulm@gentoo.org> # @AUTHOR: # Mike Frysinger <vapier@gentoo.org> -# @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 |