Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 28 Feb 2022 18:00:08
Message-Id: 1646071141.e287fa31d05df719242ccdc9a4efe3a73adf22cb.ulm@gentoo
1 commit: e287fa31d05df719242ccdc9a4efe3a73adf22cb
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 22 09:02:58 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 28 17:59:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e287fa31
7
8 subversion.eclass: Support EAPI 8
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 eclass/subversion.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/subversion.eclass b/eclass/subversion.eclass
16 index 2a2297678ad1..8b12382a649d 100644
17 --- a/eclass/subversion.eclass
18 +++ b/eclass/subversion.eclass
19 @@ -6,7 +6,7 @@
20 # Akinori Hattori <hattya@g.o>
21 # @AUTHOR:
22 # Original Author: Akinori Hattori <hattya@g.o>
23 -# @SUPPORTED_EAPIS: 6 7
24 +# @SUPPORTED_EAPIS: 6 7 8
25 # @BLURB: Fetch software sources from subversion repositories
26 # @DESCRIPTION:
27 # The subversion eclass provides functions to fetch software sources
28 @@ -15,7 +15,7 @@
29 ESVN="${ECLASS}"
30
31 case ${EAPI} in
32 - 6|7) inherit estack ;;
33 + 6|7|8) inherit estack ;;
34 *) die "${ESVN}: EAPI ${EAPI:-0} is not supported" ;;
35 esac