From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-862568-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 9430A58973
	for <garchives@archives.gentoo.org>; Wed, 10 Feb 2016 18:27:46 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id A004E21C117;
	Wed, 10 Feb 2016 18:27:42 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id C912121C119
	for <gentoo-commits@lists.gentoo.org>; Wed, 10 Feb 2016 18:27:41 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 100B0340B54
	for <gentoo-commits@lists.gentoo.org>; Wed, 10 Feb 2016 18:27:41 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 15BC910FC
	for <gentoo-commits@lists.gentoo.org>; Wed, 10 Feb 2016 18:27:38 +0000 (UTC)
From: "Justin Lecher" <jlec@gentoo.org>
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" <jlec@gentoo.org>
Message-ID: <1455128836.79a3b201623ba75cd8b185c6da8ceccaf24cfea2.jlec@gentoo>
Subject: [gentoo-commits] proj/sci:master commit in: eclass/
X-VCS-Repository: proj/sci
X-VCS-Files: eclass/numeric.eclass
X-VCS-Directories: eclass/
X-VCS-Committer: jlec
X-VCS-Committer-Name: Justin Lecher
X-VCS-Revision: 79a3b201623ba75cd8b185c6da8ceccaf24cfea2
X-VCS-Branch: master
Date: Wed, 10 Feb 2016 18:27:38 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: beb277f4-d278-47da-94c3-e89ef05da270
X-Archives-Hash: ab3c899a96c09fd3cf08d06a57f4b5e4

commit:     79a3b201623ba75cd8b185c6da8ceccaf24cfea2
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 18:25:27 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 18:27:16 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=79a3b201

numeric.eclass: Enable EAPI=6

Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 eclass/numeric.eclass | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/eclass/numeric.eclass b/eclass/numeric.eclass
index adee3c5..6fe676c 100644
--- a/eclass/numeric.eclass
+++ b/eclass/numeric.eclass
@@ -10,15 +10,15 @@
 # Various functions which make the maintenance  numerical algebra packages
 # easier.
 
+if [[ ! ${_NUMERIC_ECLASS} ]]; then
+
 case ${EAPI:-0} in
-	0|1|2|3|4|5) ;;
+	0|1|2|3|4|5)
+		inherit multilib ;;
+	6) ;;
 	*) die "EAPI=${EAPI} is not supported" ;;
 esac
 
-if [[ ! ${_NUMERIC_ECLASS} ]]; then
-
-inherit multilib
-
 # @VARIABLE: NUMERIC_MODULE_NAME
 # @DESCRIPTION:
 # The base pkg-config module name of the package being built.