summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-07-19 22:44:50 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-08-03 13:13:51 +0200
commit0c2f0c93445b49b6a8a38f4a467e77f9132fc522 (patch)
treef5632c0363fba2b868d7d8e20cf6a27c525e6f8f /eclass
parentcheck-reqs.eclass: Support EAPI-8 (diff)
downloadgentoo-0c2f0c93445b49b6a8a38f4a467e77f9132fc522.tar.gz
gentoo-0c2f0c93445b49b6a8a38f4a467e77f9132fc522.tar.bz2
gentoo-0c2f0c93445b49b6a8a38f4a467e77f9132fc522.zip
check-reqs.eclass: Drop EAPI-4 and EAPI-5 support
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/check-reqs.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass
index 27ab1513aabe..c95ee0192c5c 100644
--- a/eclass/check-reqs.eclass
+++ b/eclass/check-reqs.eclass
@@ -7,7 +7,7 @@
# @AUTHOR:
# Bo Ørsted Andresen <zlin@gentoo.org>
# Original Author: Ciaran McCreesh <ciaranm@gentoo.org>
-# @SUPPORTED_EAPIS: 4 5 6 7 8
+# @SUPPORTED_EAPIS: 6 7 8
# @BLURB: Provides a uniform way of handling ebuilds with very high build requirements
# @DESCRIPTION:
# This eclass provides a uniform way of handling ebuilds which have very high
@@ -39,7 +39,7 @@
# probably degrade gracefully if they don't. Probably.
case ${EAPI} in
- 4|5|6|7|8) ;;
+ 6|7|8) ;;
*) die "${ECLASS}: EAPI=${EAPI:-0} is not supported" ;;
esac