Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: eclass/
Date: Sun, 28 Oct 2018 06:21:20
Message-Id: 1540707670.adbf4bda26a7cd07596d98f51d110cb322ede737.jlec@gentoo
1 commit: adbf4bda26a7cd07596d98f51d110cb322ede737
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 28 06:20:48 2018 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 28 06:21:10 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=adbf4bda
7
8 Enable EAPI=7
9
10 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
11
12 eclass/alternatives-2.eclass | 2 +-
13 eclass/numeric-int64-multibuild.eclass | 2 +-
14 eclass/numeric.eclass | 2 +-
15 3 files changed, 3 insertions(+), 3 deletions(-)
16
17 diff --git a/eclass/alternatives-2.eclass b/eclass/alternatives-2.eclass
18 index 4263fef8e..7237f0db3 100644
19 --- a/eclass/alternatives-2.eclass
20 +++ b/eclass/alternatives-2.eclass
21 @@ -23,7 +23,7 @@ case "${EAPI:-0}" in
22 0|1|2|3|4)
23 die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
24 ;;
25 - 5|6)
26 + 5|6|7)
27 ;;
28 *)
29 die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"
30
31 diff --git a/eclass/numeric-int64-multibuild.eclass b/eclass/numeric-int64-multibuild.eclass
32 index 6403ee79c..f720356a3 100644
33 --- a/eclass/numeric-int64-multibuild.eclass
34 +++ b/eclass/numeric-int64-multibuild.eclass
35 @@ -19,7 +19,7 @@ if [[ ! ${_NUMERIC_INT64_MULTILIB_ECLASS} ]]; then
36 case ${EAPI:-0} in
37 5)
38 inherit multilib ;;
39 - 6) ;;
40 + 6|7) ;;
41 *) die "EAPI=${EAPI} is not supported" ;;
42 esac
43
44
45 diff --git a/eclass/numeric.eclass b/eclass/numeric.eclass
46 index cb7354542..431b7afec 100644
47 --- a/eclass/numeric.eclass
48 +++ b/eclass/numeric.eclass
49 @@ -14,7 +14,7 @@ if [[ ! ${_NUMERIC_ECLASS} ]]; then
50 case ${EAPI:-0} in
51 0|1|2|3|4|5)
52 inherit multilib ;;
53 - 6) ;;
54 + 6|7) ;;
55 *) die "EAPI=${EAPI} is not supported" ;;
56 esac