diff options
author | Sam James <sam@gentoo.org> | 2024-09-07 22:38:51 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-09-08 19:21:23 +0100 |
commit | d654f219ea2fc0a26718ec9ee512c98216e1d99a (patch) | |
tree | b86441cd34e5b8e06ae77856ff7eeaba706cadfe /eclass | |
parent | udev.eclass: add global-scope ewarn for deprecated < EAPI 7 (diff) | |
download | gentoo-d654f219ea2fc0a26718ec9ee512c98216e1d99a.tar.gz gentoo-d654f219ea2fc0a26718ec9ee512c98216e1d99a.tar.bz2 gentoo-d654f219ea2fc0a26718ec9ee512c98216e1d99a.zip |
vcs-clean.eclass: add global-scope ewarn for deprecated < EAPI 7
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vcs-clean.eclass | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/eclass/vcs-clean.eclass b/eclass/vcs-clean.eclass index e4c61ac7164a..719bdec17676 100644 --- a/eclass/vcs-clean.eclass +++ b/eclass/vcs-clean.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: vcs-clean.eclass @@ -9,14 +9,18 @@ # @SUPPORTED_EAPIS: 5 6 7 8 # @BLURB: helper functions to remove VCS directories +if [[ -z ${_VCS_CLEAN_ECLASS} ]] ; then +_VCS_CLEAN_ECLASS=1 + case ${EAPI} in - 5|6|7|8) ;; + 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 -if [[ -z ${_VCS_CLEAN_ECLASS} ]] ; then -_VCS_CLEAN_ECLASS=1 - # @FUNCTION: ecvs_clean # @USAGE: [list of dirs] # @DESCRIPTION: |