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: Mon, 07 May 2018 07:43:45
Message-Id: 1525679010.bc8e16c54c119aafcc0cbf498412f9168537581d.mgorny@gentoo
1 commit: bc8e16c54c119aafcc0cbf498412f9168537581d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 3 13:50:18 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 7 07:43:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc8e16c5
7
8 python-single-r1.eclass: Enable EAPI 7 (no changes)
9
10 eclass/python-single-r1.eclass | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/eclass/python-single-r1.eclass b/eclass/python-single-r1.eclass
14 index 3762d3d6e99..8c45c391ebb 100644
15 --- a/eclass/python-single-r1.eclass
16 +++ b/eclass/python-single-r1.eclass
17 @@ -1,4 +1,4 @@
18 -# Copyright 1999-2017 Gentoo Foundation
19 +# Copyright 1999-2018 Gentoo Foundation
20 # Distributed under the terms of the GNU General Public License v2
21
22 # @ECLASS: python-single-r1.eclass
23 @@ -34,7 +34,7 @@ case "${EAPI:-0}" in
24 0|1|2|3|4)
25 die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
26 ;;
27 - 5|6)
28 + 5|6|7)
29 # EAPI=5 is required for sane USE_EXPAND dependencies
30 ;;
31 *)