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 E4D651384B4 for ; Wed, 25 Nov 2015 12:04:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5EEB521C094; Wed, 25 Nov 2015 12:03:46 +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 DE2BC21C041 for ; Wed, 25 Nov 2015 12:03:44 +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 A1AA234069C for ; Wed, 25 Nov 2015 12:03:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93E16FFB for ; Wed, 25 Nov 2015 12:03:40 +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: <1448452570.c1cc538d7188f357c98e4e2a32da1365b833e773.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: c1cc538d7188f357c98e4e2a32da1365b833e773 X-VCS-Branch: python-eapi6 Date: Wed, 25 Nov 2015 12:03:40 +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: d22f4e1a-7beb-4c8b-b62b-640af94a0e9b X-Archives-Hash: 26119dae1bbbff02f3c9b32eba6ac5a8 commit: c1cc538d7188f357c98e4e2a32da1365b833e773 Author: Michał Górny gentoo org> AuthorDate: Wed Nov 18 21:20:59 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 25 11:56:10 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1cc538d 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 "${@}" }