diff options
author | 2024-09-07 22:38:39 +0100 | |
---|---|---|
committer | 2024-09-08 19:21:21 +0100 | |
commit | 9624aabd7852cde30d5c4392c5b05d51921f1a7a (patch) | |
tree | 691b30f3f730b39f111b349e40aa993486fc2009 /eclass | |
parent | systemd.eclass: add global-scope ewarn for deprecated < EAPI 7 (diff) | |
download | gentoo-9624aabd7852cde30d5c4392c5b05d51921f1a7a.tar.gz gentoo-9624aabd7852cde30d5c4392c5b05d51921f1a7a.tar.bz2 gentoo-9624aabd7852cde30d5c4392c5b05d51921f1a7a.zip |
tmpfiles.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/tmpfiles.eclass | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass index 39650401a6a0..63889a275fef 100644 --- a/eclass/tmpfiles.eclass +++ b/eclass/tmpfiles.eclass @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Gentoo Authors +# Copyright 2016-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: tmpfiles.eclass @@ -55,9 +55,13 @@ if [[ -z ${_TMPFILES_ECLASS} ]]; then _TMPFILES_ECLASS=1 -case "${EAPI}" in -5|6|7|8) ;; -*) die "API is undefined for EAPI ${EAPI}" ;; +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 # @ECLASS_VARIABLE: TMPFILES_OPTIONAL |