Gentoo Archives: gentoo-dev

From: James Le Cuirot <chewi@g.o>
To: gentoo-dev <gentoo-dev@l.g.o>
Cc: Apache project <apache-bugs@g.o>, James Le Cuirot <chewi@g.o>
Subject: [gentoo-dev] [PATCH 1/3] db-use.eclass: Drop support for EAPI 5 and 6
Date: Mon, 12 Dec 2022 21:50:36
Message-Id: 20221212215004.7445-1-chewi@gentoo.org
1 The last consumers have been dropped from the gentoo repo.
2
3 Signed-off-by: James Le Cuirot <chewi@g.o>
4 ---
5 eclass/db-use.eclass | 3 +--
6 1 file changed, 1 insertion(+), 2 deletions(-)
7
8 diff --git a/eclass/db-use.eclass b/eclass/db-use.eclass
9 index 55e72286fda4..3e5d6f63fa2e 100644
10 --- a/eclass/db-use.eclass
11 +++ b/eclass/db-use.eclass
12 @@ -8,7 +8,7 @@
13 # maintainer-needed@g.o
14 # @AUTHOR:
15 # Paul de Vrieze <pauldv@g.o>
16 -# @SUPPORTED_EAPIS: 5 6 7 8
17 +# @SUPPORTED_EAPIS: 7 8
18 # @BLURB: This is a common location for functions that aid the use of sys-libs/db
19 # @DESCRIPTION:
20 # This eclass is designed to provide helpful functions for depending on
21 @@ -16,7 +16,6 @@
22
23 # multilib is used for get_libname in all EAPI
24 case ${EAPI} in
25 - 5|6) inherit eapi7-ver ;& # fallthrough
26 7|8) inherit multilib ;;
27 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
28 esac
29 --
30 2.38.1

Replies