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 82515138378 for ; Tue, 8 Jan 2013 20:44:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51D88E0459; Tue, 8 Jan 2013 20:44:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C4604E0459 for ; Tue, 8 Jan 2013 20:44:03 +0000 (UTC) Received: from mail-ie0-f172.google.com (mail-ie0-f172.google.com [209.85.223.172]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: floppym) by smtp.gentoo.org (Postfix) with ESMTPSA id D524333D937 for ; Tue, 8 Jan 2013 20:44:02 +0000 (UTC) Received: by mail-ie0-f172.google.com with SMTP id c13so1124652ieb.3 for ; Tue, 08 Jan 2013 12:44:01 -0800 (PST) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Discussions centering around the Python ecosystem in Gentoo Linux X-BeenThere: gentoo-python@gentoo.org X-BeenThere: gentoo-python@lists.gentoo.org MIME-Version: 1.0 Received: by 10.50.152.194 with SMTP id va2mr10442146igb.25.1357677841185; Tue, 08 Jan 2013 12:44:01 -0800 (PST) Received: by 10.64.62.37 with HTTP; Tue, 8 Jan 2013 12:44:01 -0800 (PST) In-Reply-To: <1357677382-30391-1-git-send-email-mgorny@gentoo.org> References: <1357677382-30391-1-git-send-email-mgorny@gentoo.org> Date: Tue, 8 Jan 2013 15:44:01 -0500 Message-ID: Subject: [gentoo-python] Re: [PATCH] Do not call the dummy no-op default phases. From: Mike Gilbert To: =?UTF-8?B?TWljaGHFgiBHw7Nybnk=?= Cc: gentoo-python@lists.gentoo.org, python@gentoo.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 9a1bf374-ce35-4394-9cac-7a0a4921619f X-Archives-Hash: 5badd26a82634a1857a2fbc4f8a24e22 On Tue, Jan 8, 2013 at 3:36 PM, Micha=C5=82 G=C3=B3rny = wrote: > This just causes a severe amount of unnecessary output. > --- > gx86/eclass/distutils-r1.eclass | 6 ------ > 1 file changed, 6 deletions(-) > > diff --git a/gx86/eclass/distutils-r1.eclass b/gx86/eclass/distutils-r1.e= class > index f52ffbd..fd3e856 100644 > --- a/gx86/eclass/distutils-r1.eclass > +++ b/gx86/eclass/distutils-r1.eclass > @@ -454,8 +454,6 @@ distutils-r1_src_prepare() { > _distutils-r1_multijob_init > if declare -f python_prepare >/dev/null; then > python_foreach_impl distutils-r1_run_phase python_prepare > - else > - python_foreach_impl distutils-r1_run_phase distutils-r1_p= ython_prepare > fi > multijob_finish > } > @@ -464,8 +462,6 @@ distutils-r1_src_configure() { > _distutils-r1_multijob_init > if declare -f python_configure >/dev/null; then > python_foreach_impl distutils-r1_run_phase python_configu= re > - else > - python_foreach_impl distutils-r1_run_phase distutils-r1_p= ython_configure > fi > multijob_finish > > @@ -496,8 +492,6 @@ distutils-r1_src_test() { > _distutils-r1_multijob_init > if declare -f python_test >/dev/null; then > python_foreach_impl distutils-r1_run_phase python_test > - else > - python_foreach_impl distutils-r1_run_phase distutils-r1_p= ython_test > fi > multijob_finish > > -- > 1.8.1 > Makes sense.