Gentoo Archives: gentoo-python

From: Mike Gilbert <floppym@g.o>
To: "Michał Górny" <mgorny@g.o>
Cc: gentoo-python@l.g.o, python@g.o
Subject: [gentoo-python] Re: [PATCH] Do not call the dummy no-op default phases.
Date: Tue, 08 Jan 2013 20:44:09
Message-Id: CAJ0EP43o78SNCB2wTzYDvjCZQQOi1ump4JKfBRfLJyOXZgcG0w@mail.gmail.com
In Reply to: [gentoo-python] [PATCH] Do not call the dummy no-op default phases. by "Michał Górny"
1 On Tue, Jan 8, 2013 at 3:36 PM, Michał Górny <mgorny@g.o> wrote:
2 > This just causes a severe amount of unnecessary output.
3 > ---
4 > gx86/eclass/distutils-r1.eclass | 6 ------
5 > 1 file changed, 6 deletions(-)
6 >
7 > diff --git a/gx86/eclass/distutils-r1.eclass b/gx86/eclass/distutils-r1.eclass
8 > index f52ffbd..fd3e856 100644
9 > --- a/gx86/eclass/distutils-r1.eclass
10 > +++ b/gx86/eclass/distutils-r1.eclass
11 > @@ -454,8 +454,6 @@ distutils-r1_src_prepare() {
12 > _distutils-r1_multijob_init
13 > if declare -f python_prepare >/dev/null; then
14 > python_foreach_impl distutils-r1_run_phase python_prepare
15 > - else
16 > - python_foreach_impl distutils-r1_run_phase distutils-r1_python_prepare
17 > fi
18 > multijob_finish
19 > }
20 > @@ -464,8 +462,6 @@ distutils-r1_src_configure() {
21 > _distutils-r1_multijob_init
22 > if declare -f python_configure >/dev/null; then
23 > python_foreach_impl distutils-r1_run_phase python_configure
24 > - else
25 > - python_foreach_impl distutils-r1_run_phase distutils-r1_python_configure
26 > fi
27 > multijob_finish
28 >
29 > @@ -496,8 +492,6 @@ distutils-r1_src_test() {
30 > _distutils-r1_multijob_init
31 > if declare -f python_test >/dev/null; then
32 > python_foreach_impl distutils-r1_run_phase python_test
33 > - else
34 > - python_foreach_impl distutils-r1_run_phase distutils-r1_python_test
35 > fi
36 > multijob_finish
37 >
38 > --
39 > 1.8.1
40 >
41
42 Makes sense.