diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-10-16 16:34:28 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-10-16 16:56:46 +0200 |
commit | 60795be8abe553bb0ad59c7d3dc45e2cef218847 (patch) | |
tree | 7553136be3f20424f3ec0852e8deb8bcec84d502 /eclass | |
parent | sys-apps/yarn: 0.10.1 version bump (diff) | |
download | gentoo-60795be8abe553bb0ad59c7d3dc45e2cef218847.tar.gz gentoo-60795be8abe553bb0ad59c7d3dc45e2cef218847.tar.bz2 gentoo-60795be8abe553bb0ad59c7d3dc45e2cef218847.zip |
cmake-multilib.eclass: Drop support for EAPI 5
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/cmake-multilib.eclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/cmake-multilib.eclass b/eclass/cmake-multilib.eclass index 1ffb3e3f08f2..7c65e11536b3 100644 --- a/eclass/cmake-multilib.eclass +++ b/eclass/cmake-multilib.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # @ECLASS: cmake-multilib.eclass @@ -6,7 +6,7 @@ # gx86-multilib team <multilib@gentoo.org> # @AUTHOR: # Author: Michał Górny <mgorny@gentoo.org> -# @SUPPORTED_EAPIS: 5 6 +# @SUPPORTED_EAPIS: 6 # @BLURB: cmake-utils wrapper for multilib builds # @DESCRIPTION: # The cmake-multilib.eclass provides a glue between cmake-utils.eclass(5) @@ -19,9 +19,8 @@ # in multilib-minimal, yet they ought to call appropriate cmake-utils # phase rather than 'default'. -# EAPI=5 is required for meaningful MULTILIB_USEDEP. case ${EAPI:-0} in - 5|6) ;; + 6) ;; *) die "EAPI=${EAPI} is not supported" ;; esac |