summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2021-07-15 10:56:43 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2021-07-17 08:56:02 +0100
commit84b43bac4e545999e00c768bbcc908652eaf5502 (patch)
treede156e3c3eb68252b481971d5fe579c6fc9c66df /eclass
parentdev-games/physfs: Patch to fix pkg-config libdir entry (diff)
downloadgentoo-84b43bac4e545999e00c768bbcc908652eaf5502.tar.gz
gentoo-84b43bac4e545999e00c768bbcc908652eaf5502.tar.bz2
gentoo-84b43bac4e545999e00c768bbcc908652eaf5502.zip
pax-utils.eclass: allow EAPI=8
CC: hardened@gentoo.org Closes: https://bugs.gentoo.org/802258 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/pax-utils.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/pax-utils.eclass b/eclass/pax-utils.eclass
index 9c4903d24b61..f48dcdafe015 100644
--- a/eclass/pax-utils.eclass
+++ b/eclass/pax-utils.eclass
@@ -7,7 +7,7 @@
# @AUTHOR:
# Author: Kevin F. Quinn <kevquinn@gentoo.org>
# Author: Anthony G. Basile <blueness@gentoo.org>
-# @SUPPORTED_EAPIS: 5 6 7
+# @SUPPORTED_EAPIS: 5 6 7 8
# @BLURB: functions to provide PaX markings for hardened kernels
# @DESCRIPTION:
#
@@ -22,7 +22,7 @@
# to contain either "PT", "XT" or "none". The default is none
case ${EAPI:-0} in
- [567]) ;;
+ 5|6|7|8) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac