Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/webob/
Date: Tue, 28 Feb 2017 23:11:54
Message-Id: 1488323491.ed9b9312a79de165dec38928f4e0e85225474337.floppym@gentoo
1 commit: ed9b9312a79de165dec38928f4e0e85225474337
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 23:11:31 2017 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 23:11:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed9b9312
7
8 dev-python/webob: call esetup.py for docs build
9
10 sphinx was using the wrong build dir due to missing .pydistutilscfg.
11
12 Bug: https://bugs.gentoo.org/585216
13 Package-Manager: Portage-2.3.3_p71, Repoman-2.3.1_p64
14
15 dev-python/webob/webob-1.4.1.ebuild | 4 ++--
16 dev-python/webob/webob-1.4.ebuild | 4 ++--
17 dev-python/webob/webob-1.5.0.ebuild | 4 ++--
18 dev-python/webob/webob-1.5.1.ebuild | 4 ++--
19 dev-python/webob/webob-1.6.0.ebuild | 4 ++--
20 dev-python/webob/webob-1.6.1.ebuild | 4 ++--
21 dev-python/webob/webob-1.6.3.ebuild | 2 +-
22 7 files changed, 13 insertions(+), 13 deletions(-)
23
24 diff --git a/dev-python/webob/webob-1.4.1.ebuild b/dev-python/webob/webob-1.4.1.ebuild
25 index 1827c61834e..89fd2c14184 100644
26 --- a/dev-python/webob/webob-1.4.1.ebuild
27 +++ b/dev-python/webob/webob-1.4.1.ebuild
28 @@ -1,4 +1,4 @@
29 -# Copyright 1999-2015 Gentoo Foundation
30 +# Copyright 1999-2017 Gentoo Foundation
31 # Distributed under the terms of the GNU General Public License v2
32
33 EAPI=5
34 @@ -29,7 +29,7 @@ S=${WORKDIR}/${MY_P}
35
36 python_compile_all() {
37 if use doc; then
38 - "${PYTHON}" setup.py build_sphinx || die
39 + esetup.py build_sphinx
40 fi
41 }
42
43
44 diff --git a/dev-python/webob/webob-1.4.ebuild b/dev-python/webob/webob-1.4.ebuild
45 index 120e958286a..f65e9896107 100644
46 --- a/dev-python/webob/webob-1.4.ebuild
47 +++ b/dev-python/webob/webob-1.4.ebuild
48 @@ -1,4 +1,4 @@
49 -# Copyright 1999-2015 Gentoo Foundation
50 +# Copyright 1999-2017 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52
53 EAPI=5
54 @@ -29,7 +29,7 @@ S=${WORKDIR}/${MY_P}
55
56 python_compile_all() {
57 if use doc; then
58 - "${PYTHON}" setup.py build_sphinx || die
59 + esetup.py build_sphinx
60 fi
61 }
62
63
64 diff --git a/dev-python/webob/webob-1.5.0.ebuild b/dev-python/webob/webob-1.5.0.ebuild
65 index d4ed192be83..fd6f6e2048c 100644
66 --- a/dev-python/webob/webob-1.5.0.ebuild
67 +++ b/dev-python/webob/webob-1.5.0.ebuild
68 @@ -1,4 +1,4 @@
69 -# Copyright 1999-2015 Gentoo Foundation
70 +# Copyright 1999-2017 Gentoo Foundation
71 # Distributed under the terms of the GNU General Public License v2
72
73 EAPI=5
74 @@ -29,7 +29,7 @@ S=${WORKDIR}/${MY_P}
75
76 python_compile_all() {
77 if use doc; then
78 - "${PYTHON}" setup.py build_sphinx || die
79 + esetup.py build_sphinx
80 fi
81 }
82
83
84 diff --git a/dev-python/webob/webob-1.5.1.ebuild b/dev-python/webob/webob-1.5.1.ebuild
85 index 3f52a49948a..660c9edd88f 100644
86 --- a/dev-python/webob/webob-1.5.1.ebuild
87 +++ b/dev-python/webob/webob-1.5.1.ebuild
88 @@ -1,4 +1,4 @@
89 -# Copyright 1999-2016 Gentoo Foundation
90 +# Copyright 1999-2017 Gentoo Foundation
91 # Distributed under the terms of the GNU General Public License v2
92
93 EAPI=5
94 @@ -29,7 +29,7 @@ S=${WORKDIR}/${MY_P}
95
96 python_compile_all() {
97 if use doc; then
98 - "${PYTHON}" setup.py build_sphinx || die
99 + esetup.py build_sphinx
100 fi
101 }
102
103
104 diff --git a/dev-python/webob/webob-1.6.0.ebuild b/dev-python/webob/webob-1.6.0.ebuild
105 index c6e61d8d693..06e85d686a5 100644
106 --- a/dev-python/webob/webob-1.6.0.ebuild
107 +++ b/dev-python/webob/webob-1.6.0.ebuild
108 @@ -1,4 +1,4 @@
109 -# Copyright 1999-2016 Gentoo Foundation
110 +# Copyright 1999-2017 Gentoo Foundation
111 # Distributed under the terms of the GNU General Public License v2
112
113 EAPI=6
114 @@ -29,7 +29,7 @@ S=${WORKDIR}/${MY_P}
115
116 python_compile_all() {
117 if use doc; then
118 - "${PYTHON}" setup.py build_sphinx || die
119 + esetup.py build_sphinx
120 fi
121 }
122
123
124 diff --git a/dev-python/webob/webob-1.6.1.ebuild b/dev-python/webob/webob-1.6.1.ebuild
125 index 4ca2c9ff28c..c190fa386a9 100644
126 --- a/dev-python/webob/webob-1.6.1.ebuild
127 +++ b/dev-python/webob/webob-1.6.1.ebuild
128 @@ -1,4 +1,4 @@
129 -# Copyright 1999-2016 Gentoo Foundation
130 +# Copyright 1999-2017 Gentoo Foundation
131 # Distributed under the terms of the GNU General Public License v2
132
133 EAPI=6
134 @@ -29,7 +29,7 @@ S=${WORKDIR}/${MY_P}
135
136 python_compile_all() {
137 if use doc; then
138 - "${PYTHON}" setup.py build_sphinx || die
139 + esetup.py build_sphinx
140 fi
141 }
142
143
144 diff --git a/dev-python/webob/webob-1.6.3.ebuild b/dev-python/webob/webob-1.6.3.ebuild
145 index 0182f6c4b6d..06e85d686a5 100644
146 --- a/dev-python/webob/webob-1.6.3.ebuild
147 +++ b/dev-python/webob/webob-1.6.3.ebuild
148 @@ -29,7 +29,7 @@ S=${WORKDIR}/${MY_P}
149
150 python_compile_all() {
151 if use doc; then
152 - "${PYTHON}" setup.py build_sphinx || die
153 + esetup.py build_sphinx
154 fi
155 }