commit: 7f72da569334e2e7c0af86eb7362ca54c0d2ff48
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 3 06:52:16 2018 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Jun 8 07:08:28 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f72da56
readme.gentoo-r1.eclass: Support EAPI 7.
No changes appear to be necessary, other than updating the case
statement.
eclass/readme.gentoo-r1.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/readme.gentoo-r1.eclass b/eclass/readme.gentoo-r1.eclass
index a9f91cb10e3..78cbead639d 100644
--- a/eclass/readme.gentoo-r1.eclass
+++ b/eclass/readme.gentoo-r1.eclass
@@ -23,7 +23,7 @@ case "${EAPI:-0}" in
0|1|2|3)
die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
;;
- 4|5|6)
+ 4|5|6|7)
;;
*)
die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"