Gentoo Archives: gentoo-python

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

Replies