diff options
author | David Seifert <soap@gentoo.org> | 2024-10-08 17:31:41 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2024-10-08 17:31:41 +0200 |
commit | 49aff324fb4fe754e663f0979741c1139fb5ce42 (patch) | |
tree | 7a830171bc4d71067845505c9b2d7d256be4f5c1 | |
parent | udev.eclass: drop support for EAPI 5 and 6 (diff) | |
download | gentoo-49aff324fb4fe754e663f0979741c1139fb5ce42.tar.gz gentoo-49aff324fb4fe754e663f0979741c1139fb5ce42.tar.bz2 gentoo-49aff324fb4fe754e663f0979741c1139fb5ce42.zip |
vcs-clean.eclass: drop support for EAPI 5 and 6
Signed-off-by: David Seifert <soap@gentoo.org>
-rw-r--r-- | eclass/vcs-clean.eclass | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/eclass/vcs-clean.eclass b/eclass/vcs-clean.eclass index 719bdec17676..b9282facd83c 100644 --- a/eclass/vcs-clean.eclass +++ b/eclass/vcs-clean.eclass @@ -6,17 +6,13 @@ # base-system@gentoo.org # @AUTHOR: # Benedikt Böhm <hollow@gentoo.org> -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: helper functions to remove VCS directories if [[ -z ${_VCS_CLEAN_ECLASS} ]] ; then _VCS_CLEAN_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 |