From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-862566-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 1750258973
	for <garchives@archives.gentoo.org>; Wed, 10 Feb 2016 18:27:54 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4B30321C10B;
	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 A697221C10B
	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 E2FB2340B10
	for <gentoo-commits@lists.gentoo.org>; Wed, 10 Feb 2016 18:27:40 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id E72BF10C2
	for <gentoo-commits@lists.gentoo.org>; Wed, 10 Feb 2016 18:27:37 +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: <1455128809.aeb9c0084d83a72d0fb7468837abcee8f7ff9645.jlec@gentoo>
Subject: [gentoo-commits] proj/sci:master commit in: eclass/
X-VCS-Repository: proj/sci
X-VCS-Files: eclass/mpi.eclass
X-VCS-Directories: eclass/
X-VCS-Committer: jlec
X-VCS-Committer-Name: Justin Lecher
X-VCS-Revision: aeb9c0084d83a72d0fb7468837abcee8f7ff9645
X-VCS-Branch: master
Date: Wed, 10 Feb 2016 18:27:37 +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: 32622b47-2599-4c3b-8fc8-4ea44d1edf07
X-Archives-Hash: 1587d520b3271fd294ddd4b986fe0c51

commit:     aeb9c0084d83a72d0fb7468837abcee8f7ff9645
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 18:24:07 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 18:26:49 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=aeb9c008

mpi.eclass: Enable EAPI=6

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

 eclass/mpi.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/mpi.eclass b/eclass/mpi.eclass
index af25756..b7ace33 100644
--- a/eclass/mpi.eclass
+++ b/eclass/mpi.eclass
@@ -17,8 +17,8 @@ if [[ ! ${_MPI_ECLASS} ]]; then
 
 case ${EAPI:-0} in
 	2|3|4|5)
-		inherit multilib
-		;;
+		inherit multilib ;;
+	6) ;;
 	*) die "EAPI=${EAPI} is not supported" ;;
 esac