Gentoo Archives: gentoo-dev

From: Conrad Kostecki <conikost@g.o>
To: gentoo-dev@l.g.o, gentoo-dev-announce@l.g.o
Subject: [gentoo-dev] [PATCH] Add EAPI=8 support
Date: Sun, 10 Apr 2022 19:23:02
Message-Id: 20220410192244.32387-1-conikost@gentoo.org
1 Signed-off-by: Conrad Kostecki <conikost@g.o>
2 ---
3 eclass/cdrom.eclass | 6 +++---
4 1 file changed, 3 insertions(+), 3 deletions(-)
5
6 diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass
7 index bae3888c6c5..81539e8560c 100644
8 --- a/eclass/cdrom.eclass
9 +++ b/eclass/cdrom.eclass
10 @@ -1,10 +1,10 @@
11 -# Copyright 1999-2021 Gentoo Authors
12 +# Copyright 1999-2022 Gentoo Authors
13 # Distributed under the terms of the GNU General Public License v2
14
15 # @ECLASS: cdrom.eclass
16 # @MAINTAINER:
17 # games@g.o
18 -# @SUPPORTED_EAPIS: 6 7
19 +# @SUPPORTED_EAPIS: 6 7 8
20 # @BLURB: Functions for CD-ROM handling
21 # @DESCRIPTION:
22 # Acquire CD(s) for those lovely CD-based emerges. Yes, this violates
23 @@ -16,7 +16,7 @@
24 # The functions are generally called in src_unpack.
25
26 case ${EAPI:-0} in
27 - [67]) ;;
28 + 6|7|8) ;;
29 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
30 esac
31
32 --
33 2.35.1

Replies

Subject Author
Re: [gentoo-dev] [PATCH] Add EAPI=8 support Matt Turner <mattst88@g.o>
Re: [gentoo-dev] [PATCH] Add EAPI=8 support James Le Cuirot <chewi@g.o>