diff options
author | Justin Lecher <jlec@gentoo.org> | 2018-10-28 06:20:48 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2018-10-28 06:21:10 +0000 |
commit | adbf4bda26a7cd07596d98f51d110cb322ede737 (patch) | |
tree | 3f9956a6e9416e4a3a6a42e04ea22a29597f5cb5 /eclass | |
parent | sci-libs/gsl: Version Bump (diff) | |
download | sci-adbf4bda26a7cd07596d98f51d110cb322ede737.tar.gz sci-adbf4bda26a7cd07596d98f51d110cb322ede737.tar.bz2 sci-adbf4bda26a7cd07596d98f51d110cb322ede737.zip |
Enable EAPI=7
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/alternatives-2.eclass | 2 | ||||
-rw-r--r-- | eclass/numeric-int64-multibuild.eclass | 2 | ||||
-rw-r--r-- | eclass/numeric.eclass | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/eclass/alternatives-2.eclass b/eclass/alternatives-2.eclass index 4263fef8e..7237f0db3 100644 --- a/eclass/alternatives-2.eclass +++ b/eclass/alternatives-2.eclass @@ -23,7 +23,7 @@ case "${EAPI:-0}" in 0|1|2|3|4) die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" ;; - 5|6) + 5|6|7) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" diff --git a/eclass/numeric-int64-multibuild.eclass b/eclass/numeric-int64-multibuild.eclass index 6403ee79c..f720356a3 100644 --- a/eclass/numeric-int64-multibuild.eclass +++ b/eclass/numeric-int64-multibuild.eclass @@ -19,7 +19,7 @@ if [[ ! ${_NUMERIC_INT64_MULTILIB_ECLASS} ]]; then case ${EAPI:-0} in 5) inherit multilib ;; - 6) ;; + 6|7) ;; *) die "EAPI=${EAPI} is not supported" ;; esac diff --git a/eclass/numeric.eclass b/eclass/numeric.eclass index cb7354542..431b7afec 100644 --- a/eclass/numeric.eclass +++ b/eclass/numeric.eclass @@ -14,7 +14,7 @@ if [[ ! ${_NUMERIC_ECLASS} ]]; then case ${EAPI:-0} in 0|1|2|3|4|5) inherit multilib ;; - 6) ;; + 6|7) ;; *) die "EAPI=${EAPI} is not supported" ;; esac |