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:37
Message-Id: 1624484653.ae0c1a04d9dce9a088b544faa32fa047cc3c410a.mgorny@gentoo
1 commit: ae0c1a04d9dce9a088b544faa32fa047cc3c410a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 20 07:28:26 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 23 21:44:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae0c1a04
7
8 python-any-r1.eclass: Enable EAPI 8
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 eclass/python-any-r1.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/python-any-r1.eclass b/eclass/python-any-r1.eclass
16 index 2f38155c39f..eaae5379b73 100644
17 --- a/eclass/python-any-r1.eclass
18 +++ b/eclass/python-any-r1.eclass
19 @@ -7,7 +7,7 @@
20 # @AUTHOR:
21 # Author: Michał Górny <mgorny@g.o>
22 # Based on work of: Krzysztof Pawlik <nelchael@g.o>
23 -# @SUPPORTED_EAPIS: 6 7
24 +# @SUPPORTED_EAPIS: 6 7 8
25 # @BLURB: An eclass for packages having build-time dependency on Python.
26 # @DESCRIPTION:
27 # A minimal eclass for packages which need any Python interpreter
28 @@ -39,7 +39,7 @@
29
30 case "${EAPI:-0}" in
31 [0-5]) die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" ;;
32 - [6-7]) ;;
33 + [6-8]) ;;
34 *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" ;;
35 esac