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 5B8DF138335 for ; Sun, 28 Oct 2018 06:21:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08ECEE0919; Sun, 28 Oct 2018 06:21:19 +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 CA611E0919 for ; Sun, 28 Oct 2018 06:21:18 +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 D8C47335C58 for ; Sun, 28 Oct 2018 06:21:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F613449 for ; Sun, 28 Oct 2018 06:21:15 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1540707670.adbf4bda26a7cd07596d98f51d110cb322ede737.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: eclass/ X-VCS-Repository: proj/sci X-VCS-Files: eclass/alternatives-2.eclass eclass/numeric-int64-multibuild.eclass eclass/numeric.eclass X-VCS-Directories: eclass/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: adbf4bda26a7cd07596d98f51d110cb322ede737 X-VCS-Branch: master Date: Sun, 28 Oct 2018 06:21:15 +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: 86adf3a7-2301-45b0-b4c3-55dce34bca9d X-Archives-Hash: 5bc5d0af394aaaf01a0b3aa3790c71cd commit: adbf4bda26a7cd07596d98f51d110cb322ede737 Author: Justin Lecher gentoo org> AuthorDate: Sun Oct 28 06:20:48 2018 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Oct 28 06:21:10 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=adbf4bda Enable EAPI=7 Signed-off-by: Justin Lecher gentoo.org> eclass/alternatives-2.eclass | 2 +- eclass/numeric-int64-multibuild.eclass | 2 +- eclass/numeric.eclass | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/alternatives-2.eclass b/eclass/alternatives-2.eclass index 4263fef8e..7237f0db3 100644 --- a/eclass/alternatives-2.eclass +++ b/eclass/alternatives-2.eclass @@ -23,7 +23,7 @@ case "${EAPI:-0}" in 0|1|2|3|4) die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" ;; - 5|6) + 5|6|7) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" diff --git a/eclass/numeric-int64-multibuild.eclass b/eclass/numeric-int64-multibuild.eclass index 6403ee79c..f720356a3 100644 --- a/eclass/numeric-int64-multibuild.eclass +++ b/eclass/numeric-int64-multibuild.eclass @@ -19,7 +19,7 @@ if [[ ! ${_NUMERIC_INT64_MULTILIB_ECLASS} ]]; then case ${EAPI:-0} in 5) inherit multilib ;; - 6) ;; + 6|7) ;; *) die "EAPI=${EAPI} is not supported" ;; esac diff --git a/eclass/numeric.eclass b/eclass/numeric.eclass index cb7354542..431b7afec 100644 --- a/eclass/numeric.eclass +++ b/eclass/numeric.eclass @@ -14,7 +14,7 @@ if [[ ! ${_NUMERIC_ECLASS} ]]; then case ${EAPI:-0} in 0|1|2|3|4|5) inherit multilib ;; - 6) ;; + 6|7) ;; *) die "EAPI=${EAPI} is not supported" ;; esac