summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJason Zaman <perfinion@gentoo.org>2018-09-17 19:18:37 +0800
committerJason Zaman <perfinion@gentoo.org>2018-09-22 00:05:36 +0800
commit2869e6c953397db6eda69ebe1769b30beea2e133 (patch)
tree70f82dfd97c3efb995cf330748375e6107cfa2f9 /eclass
parentapp-text/master-pdf-editor: version bump to 5.1.42 (diff)
downloadgentoo-2869e6c953397db6eda69ebe1769b30beea2e133.tar.gz
gentoo-2869e6c953397db6eda69ebe1769b30beea2e133.tar.bz2
gentoo-2869e6c953397db6eda69ebe1769b30beea2e133.zip
check-reqs.eclass: update to EAPI7
Signed-off-by: Jason Zaman <perfinion@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 d1ed395c8b13..689944c87700 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: 0 1 2 3 4 5 6
+# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7
# @BLURB: Provides a uniform way of handling ebuild which have very high build requirements
# @DESCRIPTION:
# This eclass provides a uniform way of handling ebuilds which have very high
@@ -63,7 +63,7 @@ if [[ ! ${_CHECK_REQS_ECLASS_} ]]; then
EXPORT_FUNCTIONS pkg_setup
case "${EAPI:-0}" in
0|1|2|3) ;;
- 4|5|6) EXPORT_FUNCTIONS pkg_pretend ;;
+ 4|5|6|7) EXPORT_FUNCTIONS pkg_pretend ;;
*) die "EAPI=${EAPI} is not supported" ;;
esac