commit: e81e95bfd07d34b01192f4b650fcce72f0f88f50
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 19 12:59:55 2015 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 12:59:55 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e81e95bf
eclass/readme.gentoo-r1.eclass: Add support for older EAPIs as discussed with
ulm via IRC to let easier migration.
eclass/readme.gentoo-r1.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/readme.gentoo-r1.eclass b/eclass/readme.gentoo-r1.eclass
index d98a445..c076650 100644
--- a/eclass/readme.gentoo-r1.eclass
+++ b/eclass/readme.gentoo-r1.eclass
@@ -24,10 +24,10 @@ _README_GENTOO_ECLASS=1
inherit eutils
case "${EAPI:-0}" in
- 0|1|2|3|4|5)
+ 0|1|2|3)
die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
;;
- 6)
+ 4|5|6)
;;
*)
die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"