Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/python: python-2.4.4-r14.ebuild python-2.5.4-r2.ebuild python-2.5.2-r7.ebuild python-2.4.4-r5.ebuild python-2.5.2-r8.ebuild python-2.6.1.ebuild python-2.4.4-r6.ebuild ChangeLog python-2.4.4-r15.ebuild python-2.6-r5.ebuild
Date: Thu, 26 Feb 2009 05:28:51
Message-Id: E1LcYne-00045w-SZ@stork.gentoo.org
1 vapier 09/02/26 05:28:46
2
3 Modified: python-2.4.4-r14.ebuild python-2.5.4-r2.ebuild
4 python-2.5.2-r7.ebuild python-2.4.4-r5.ebuild
5 python-2.5.2-r8.ebuild python-2.6.1.ebuild
6 python-2.4.4-r6.ebuild ChangeLog
7 python-2.4.4-r15.ebuild python-2.6-r5.ebuild
8 Log:
9 Drop host python ver check when cross-compiling since we build up a local hostpython, and pass CBUILD to the hostpython configure so it detects the full name of the compiler.
10 (Portage version: 2.2_rc23/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.5 dev-lang/python/python-2.4.4-r14.ebuild
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r14.ebuild?rev=1.5&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r14.ebuild?rev=1.5&content-type=text/plain
17 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r14.ebuild?r1=1.4&r2=1.5
18
19 Index: python-2.4.4-r14.ebuild
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r14.ebuild,v
22 retrieving revision 1.4
23 retrieving revision 1.5
24 diff -u -r1.4 -r1.5
25 --- python-2.4.4-r14.ebuild 10 Feb 2009 16:03:34 -0000 1.4
26 +++ python-2.4.4-r14.ebuild 26 Feb 2009 05:28:46 -0000 1.5
27 @@ -1,6 +1,6 @@
28 # Copyright 1999-2009 Gentoo Foundation
29 # Distributed under the terms of the GNU General Public License v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r14.ebuild,v 1.4 2009/02/10 16:03:34 neurogeek Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r14.ebuild,v 1.5 2009/02/26 05:28:46 vapier Exp $
32
33 # NOTE about python-portage interactions :
34 # - Do not add a pkg_setup() check for a certain version of portage
35 @@ -54,8 +54,6 @@
36 cd "${S}"
37
38 if tc-is-cross-compiler ; then
39 - [[ $(python -V 2>&1) != "Python ${PV}" ]] && \
40 - die "Crosscompiling requires the same host and build versions."
41 epatch "${FILESDIR}"/python-2.4.4-test-cross.patch
42 else
43 rm "${WORKDIR}/${PV}"/*_all_crosscompile.patch
44 @@ -156,7 +154,7 @@
45
46 if tc-is-cross-compiler ; then
47 OPT="-O1" CFLAGS="" LDFLAGS="" CC="" \
48 - ./configure --with-cxx=no || die "cross-configure failed"
49 + ./configure --with-cxx=no --{build,host}=${CBUILD} || die "cross-configure failed"
50 emake python Parser/pgen || die "cross-make failed"
51 mv python hostpython
52 mv Parser/pgen Parser/hostpgen
53
54
55
56 1.3 dev-lang/python/python-2.5.4-r2.ebuild
57
58 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.4-r2.ebuild?rev=1.3&view=markup
59 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.4-r2.ebuild?rev=1.3&content-type=text/plain
60 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.4-r2.ebuild?r1=1.2&r2=1.3
61
62 Index: python-2.5.4-r2.ebuild
63 ===================================================================
64 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.4-r2.ebuild,v
65 retrieving revision 1.2
66 retrieving revision 1.3
67 diff -u -r1.2 -r1.3
68 --- python-2.5.4-r2.ebuild 10 Feb 2009 16:11:57 -0000 1.2
69 +++ python-2.5.4-r2.ebuild 26 Feb 2009 05:28:46 -0000 1.3
70 @@ -1,6 +1,6 @@
71 # Copyright 1999-2009 Gentoo Foundation
72 # Distributed under the terms of the GNU General Public License v2
73 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.4-r2.ebuild,v 1.2 2009/02/10 16:11:57 neurogeek Exp $
74 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.4-r2.ebuild,v 1.3 2009/02/26 05:28:46 vapier Exp $
75
76 # NOTE about python-portage interactions :
77 # - Do not add a pkg_setup() check for a certain version of portage
78 @@ -57,8 +57,6 @@
79 cd "${S}"
80
81 if tc-is-cross-compiler ; then
82 - [[ $(python -V 2>&1) != "Python ${PV}" ]] && \
83 - die "Crosscompiling requires the same host and build versions."
84 epatch "${FILESDIR}"/python-2.4.4-test-cross.patch
85 else
86 rm "${WORKDIR}/${PV}"/*_all_crosscompile.patch
87 @@ -154,7 +152,7 @@
88
89 if tc-is-cross-compiler ; then
90 OPT="-O1" CFLAGS="" LDFLAGS="" CC="" \
91 - ./configure || die "cross-configure failed"
92 + ./configure --{build,host}=${CBUILD} || die "cross-configure failed"
93 emake python Parser/pgen || die "cross-make failed"
94 mv python hostpython
95 mv Parser/pgen Parser/hostpgen
96
97
98
99 1.13 dev-lang/python/python-2.5.2-r7.ebuild
100
101 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.2-r7.ebuild?rev=1.13&view=markup
102 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.2-r7.ebuild?rev=1.13&content-type=text/plain
103 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.2-r7.ebuild?r1=1.12&r2=1.13
104
105 Index: python-2.5.2-r7.ebuild
106 ===================================================================
107 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.2-r7.ebuild,v
108 retrieving revision 1.12
109 retrieving revision 1.13
110 diff -u -r1.12 -r1.13
111 --- python-2.5.2-r7.ebuild 10 Feb 2009 16:11:57 -0000 1.12
112 +++ python-2.5.2-r7.ebuild 26 Feb 2009 05:28:46 -0000 1.13
113 @@ -1,6 +1,6 @@
114 # Copyright 1999-2009 Gentoo Foundation
115 # Distributed under the terms of the GNU General Public License v2
116 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.2-r7.ebuild,v 1.12 2009/02/10 16:11:57 neurogeek Exp $
117 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.2-r7.ebuild,v 1.13 2009/02/26 05:28:46 vapier Exp $
118
119 # NOTE about python-portage interactions :
120 # - Do not add a pkg_setup() check for a certain version of portage
121 @@ -57,8 +57,6 @@
122 cd "${S}"
123
124 if tc-is-cross-compiler ; then
125 - [[ $(python -V 2>&1) != "Python ${PV}" ]] && \
126 - die "Crosscompiling requires the same host and build versions."
127 epatch "${FILESDIR}"/python-2.4.4-test-cross.patch
128 else
129 rm "${WORKDIR}/${PV}"/*_all_crosscompile.patch
130 @@ -153,7 +151,7 @@
131
132 if tc-is-cross-compiler ; then
133 OPT="-O1" CFLAGS="" LDFLAGS="" CC="" \
134 - ./configure || die "cross-configure failed"
135 + ./configure --{build,host}=${CBUILD} || die "cross-configure failed"
136 emake python Parser/pgen || die "cross-make failed"
137 mv python hostpython
138 mv Parser/pgen Parser/hostpgen
139
140
141
142 1.23 dev-lang/python/python-2.4.4-r5.ebuild
143
144 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r5.ebuild?rev=1.23&view=markup
145 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r5.ebuild?rev=1.23&content-type=text/plain
146 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r5.ebuild?r1=1.22&r2=1.23
147
148 Index: python-2.4.4-r5.ebuild
149 ===================================================================
150 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r5.ebuild,v
151 retrieving revision 1.22
152 retrieving revision 1.23
153 diff -u -r1.22 -r1.23
154 --- python-2.4.4-r5.ebuild 10 Feb 2009 16:03:34 -0000 1.22
155 +++ python-2.4.4-r5.ebuild 26 Feb 2009 05:28:46 -0000 1.23
156 @@ -1,6 +1,6 @@
157 # Copyright 1999-2009 Gentoo Foundation
158 # Distributed under the terms of the GNU General Public License v2
159 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r5.ebuild,v 1.22 2009/02/10 16:03:34 neurogeek Exp $
160 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r5.ebuild,v 1.23 2009/02/26 05:28:46 vapier Exp $
161
162 # NOTE about python-portage interactions :
163 # - Do not add a pkg_setup() check for a certain version of portage
164 @@ -60,8 +60,6 @@
165 cd "${S}"
166
167 if tc-is-cross-compiler ; then
168 - [[ $(python -V 2>&1) != "Python ${PV}" ]] && \
169 - die "Crosscompiling requires the same host and build versions."
170 epatch "${FILESDIR}"/python-2.4.4-test-cross.patch
171 else
172 rm "${WORKDIR}/${PV}"/*_all_crosscompile.patch
173 @@ -153,7 +151,7 @@
174
175 if tc-is-cross-compiler ; then
176 OPT="-O1" CFLAGS="" LDFLAGS="" CC="" \
177 - ./configure --with-cxx=no || die "cross-configure failed"
178 + ./configure --with-cxx=no --{build,host}=${CBUILD} || die "cross-configure failed"
179 emake python Parser/pgen || die "cross-make failed"
180 mv python hostpython
181 mv Parser/pgen Parser/hostpgen
182
183
184
185 1.8 dev-lang/python/python-2.5.2-r8.ebuild
186
187 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.2-r8.ebuild?rev=1.8&view=markup
188 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.2-r8.ebuild?rev=1.8&content-type=text/plain
189 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.5.2-r8.ebuild?r1=1.7&r2=1.8
190
191 Index: python-2.5.2-r8.ebuild
192 ===================================================================
193 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.2-r8.ebuild,v
194 retrieving revision 1.7
195 retrieving revision 1.8
196 diff -u -r1.7 -r1.8
197 --- python-2.5.2-r8.ebuild 10 Feb 2009 16:11:57 -0000 1.7
198 +++ python-2.5.2-r8.ebuild 26 Feb 2009 05:28:46 -0000 1.8
199 @@ -1,6 +1,6 @@
200 # Copyright 1999-2009 Gentoo Foundation
201 # Distributed under the terms of the GNU General Public License v2
202 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.2-r8.ebuild,v 1.7 2009/02/10 16:11:57 neurogeek Exp $
203 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.2-r8.ebuild,v 1.8 2009/02/26 05:28:46 vapier Exp $
204
205 # NOTE about python-portage interactions :
206 # - Do not add a pkg_setup() check for a certain version of portage
207 @@ -57,8 +57,6 @@
208 cd "${S}"
209
210 if tc-is-cross-compiler ; then
211 - [[ $(python -V 2>&1) != "Python ${PV}" ]] && \
212 - die "Crosscompiling requires the same host and build versions."
213 epatch "${FILESDIR}"/python-2.4.4-test-cross.patch
214 else
215 rm "${WORKDIR}/${PV}"/*_all_crosscompile.patch
216 @@ -157,7 +155,7 @@
217
218 if tc-is-cross-compiler ; then
219 OPT="-O1" CFLAGS="" LDFLAGS="" CC="" \
220 - ./configure || die "cross-configure failed"
221 + ./configure --{build,host}=${CBUILD} || die "cross-configure failed"
222 emake python Parser/pgen || die "cross-make failed"
223 mv python hostpython
224 mv Parser/pgen Parser/hostpgen
225
226
227
228 1.4 dev-lang/python/python-2.6.1.ebuild
229
230 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.6.1.ebuild?rev=1.4&view=markup
231 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.6.1.ebuild?rev=1.4&content-type=text/plain
232 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.6.1.ebuild?r1=1.3&r2=1.4
233
234 Index: python-2.6.1.ebuild
235 ===================================================================
236 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.1.ebuild,v
237 retrieving revision 1.3
238 retrieving revision 1.4
239 diff -u -r1.3 -r1.4
240 --- python-2.6.1.ebuild 10 Feb 2009 16:18:40 -0000 1.3
241 +++ python-2.6.1.ebuild 26 Feb 2009 05:28:46 -0000 1.4
242 @@ -1,6 +1,6 @@
243 # Copyright 1999-2009 Gentoo Foundation
244 # Distributed under the terms of the GNU General Public License v2
245 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.1.ebuild,v 1.3 2009/02/10 16:18:40 neurogeek Exp $
246 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.1.ebuild,v 1.4 2009/02/26 05:28:46 vapier Exp $
247
248 # NOTE about python-portage interactions :
249 # - Do not add a pkg_setup() check for a certain version of portage
250 @@ -56,8 +56,6 @@
251 default
252
253 if tc-is-cross-compiler ; then
254 - [[ $(python -V 2>&1) != "Python ${PV}" ]] && \
255 - die "Crosscompiling requires the same host and build versions."
256 epatch "${FILESDIR}"/python-2.6-test-cross.patch
257 else
258 rm "${WORKDIR}/${PYVER}"/*_all_crosscompile.patch
259 @@ -142,7 +140,7 @@
260
261 if tc-is-cross-compiler ; then
262 OPT="-O1" CFLAGS="" LDFLAGS="" CC="" \
263 - ./configure || die "cross-configure failed"
264 + ./configure --{build,host}=${CBUILD} || die "cross-configure failed"
265 emake python Parser/pgen || die "cross-make failed"
266 mv python hostpython
267 mv Parser/pgen Parser/hostpgen
268
269
270
271 1.15 dev-lang/python/python-2.4.4-r6.ebuild
272
273 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r6.ebuild?rev=1.15&view=markup
274 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r6.ebuild?rev=1.15&content-type=text/plain
275 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r6.ebuild?r1=1.14&r2=1.15
276
277 Index: python-2.4.4-r6.ebuild
278 ===================================================================
279 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r6.ebuild,v
280 retrieving revision 1.14
281 retrieving revision 1.15
282 diff -u -r1.14 -r1.15
283 --- python-2.4.4-r6.ebuild 10 Feb 2009 16:03:34 -0000 1.14
284 +++ python-2.4.4-r6.ebuild 26 Feb 2009 05:28:46 -0000 1.15
285 @@ -1,6 +1,6 @@
286 # Copyright 1999-2009 Gentoo Foundation
287 # Distributed under the terms of the GNU General Public License v2
288 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r6.ebuild,v 1.14 2009/02/10 16:03:34 neurogeek Exp $
289 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r6.ebuild,v 1.15 2009/02/26 05:28:46 vapier Exp $
290
291 # NOTE about python-portage interactions :
292 # - Do not add a pkg_setup() check for a certain version of portage
293 @@ -60,8 +60,6 @@
294 cd "${S}"
295
296 if tc-is-cross-compiler ; then
297 - [[ $(python -V 2>&1) != "Python ${PV}" ]] && \
298 - die "Crosscompiling requires the same host and build versions."
299 epatch "${FILESDIR}"/python-2.4.4-test-cross.patch
300 else
301 rm "${WORKDIR}/${PV}"/*_all_crosscompile.patch
302 @@ -153,7 +151,7 @@
303
304 if tc-is-cross-compiler ; then
305 OPT="-O1" CFLAGS="" LDFLAGS="" CC="" \
306 - ./configure --with-cxx=no || die "cross-configure failed"
307 + ./configure --with-cxx=no --{build,host}=${CBUILD} || die "cross-configure failed"
308 emake python Parser/pgen || die "cross-make failed"
309 mv python hostpython
310 mv Parser/pgen Parser/hostpgen
311
312
313
314 1.366 dev-lang/python/ChangeLog
315
316 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/ChangeLog?rev=1.366&view=markup
317 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/ChangeLog?rev=1.366&content-type=text/plain
318 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/ChangeLog?r1=1.365&r2=1.366
319
320 Index: ChangeLog
321 ===================================================================
322 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v
323 retrieving revision 1.365
324 retrieving revision 1.366
325 diff -u -r1.365 -r1.366
326 --- ChangeLog 10 Feb 2009 16:18:40 -0000 1.365
327 +++ ChangeLog 26 Feb 2009 05:28:46 -0000 1.366
328 @@ -1,6 +1,14 @@
329 # ChangeLog for dev-lang/python
330 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
331 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.365 2009/02/10 16:18:40 neurogeek Exp $
332 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.366 2009/02/26 05:28:46 vapier Exp $
333 +
334 + 26 Feb 2009; Mike Frysinger <vapier@g.o> python-2.4.4-r5.ebuild,
335 + python-2.4.4-r6.ebuild, python-2.4.4-r14.ebuild, python-2.4.4-r15.ebuild,
336 + python-2.5.2-r7.ebuild, python-2.5.2-r8.ebuild, python-2.5.4-r2.ebuild,
337 + python-2.6-r5.ebuild, python-2.6.1.ebuild:
338 + Drop host python ver check when cross-compiling since we build up a local
339 + hostpython, and pass CBUILD to the hostpython configure so it detects the
340 + full name of the compiler.
341
342 10 Feb 2009; <neurogeek@g.o> python-2.6-r5.ebuild,
343 python-2.6.1.ebuild:
344
345
346
347 1.4 dev-lang/python/python-2.4.4-r15.ebuild
348
349 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r15.ebuild?rev=1.4&view=markup
350 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r15.ebuild?rev=1.4&content-type=text/plain
351 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.4.4-r15.ebuild?r1=1.3&r2=1.4
352
353 Index: python-2.4.4-r15.ebuild
354 ===================================================================
355 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r15.ebuild,v
356 retrieving revision 1.3
357 retrieving revision 1.4
358 diff -u -r1.3 -r1.4
359 --- python-2.4.4-r15.ebuild 10 Feb 2009 16:03:34 -0000 1.3
360 +++ python-2.4.4-r15.ebuild 26 Feb 2009 05:28:46 -0000 1.4
361 @@ -1,6 +1,6 @@
362 # Copyright 1999-2009 Gentoo Foundation
363 # Distributed under the terms of the GNU General Public License v2
364 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r15.ebuild,v 1.3 2009/02/10 16:03:34 neurogeek Exp $
365 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.4.4-r15.ebuild,v 1.4 2009/02/26 05:28:46 vapier Exp $
366
367 # NOTE about python-portage interactions :
368 # - Do not add a pkg_setup() check for a certain version of portage
369 @@ -54,8 +54,6 @@
370 cd "${S}"
371
372 if tc-is-cross-compiler ; then
373 - [[ $(python -V 2>&1) != "Python ${PV}" ]] && \
374 - die "Crosscompiling requires the same host and build versions."
375 epatch "${FILESDIR}"/python-2.4.4-test-cross.patch
376 else
377 rm "${WORKDIR}/${PV}"/*_all_crosscompile.patch
378 @@ -157,7 +155,7 @@
379
380 if tc-is-cross-compiler ; then
381 OPT="-O1" CFLAGS="" LDFLAGS="" CC="" \
382 - ./configure --with-cxx=no || die "cross-configure failed"
383 + ./configure --with-cxx=no --{build,host}=${CBUILD} || die "cross-configure failed"
384 emake python Parser/pgen || die "cross-make failed"
385 mv python hostpython
386 mv Parser/pgen Parser/hostpgen
387
388
389
390 1.6 dev-lang/python/python-2.6-r5.ebuild
391
392 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.6-r5.ebuild?rev=1.6&view=markup
393 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.6-r5.ebuild?rev=1.6&content-type=text/plain
394 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/python/python-2.6-r5.ebuild?r1=1.5&r2=1.6
395
396 Index: python-2.6-r5.ebuild
397 ===================================================================
398 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6-r5.ebuild,v
399 retrieving revision 1.5
400 retrieving revision 1.6
401 diff -u -r1.5 -r1.6
402 --- python-2.6-r5.ebuild 10 Feb 2009 16:18:40 -0000 1.5
403 +++ python-2.6-r5.ebuild 26 Feb 2009 05:28:46 -0000 1.6
404 @@ -1,6 +1,6 @@
405 # Copyright 1999-2009 Gentoo Foundation
406 # Distributed under the terms of the GNU General Public License v2
407 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6-r5.ebuild,v 1.5 2009/02/10 16:18:40 neurogeek Exp $
408 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6-r5.ebuild,v 1.6 2009/02/26 05:28:46 vapier Exp $
409
410 # NOTE about python-portage interactions :
411 # - Do not add a pkg_setup() check for a certain version of portage
412 @@ -56,8 +56,6 @@
413 default
414
415 if tc-is-cross-compiler ; then
416 - [[ $(python -V 2>&1) != "Python ${PV}" ]] && \
417 - die "Crosscompiling requires the same host and build versions."
418 epatch "${FILESDIR}"/python-2.6-test-cross.patch
419 else
420 rm "${WORKDIR}/${PV}"/*_all_crosscompile.patch
421 @@ -140,7 +138,7 @@
422
423 if tc-is-cross-compiler ; then
424 OPT="-O1" CFLAGS="" LDFLAGS="" CC="" \
425 - ./configure || die "cross-configure failed"
426 + ./configure --{build,host}=${CBUILD} || die "cross-configure failed"
427 emake python Parser/pgen || die "cross-make failed"
428 mv python hostpython
429 mv Parser/pgen Parser/hostpgen