From: Michał Górny Date: Sat, 17 Mar 2018 23:20:37 +0000 (+0100) Subject: git-r3.eclass: Ban EAPIs 0 through 3 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=8542b84fd65843c3dc93769b5b95798ee2a2f818;p=gentoo.git git-r3.eclass: Ban EAPIs 0 through 3 The code already uses USE dependencies which are not valid for EAPIs 0 and 1. Furthermore, according to qa-reports the eclass is not used in any EAPI older than 4. --- diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass index 279f03269314..c5c76232eb41 100644 --- a/eclass/git-r3.eclass +++ b/eclass/git-r3.eclass @@ -10,7 +10,10 @@ # git as remote repository. case "${EAPI:-0}" in - 0|1|2|3|4|5|6|7) + 0|1|2|3) + die "Unsupported EAPI=${EAPI} (obsolete) for ${ECLASS}" + ;; + 4|5|6|7) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"