diff options
author | 2024-09-07 22:36:15 +0100 | |
---|---|---|
committer | 2024-09-08 19:21:08 +0100 | |
commit | 0a10169e25ad2c52b558419f8cd49640c79bfa7e (patch) | |
tree | 6902dc57e4ffdfa760706a540571051542cffed7 /eclass | |
parent | flag-o-matic.eclass: add global-scope ewarn for deprecated < EAPI 7 (diff) | |
download | gentoo-0a10169e25ad2c52b558419f8cd49640c79bfa7e.tar.gz gentoo-0a10169e25ad2c52b558419f8cd49640c79bfa7e.tar.bz2 gentoo-0a10169e25ad2c52b558419f8cd49640c79bfa7e.zip |
fortran-2.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/fortran-2.eclass | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index 855dcba59a39..5e2ce1fc68e4 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: fortran-2.eclass @@ -26,14 +26,18 @@ # # FORTRAN_NEED_OPENMP=1 +if [[ -z ${_FORTRAN_2_ECLASS} ]]; then +_FORTRAN_2_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 ${_FORTRAN_2_ECLASS} ]]; then -_FORTRAN_2_ECLASS=1 - inherit toolchain-funcs # @ECLASS_VARIABLE: FORTRAN_NEED_OPENMP |