Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 30 Jan 2016 15:47:14
Message-Id: 1454168825.a5596388fbb1521d2b8e87c7357cc026909b0544.jlec@gentoo
1 commit: a5596388fbb1521d2b8e87c7357cc026909b0544
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 30 15:45:46 2016 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 30 15:47:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5596388
7
8 fortran-2.eclass: Fix fortran-2_pkg_setup() for EAPI=6
9
10 case statement ignored EAPI > 5
11
12 Gentoo-Bugs: https://bugs.gentoo.org/show_bug.cgi?id=573368
13
14 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
15
16 eclass/fortran-2.eclass | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass
20 index 8627965..66b8100 100644
21 --- a/eclass/fortran-2.eclass
22 +++ b/eclass/fortran-2.eclass
23 @@ -278,7 +278,7 @@ fortran-2_pkg_setup() {
24 eqawarn "Please migrate your package to a higher EAPI"
25 eqawarn "or file a bug at https://bugs.gentoo.org"
26 _fortran-2_pkg_setup ;;
27 - 4|5)
28 + *)
29 if [[ ${MERGE_TYPE} != binary ]]; then
30 _fortran-2_pkg_setup
31 fi