diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-12-19 13:59:55 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-12-19 13:59:55 +0100 |
commit | e81e95bfd07d34b01192f4b650fcce72f0f88f50 (patch) | |
tree | 0addc272a2b5859e85017747a0f84062b504d3e2 | |
parent | dev-libs/libnl: Stable for HPPA PPC64 (bug #568052). (diff) | |
download | gentoo-e81e95bfd07d34b01192f4b650fcce72f0f88f50.tar.gz gentoo-e81e95bfd07d34b01192f4b650fcce72f0f88f50.tar.bz2 gentoo-e81e95bfd07d34b01192f4b650fcce72f0f88f50.zip |
eclass/readme.gentoo-r1.eclass: Add support for older EAPIs as discussed with ulm via IRC to let easier migration.
-rw-r--r-- | eclass/readme.gentoo-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/readme.gentoo-r1.eclass b/eclass/readme.gentoo-r1.eclass index d98a445d4ea9..c07665072c2b 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}" |