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:55:57
Message-Id: 1535529332.58228e9d709dcb2e3174daf75f3d5086b2451a87.pinkbyte@gentoo
1 commit: 58228e9d709dcb2e3174daf75f3d5086b2451a87
2 Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 29 07:55:32 2018 +0000
4 Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 29 07:55:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58228e9d
7
8 leechcraft.eclass: add support for EAPI 7
9
10 eclass/leechcraft.eclass | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/eclass/leechcraft.eclass b/eclass/leechcraft.eclass
14 index 8e3c69f8c61..16b4f8d4c93 100644
15 --- a/eclass/leechcraft.eclass
16 +++ b/eclass/leechcraft.eclass
17 @@ -7,7 +7,7 @@
18 # @AUTHOR:
19 # 0xd34df00d@×××××.com
20 # NightNord@××××××.ru
21 -# @SUPPORTED_EAPIS: 6
22 +# @SUPPORTED_EAPIS: 6 7
23 # @BLURB: Common functions and setup utilities for the LeechCraft app
24 # @DESCRIPTION:
25 # The leechcraft eclass contains a common set of functions and steps
26 @@ -22,7 +22,7 @@
27 # Only EAPI >=6 is supported
28
29 case ${EAPI:-0} in
30 - 6) ;;
31 + 6|7) ;;
32 *) die "EAPI not supported, bug ebuild mantainer" ;;
33 esac