Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 16 Jul 2021 11:43:48
Message-Id: 1626435814.8ac2bdedf8c9fceaf746e56aeb79bab8a416b39a.marecki@gentoo
1 commit: 8ac2bdedf8c9fceaf746e56aeb79bab8a416b39a
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 14 11:01:05 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 11:43:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ac2bded
7
8 fortran-2.eclass: support EAPI 8
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 eclass/fortran-2.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass
16 index 0bb00f475a2..9d0c71703e4 100644
17 --- a/eclass/fortran-2.eclass
18 +++ b/eclass/fortran-2.eclass
19 @@ -7,7 +7,7 @@
20 # @AUTHOR:
21 # Author Justin Lecher <jlec@g.o>
22 # Test functions provided by Sebastien Fabbro and Kacper Kowalik
23 -# @SUPPORTED_EAPIS: 5 6 7
24 +# @SUPPORTED_EAPIS: 5 6 7 8
25 # @BLURB: Simplify fortran compiler management
26 # @DESCRIPTION:
27 # If you need a fortran compiler, then you should be inheriting this eclass.
28 @@ -31,7 +31,7 @@ inherit toolchain-funcs
29 case ${EAPI:-0} in
30 # not used in the eclass, but left for backward compatibility with legacy users
31 5|6) inherit eutils ;;
32 - 7) ;;
33 + 7|8) ;;
34 *) die "EAPI=${EAPI} is not supported" ;;
35 esac