Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 16 Oct 2018 14:57:03
Message-Id: 1539701806.60795be8abe553bb0ad59c7d3dc45e2cef218847.asturm@gentoo
1 commit: 60795be8abe553bb0ad59c7d3dc45e2cef218847
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 16 14:34:28 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 16 14:56:46 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60795be8
7
8 cmake-multilib.eclass: Drop support for EAPI 5
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 eclass/cmake-multilib.eclass | 7 +++----
13 1 file changed, 3 insertions(+), 4 deletions(-)
14
15 diff --git a/eclass/cmake-multilib.eclass b/eclass/cmake-multilib.eclass
16 index 1ffb3e3f08f..7c65e11536b 100644
17 --- a/eclass/cmake-multilib.eclass
18 +++ b/eclass/cmake-multilib.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2014 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: cmake-multilib.eclass
25 @@ -6,7 +6,7 @@
26 # gx86-multilib team <multilib@g.o>
27 # @AUTHOR:
28 # Author: Michał Górny <mgorny@g.o>
29 -# @SUPPORTED_EAPIS: 5 6
30 +# @SUPPORTED_EAPIS: 6
31 # @BLURB: cmake-utils wrapper for multilib builds
32 # @DESCRIPTION:
33 # The cmake-multilib.eclass provides a glue between cmake-utils.eclass(5)
34 @@ -19,9 +19,8 @@
35 # in multilib-minimal, yet they ought to call appropriate cmake-utils
36 # phase rather than 'default'.
37
38 -# EAPI=5 is required for meaningful MULTILIB_USEDEP.
39 case ${EAPI:-0} in
40 - 5|6) ;;
41 + 6) ;;
42 *) die "EAPI=${EAPI} is not supported" ;;
43 esac