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 B3F5A1384B4 for ; Thu, 26 Nov 2015 22:35:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0934E21C0A5; Thu, 26 Nov 2015 22:35:35 +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 7054121C090 for ; Thu, 26 Nov 2015 22:35:33 +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 868BE34069C for ; Thu, 26 Nov 2015 22:35:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F150FE1 for ; Thu, 26 Nov 2015 22:35:28 +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: <1448577215.877f653f87560d319329b84faceceb8c1782a485.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: 877f653f87560d319329b84faceceb8c1782a485 X-VCS-Branch: python-eapi6 Date: Thu, 26 Nov 2015 22:35:28 +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: 41e6ee8d-fdcd-4a9c-80b7-7db4502da9b6 X-Archives-Hash: 72ada739e24ffc6e55af68d5ac6a0d73 commit: 877f653f87560d319329b84faceceb8c1782a485 Author: Michał Górny gentoo org> AuthorDate: Wed Nov 18 21:50:57 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Nov 26 22:33:35 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=877f653f 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