Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 17 Jul 2021 07:56:08
Message-Id: 1626508562.84b43bac4e545999e00c768bbcc908652eaf5502.slyfox@gentoo
1 commit: 84b43bac4e545999e00c768bbcc908652eaf5502
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 15 09:56:43 2021 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 17 07:56:02 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84b43bac
7
8 pax-utils.eclass: allow EAPI=8
9
10 CC: hardened <AT> gentoo.org
11 Closes: https://bugs.gentoo.org/802258
12 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
13
14 eclass/pax-utils.eclass | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/eclass/pax-utils.eclass b/eclass/pax-utils.eclass
18 index 9c4903d24b6..f48dcdafe01 100644
19 --- a/eclass/pax-utils.eclass
20 +++ b/eclass/pax-utils.eclass
21 @@ -7,7 +7,7 @@
22 # @AUTHOR:
23 # Author: Kevin F. Quinn <kevquinn@g.o>
24 # Author: Anthony G. Basile <blueness@g.o>
25 -# @SUPPORTED_EAPIS: 5 6 7
26 +# @SUPPORTED_EAPIS: 5 6 7 8
27 # @BLURB: functions to provide PaX markings for hardened kernels
28 # @DESCRIPTION:
29 #
30 @@ -22,7 +22,7 @@
31 # to contain either "PT", "XT" or "none". The default is none
32
33 case ${EAPI:-0} in
34 - [567]) ;;
35 + 5|6|7|8) ;;
36 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
37 esac