Gentoo Archives: gentoo-commits

From: Sergey Popov <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 29 Aug 2018 07:58:20
Message-Id: 1535529422.03cf03ea4a0c12f9e1ae45a679d0006cd57077ee.pinkbyte@gentoo
1 commit: 03cf03ea4a0c12f9e1ae45a679d0006cd57077ee
2 Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 29 07:57:02 2018 +0000
4 Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 29 07:57:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03cf03ea
7
8 Revert "leechcraft.eclass: add support for EAPI 7"
9
10 This reverts commit 58228e9d709dcb2e3174daf75f3d5086b2451a87.
11
12 cmake-utils eclass is not available for EAPI 7 now,
13 so we can not use it in leechcraft eclass
14
15 eclass/leechcraft.eclass | 4 ++--
16 1 file changed, 2 insertions(+), 2 deletions(-)
17
18 diff --git a/eclass/leechcraft.eclass b/eclass/leechcraft.eclass
19 index 16b4f8d4c93..8e3c69f8c61 100644
20 --- a/eclass/leechcraft.eclass
21 +++ b/eclass/leechcraft.eclass
22 @@ -7,7 +7,7 @@
23 # @AUTHOR:
24 # 0xd34df00d@×××××.com
25 # NightNord@××××××.ru
26 -# @SUPPORTED_EAPIS: 6 7
27 +# @SUPPORTED_EAPIS: 6
28 # @BLURB: Common functions and setup utilities for the LeechCraft app
29 # @DESCRIPTION:
30 # The leechcraft eclass contains a common set of functions and steps
31 @@ -22,7 +22,7 @@
32 # Only EAPI >=6 is supported
33
34 case ${EAPI:-0} in
35 - 6|7) ;;
36 + 6) ;;
37 *) die "EAPI not supported, bug ebuild mantainer" ;;
38 esac