From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 92A36138334 for ; Tue, 16 Oct 2018 14:57:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 711D8E08A0; Tue, 16 Oct 2018 14:57:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4C78BE08A0 for ; Tue, 16 Oct 2018 14:57:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A3519335C8D for ; Tue, 16 Oct 2018 14:56:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 944F23F6 for ; Tue, 16 Oct 2018 14:56:56 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1539701806.60795be8abe553bb0ad59c7d3dc45e2cef218847.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/cmake-multilib.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 60795be8abe553bb0ad59c7d3dc45e2cef218847 X-VCS-Branch: master Date: Tue, 16 Oct 2018 14:56:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c78f53ce-74f5-4207-954c-e8f9a8a90b65 X-Archives-Hash: 37f124aee56947528bb481fac584248a commit: 60795be8abe553bb0ad59c7d3dc45e2cef218847 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Oct 16 14:34:28 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Oct 16 14:56:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60795be8 cmake-multilib.eclass: Drop support for EAPI 5 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/cmake-multilib.eclass | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/eclass/cmake-multilib.eclass b/eclass/cmake-multilib.eclass index 1ffb3e3f08f..7c65e11536b 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 # @AUTHOR: # Author: Michał Górny -# @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