Gentoo Archives: gentoo-dev

From: John Helmert III <ajak@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] [PATCH] mount-boot.eclass: support EAPI 8
Date: Sun, 12 Dec 2021 19:57:10
Message-Id: 20211212195638.3780787-1-ajak@gentoo.org
1 Signed-off-by: John Helmert III <ajak@g.o>
2 ---
3 eclass/mount-boot.eclass | 4 ++--
4 1 file changed, 2 insertions(+), 2 deletions(-)
5
6 diff --git a/eclass/mount-boot.eclass b/eclass/mount-boot.eclass
7 index 2b07160231a6..3111d9dcb9b5 100644
8 --- a/eclass/mount-boot.eclass
9 +++ b/eclass/mount-boot.eclass
10 @@ -4,7 +4,7 @@
11 # @ECLASS: mount-boot.eclass
12 # @MAINTAINER:
13 # base-system@g.o
14 -# @SUPPORTED_EAPIS: 6 7
15 +# @SUPPORTED_EAPIS: 6 7 8
16 # @BLURB: functions for packages that install files into /boot
17 # @DESCRIPTION:
18 # This eclass is really only useful for bootloaders.
19 @@ -14,7 +14,7 @@
20 # error if it can't. It does nothing if /boot isn't a separate partition.
21
22 case ${EAPI:-0} in
23 - 6|7) ;;
24 + 6|7|8) ;;
25 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
26 esac
27
28 --
29 2.34.1