From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9E0791384B4 for ; Sun, 22 Nov 2015 09:01:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75EB121C023; Sun, 22 Nov 2015 09:01:25 +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 4EF3121C02A for ; Sun, 22 Nov 2015 09:01:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 918F13406C0 for ; Sun, 22 Nov 2015 09:01:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F1ED106A for ; Sun, 22 Nov 2015 09:01:20 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1448182812.15c937c49f0117ef3fd050235d7591ff63114a76.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:python-eapi6 commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/multibuild.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 15c937c49f0117ef3fd050235d7591ff63114a76 X-VCS-Branch: python-eapi6 Date: Sun, 22 Nov 2015 09:01:20 +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: 2fd4a39c-3770-4e0c-b64a-e167675e2ced X-Archives-Hash: 278d5009d72b4427c7c5434210ba0015 commit: 15c937c49f0117ef3fd050235d7591ff63114a76 Author: Michał Górny gentoo org> AuthorDate: Wed Nov 18 21:20:59 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 22 09:00:12 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15c937c4 multibuild.eclass: Ban multibuild_parallel_foreach_variant in EAPI 6 eclass/multibuild.eclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eclass/multibuild.eclass b/eclass/multibuild.eclass index 3115ac9..0bdbed1 100644 --- a/eclass/multibuild.eclass +++ b/eclass/multibuild.eclass @@ -146,6 +146,8 @@ multibuild_foreach_variant() { multibuild_parallel_foreach_variant() { debug-print-function ${FUNCNAME} "${@}" + [[ ${EAPI} == [45] ]] || die "${FUNCNAME} is banned in EAPI ${EAPI}" + multibuild_foreach_variant "${@}" }