Gentoo Archives: gentoo-dev

From: David Seifert <soap@g.o>
To: gentoo-dev@l.g.o
Cc: David Seifert <soap@g.o>
Subject: [gentoo-dev] [PATCH 05/22] eapi8-dosym.eclass: remove EAPI 5, 6
Date: Tue, 14 Mar 2023 20:00:06
Message-Id: 20230314195826.35239-5-soap@gentoo.org
In Reply to: [gentoo-dev] [PATCH 01/22] apache-module.eclass: remove EAPI 5 by David Seifert
1 Signed-off-by: David Seifert <soap@g.o>
2 ---
3 eclass/eapi8-dosym.eclass | 8 ++++----
4 1 file changed, 4 insertions(+), 4 deletions(-)
5
6 diff --git a/eclass/eapi8-dosym.eclass b/eclass/eapi8-dosym.eclass
7 index 52f0ffe3e62b..4e3977ef54cf 100644
8 --- a/eclass/eapi8-dosym.eclass
9 +++ b/eclass/eapi8-dosym.eclass
10 @@ -1,4 +1,4 @@
11 -# Copyright 2020 Gentoo Authors
12 +# Copyright 2020-2023 Gentoo Authors
13 # Distributed under the terms of the GNU General Public License v2
14
15 # @ECLASS: eapi8-dosym.eclass
16 @@ -6,7 +6,7 @@
17 # PMS team <pms@g.o>
18 # @AUTHOR:
19 # Ulrich Müller <ulm@g.o>
20 -# @SUPPORTED_EAPIS: 5 6 7
21 +# @SUPPORTED_EAPIS: 7
22 # @BLURB: Testing implementation of EAPI 8 dosym -r option
23 # @DESCRIPTION:
24 # A stand-alone implementation of the dosym command aimed for EAPI 8.
25 @@ -17,8 +17,8 @@
26 # https://bugs.gentoo.org/708360
27
28 case ${EAPI} in
29 - 5|6|7) ;;
30 - *) die "${ECLASS}: EAPI=${EAPI:-0} not supported" ;;
31 + 7) ;;
32 + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
33 esac
34
35 # @FUNCTION: _dosym8_canonicalize
36 --
37 2.40.0