commit: 18a01a9ed1bf8132464a0104344b976804912e4d Author: David Michael <fedora.dm0 <AT> gmail <DOT> com> AuthorDate: Thu Jun 24 17:51:07 2021 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Mon Jun 28 17:23:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18a01a9e
eapi7-ver.eclass: update EAPI 8 error message Signed-off-by: David Michael <fedora.dm0 <AT> gmail.com> Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/21409 eclass/eapi7-ver.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/eapi7-ver.eclass b/eclass/eapi7-ver.eclass index 8f13fc9af76..a23e76ad3ee 100644 --- a/eclass/eapi7-ver.eclass +++ b/eclass/eapi7-ver.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: eapi7-ver.eclass @@ -58,7 +58,7 @@ case ${EAPI:-0} in 0|1|2|3|4|5|6) ;; - 7) die "${ECLASS}: EAPI=${EAPI} includes all functions from this eclass" ;; + 7|8) die "${ECLASS}: EAPI=${EAPI} includes all functions from this eclass" ;; *) die "${ECLASS}: EAPI=${EAPI} unknown" ;; esac