Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 17 Mar 2023 22:04:48
Message-Id: 1679090660.ef47037c0df3bd254d6fe1601c34d24316762fa3.soap@gentoo
1 commit: ef47037c0df3bd254d6fe1601c34d24316762fa3
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 17 22:04:20 2023 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 22:04:20 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef47037c
7
8 libtool.eclass: remove EAPI 5
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 eclass/libtool.eclass | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/eclass/libtool.eclass b/eclass/libtool.eclass
16 index a38f41588289..9797b22aabff 100644
17 --- a/eclass/libtool.eclass
18 +++ b/eclass/libtool.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2021 Gentoo Authors
21 +# Copyright 1999-2023 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: libtool.eclass
25 @@ -17,10 +17,10 @@
26 if [[ -z ${_LIBTOOL_ECLASS} ]]; then
27 _LIBTOOL_ECLASS=1
28
29 -case ${EAPI:-0} in
30 - 5|6) DEPEND=">=app-portage/elt-patches-20170815" ;;
31 +case ${EAPI} in
32 + 6) DEPEND=">=app-portage/elt-patches-20170815" ;;
33 7|8) BDEPEND=">=app-portage/elt-patches-20170815" ;;
34 - *) die "${ECLASS}: EAPI ${EAPI} not supported" ;;
35 + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
36 esac
37
38 inherit toolchain-funcs