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: Tue, 01 Feb 2022 18:23:31
Message-Id: 1643739789.9d53393b3e412a6d3458f065b31e6f867c02ed68.soap@gentoo
1 commit: 9d53393b3e412a6d3458f065b31e6f867c02ed68
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 1 18:23:09 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 1 18:23:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d53393b
7
8 usr-ldscript.eclass: remove EAPI 5
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 eclass/usr-ldscript.eclass | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/eclass/usr-ldscript.eclass b/eclass/usr-ldscript.eclass
16 index 2bf725abdd02..7842dfc643df 100644
17 --- a/eclass/usr-ldscript.eclass
18 +++ b/eclass/usr-ldscript.eclass
19 @@ -1,17 +1,17 @@
20 -# Copyright 2019-2021 Gentoo Authors
21 +# Copyright 2019-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: usr-ldscript.eclass
25 # @MAINTAINER:
26 # Toolchain Ninjas <toolchain@g.o>
27 -# @SUPPORTED_EAPIS: 5 6 7 8
28 +# @SUPPORTED_EAPIS: 6 7 8
29 # @BLURB: Defines the gen_usr_ldscript function.
30
31 if [[ -z ${_USR_LDSCRIPT_ECLASS} ]]; then
32 _USR_LDSCRIPT_ECLASS=1
33
34 case ${EAPI} in
35 - 5|6|7|8) ;;
36 + 6|7|8) ;;
37 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
38 esac