diff options
author | Sam James <sam@gentoo.org> | 2024-09-07 22:36:12 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-09-08 19:21:07 +0100 |
commit | 226e01807ee7b16c451dcc063cf96560c612068b (patch) | |
tree | 87c4ec8ed46ab7f830d298aff74e67c2e5bc01d0 /eclass | |
parent | desktop.eclass: add global-scope ewarn for deprecated < EAPI 7 (diff) | |
download | gentoo-226e01807ee7b16c451dcc063cf96560c612068b.tar.gz gentoo-226e01807ee7b16c451dcc063cf96560c612068b.tar.bz2 gentoo-226e01807ee7b16c451dcc063cf96560c612068b.zip |
flag-o-matic.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/flag-o-matic.eclass | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass index c6b1ad80e12e..02cd2dcfc592 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.eclass @@ -10,14 +10,18 @@ # This eclass contains a suite of functions to help developers sanely # and safely manage toolchain flags in their builds. +if [[ -z ${_FLAG_O_MATIC_ECLASS} ]]; then +_FLAG_O_MATIC_ECLASS=1 + case ${EAPI} in - 6|7|8) ;; + 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 ${_FLAG_O_MATIC_ECLASS} ]]; then -_FLAG_O_MATIC_ECLASS=1 - inherit toolchain-funcs [[ ${EAPI} == 6 ]] && inherit eqawarn |