Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 23 Jun 2021 21:44:42
Message-Id: 1624484667.2de97ff4b3118af380cc727eaa5a6eb56e4cf14f.mgorny@gentoo
1 commit: 2de97ff4b3118af380cc727eaa5a6eb56e4cf14f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 20 09:40:11 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 23 21:44:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2de97ff4
7
8 distutils-r1.eclass: Enable EAPI 8
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 eclass/distutils-r1.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
16 index 7501f6540bb..cc0416fb1d9 100644
17 --- a/eclass/distutils-r1.eclass
18 +++ b/eclass/distutils-r1.eclass
19 @@ -7,7 +7,7 @@
20 # @AUTHOR:
21 # Author: Michał Górny <mgorny@g.o>
22 # Based on the work of: Krzysztof Pawlik <nelchael@g.o>
23 -# @SUPPORTED_EAPIS: 6 7
24 +# @SUPPORTED_EAPIS: 6 7 8
25 # @BLURB: A simple eclass to build Python packages using distutils.
26 # @DESCRIPTION:
27 # A simple eclass providing functions to build Python packages using
28 @@ -47,7 +47,7 @@ case "${EAPI:-0}" in
29 [0-5])
30 die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
31 ;;
32 - [6-7])
33 + [6-8])
34 ;;
35 *)
36 die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"