summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--eclass/portability.eclass6
1 files changed, 6 insertions, 0 deletions
diff --git a/eclass/portability.eclass b/eclass/portability.eclass
index 3b085d6c4e70..1b3c3952f831 100644
--- a/eclass/portability.eclass
+++ b/eclass/portability.eclass
@@ -7,6 +7,12 @@
# @AUTHOR:
# Diego Pettenò <flameeyes@gentoo.org>
# @BLURB: This eclass is created to avoid using non-portable GNUisms inside ebuilds
+# @SUPPORTED_EAPIS: 5 6 7
+
+case ${EAPI:-0} in
+ [567]) ;;
+ *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
+esac
if [[ -z ${_PORTABILITY_ECLASS} ]]; then
_PORTABILITY_ECLASS=1