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 6BB1D1384B4 for ; Wed, 25 Nov 2015 12:04:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A46621C0A0; Wed, 25 Nov 2015 12:03:51 +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 A4DFE21C09F for ; Wed, 25 Nov 2015 12:03:45 +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 C1E43340702 for ; Wed, 25 Nov 2015 12:03:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BFD610FD for ; Wed, 25 Nov 2015 12:03:41 +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: <1448452595.835e59662923fed5611b879d77ff8e9440605c81.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:python-eapi6 commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/distutils-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 835e59662923fed5611b879d77ff8e9440605c81 X-VCS-Branch: python-eapi6 Date: Wed, 25 Nov 2015 12:03:41 +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: 5527f604-0442-4834-bd2e-731a569451a6 X-Archives-Hash: 97c8899c2070c0e85eaf7dc86f846694 commit: 835e59662923fed5611b879d77ff8e9440605c81 Author: Michał Górny gentoo org> AuthorDate: Wed Nov 18 21:50:57 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 25 11:56:35 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=835e5966 distutils-r1.eclass: Ban no-op default phase implementations in EAPI 6 eclass/distutils-r1.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index f9cff5c..47b09b0 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -343,7 +343,7 @@ distutils-r1_python_prepare_all() { distutils-r1_python_prepare() { debug-print-function ${FUNCNAME} "${@}" - : + [[ ${EAPI} == [45] ]] || die "${FUNCNAME} is banned in EAPI 6 (it was a no-op)" } # @FUNCTION: distutils-r1_python_configure @@ -352,7 +352,7 @@ distutils-r1_python_prepare() { distutils-r1_python_configure() { debug-print-function ${FUNCNAME} "${@}" - : + [[ ${EAPI} == [45] ]] || die "${FUNCNAME} is banned in EAPI 6 (it was a no-op)" } # @FUNCTION: _distutils-r1_create_setup_cfg