From 84b43bac4e545999e00c768bbcc908652eaf5502 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Thu, 15 Jul 2021 10:56:43 +0100 Subject: pax-utils.eclass: allow EAPI=8 CC: hardened@gentoo.org Closes: https://bugs.gentoo.org/802258 Signed-off-by: Sergei Trofimovich --- eclass/pax-utils.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass') 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 # Author: Anthony G. Basile -# @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 -- cgit v1.2.3-65-gdbad