commit: 8ac2bdedf8c9fceaf746e56aeb79bab8a416b39a Author: Marek Szuba <marecki <AT> gentoo <DOT> org> AuthorDate: Wed Jul 14 11:01:05 2021 +0000 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org> CommitDate: Fri Jul 16 11:43:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ac2bded
fortran-2.eclass: support EAPI 8 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org> eclass/fortran-2.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index 0bb00f475a2..9d0c71703e4 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -7,7 +7,7 @@ # @AUTHOR: # Author Justin Lecher <[email protected]> # Test functions provided by Sebastien Fabbro and Kacper Kowalik -# @SUPPORTED_EAPIS: 5 6 7 +# @SUPPORTED_EAPIS: 5 6 7 8 # @BLURB: Simplify fortran compiler management # @DESCRIPTION: # If you need a fortran compiler, then you should be inheriting this eclass. @@ -31,7 +31,7 @@ inherit toolchain-funcs case ${EAPI:-0} in # not used in the eclass, but left for backward compatibility with legacy users 5|6) inherit eutils ;; - 7) ;; + 7|8) ;; *) die "EAPI=${EAPI} is not supported" ;; esac
