Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/python: python-2.7.5-r4.ebuild python-2.6.8-r3.ebuild python-2.7.6.ebuild python-2.7.5-r3.ebuild python-2.6.9.ebuild python-3.3.2-r2.ebuild python-3.2.5-r3.ebuild python-3.3.3.ebuild ChangeLog
Date: Mon, 30 Dec 2013 01:45:10
Message-Id: 20131230014502.95A532004C@flycatcher.gentoo.org
1 floppym 13/12/30 01:45:02
2
3 Modified: python-2.7.5-r4.ebuild python-2.6.8-r3.ebuild
4 python-2.7.6.ebuild python-2.7.5-r3.ebuild
5 python-2.6.9.ebuild python-3.3.2-r2.ebuild
6 python-3.2.5-r3.ebuild python-3.3.3.ebuild
7 ChangeLog
8 Log:
9 Die if sem_open is detected as broken, bug 496328.
10
11 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
12
13 Revision Changes Path
14 1.2 dev-lang/python/python-2.7.5-r4.ebuild
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.5-r4.ebuild?rev=1.2&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.5-r4.ebuild?rev=1.2&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.5-r4.ebuild?r1=1.1&r2=1.2
19
20 Index: python-2.7.5-r4.ebuild
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.5-r4.ebuild,v
23 retrieving revision 1.1
24 retrieving revision 1.2
25 diff -u -r1.1 -r1.2
26 --- python-2.7.5-r4.ebuild 26 Oct 2013 15:11:20 -0000 1.1
27 +++ python-2.7.5-r4.ebuild 30 Dec 2013 01:45:02 -0000 1.2
28 @@ -1,6 +1,6 @@
29 # Copyright 1999-2013 Gentoo Foundation
30 # Distributed under the terms of the GNU General Public License v2
31 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.5-r4.ebuild,v 1.1 2013/10/26 15:11:20 floppym Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.5-r4.ebuild,v 1.2 2013/12/30 01:45:02 floppym Exp $
33
34 EAPI="4"
35 WANT_AUTOMAKE="none"
36 @@ -204,6 +204,12 @@
37 --enable-loadable-sqlite-extensions \
38 --with-system-expat \
39 --with-system-ffi
40 +
41 + if grep -q "#define POSIX_SEMAPHORES_NOT_ENABLED 1" pyconfig.h; then
42 + eerror "configure has detected that the sem_open function is broken."
43 + eerror "Please ensure that /dev/shm is mounted as a tmpfs with mode 1777."
44 + die "Broken sem_open function (bug 496328)"
45 + fi
46 }
47
48 src_compile() {
49
50
51
52 1.13 dev-lang/python/python-2.6.8-r3.ebuild
53
54 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.6.8-r3.ebuild?rev=1.13&view=markup
55 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.6.8-r3.ebuild?rev=1.13&content-type=text/plain
56 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.6.8-r3.ebuild?r1=1.12&r2=1.13
57
58 Index: python-2.6.8-r3.ebuild
59 ===================================================================
60 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.8-r3.ebuild,v
61 retrieving revision 1.12
62 retrieving revision 1.13
63 diff -u -r1.12 -r1.13
64 --- python-2.6.8-r3.ebuild 23 Aug 2013 09:16:53 -0000 1.12
65 +++ python-2.6.8-r3.ebuild 30 Dec 2013 01:45:02 -0000 1.13
66 @@ -1,6 +1,6 @@
67 # Copyright 1999-2013 Gentoo Foundation
68 # Distributed under the terms of the GNU General Public License v2
69 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.8-r3.ebuild,v 1.12 2013/08/23 09:16:53 ago Exp $
70 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.8-r3.ebuild,v 1.13 2013/12/30 01:45:02 floppym Exp $
71
72 EAPI="2"
73 WANT_AUTOMAKE="none"
74 @@ -197,6 +197,12 @@
75 --with-libc="" \
76 --with-system-ffi
77
78 + if grep -q "#define POSIX_SEMAPHORES_NOT_ENABLED 1" pyconfig.h; then
79 + eerror "configure has detected that the sem_open function is broken."
80 + eerror "Please ensure that /dev/shm is mounted as a tmpfs with mode 1777."
81 + die "Broken sem_open function (bug 496328)"
82 + fi
83 +
84 if tc-is-cross-compiler; then
85 # Modify the Makefile.pre so we don't regen for the host/ one.
86 # We need to link the host python programs into $PWD and run
87
88
89
90 1.3 dev-lang/python/python-2.7.6.ebuild
91
92 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.6.ebuild?rev=1.3&view=markup
93 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.6.ebuild?rev=1.3&content-type=text/plain
94 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.6.ebuild?r1=1.2&r2=1.3
95
96 Index: python-2.7.6.ebuild
97 ===================================================================
98 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.6.ebuild,v
99 retrieving revision 1.2
100 retrieving revision 1.3
101 diff -u -r1.2 -r1.3
102 --- python-2.7.6.ebuild 7 Dec 2013 10:48:58 -0000 1.2
103 +++ python-2.7.6.ebuild 30 Dec 2013 01:45:02 -0000 1.3
104 @@ -1,6 +1,6 @@
105 # Copyright 1999-2013 Gentoo Foundation
106 # Distributed under the terms of the GNU General Public License v2
107 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.6.ebuild,v 1.2 2013/12/07 10:48:58 vapier Exp $
108 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.6.ebuild,v 1.3 2013/12/30 01:45:02 floppym Exp $
109
110 EAPI="4"
111 WANT_AUTOMAKE="none"
112 @@ -199,6 +199,12 @@
113 --enable-loadable-sqlite-extensions \
114 --with-system-expat \
115 --with-system-ffi
116 +
117 + if grep -q "#define POSIX_SEMAPHORES_NOT_ENABLED 1" pyconfig.h; then
118 + eerror "configure has detected that the sem_open function is broken."
119 + eerror "Please ensure that /dev/shm is mounted as a tmpfs with mode 1777."
120 + die "Broken sem_open function (bug 496328)"
121 + fi
122 }
123
124 src_compile() {
125
126
127
128 1.2 dev-lang/python/python-2.7.5-r3.ebuild
129
130 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.5-r3.ebuild?rev=1.2&view=markup
131 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.5-r3.ebuild?rev=1.2&content-type=text/plain
132 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.7.5-r3.ebuild?r1=1.1&r2=1.2
133
134 Index: python-2.7.5-r3.ebuild
135 ===================================================================
136 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.5-r3.ebuild,v
137 retrieving revision 1.1
138 retrieving revision 1.2
139 diff -u -r1.1 -r1.2
140 --- python-2.7.5-r3.ebuild 16 Oct 2013 23:43:45 -0000 1.1
141 +++ python-2.7.5-r3.ebuild 30 Dec 2013 01:45:02 -0000 1.2
142 @@ -1,6 +1,6 @@
143 # Copyright 1999-2013 Gentoo Foundation
144 # Distributed under the terms of the GNU General Public License v2
145 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.5-r3.ebuild,v 1.1 2013/10/16 23:43:45 floppym Exp $
146 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.7.5-r3.ebuild,v 1.2 2013/12/30 01:45:02 floppym Exp $
147
148 EAPI="4"
149 WANT_AUTOMAKE="none"
150 @@ -203,6 +203,12 @@
151 --enable-loadable-sqlite-extensions \
152 --with-system-expat \
153 --with-system-ffi
154 +
155 + if grep -q "#define POSIX_SEMAPHORES_NOT_ENABLED 1" pyconfig.h; then
156 + eerror "configure has detected that the sem_open function is broken."
157 + eerror "Please ensure that /dev/shm is mounted as a tmpfs with mode 1777."
158 + die "Broken sem_open function (bug 496328)"
159 + fi
160 }
161
162 src_compile() {
163
164
165
166 1.2 dev-lang/python/python-2.6.9.ebuild
167
168 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.6.9.ebuild?rev=1.2&view=markup
169 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.6.9.ebuild?rev=1.2&content-type=text/plain
170 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-2.6.9.ebuild?r1=1.1&r2=1.2
171
172 Index: python-2.6.9.ebuild
173 ===================================================================
174 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.9.ebuild,v
175 retrieving revision 1.1
176 retrieving revision 1.2
177 diff -u -r1.1 -r1.2
178 --- python-2.6.9.ebuild 25 Dec 2013 02:57:44 -0000 1.1
179 +++ python-2.6.9.ebuild 30 Dec 2013 01:45:02 -0000 1.2
180 @@ -1,6 +1,6 @@
181 # Copyright 1999-2013 Gentoo Foundation
182 # Distributed under the terms of the GNU General Public License v2
183 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.9.ebuild,v 1.1 2013/12/25 02:57:44 floppym Exp $
184 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.6.9.ebuild,v 1.2 2013/12/30 01:45:02 floppym Exp $
185
186 EAPI="2"
187 WANT_AUTOMAKE="none"
188 @@ -196,6 +196,12 @@
189 --with-libc="" \
190 --with-system-ffi
191
192 + if grep -q "#define POSIX_SEMAPHORES_NOT_ENABLED 1" pyconfig.h; then
193 + eerror "configure has detected that the sem_open function is broken."
194 + eerror "Please ensure that /dev/shm is mounted as a tmpfs with mode 1777."
195 + die "Broken sem_open function (bug 496328)"
196 + fi
197 +
198 if tc-is-cross-compiler; then
199 # Modify the Makefile.pre so we don't regen for the host/ one.
200 # We need to link the host python programs into $PWD and run
201
202
203
204 1.15 dev-lang/python/python-3.3.2-r2.ebuild
205
206 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-3.3.2-r2.ebuild?rev=1.15&view=markup
207 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-3.3.2-r2.ebuild?rev=1.15&content-type=text/plain
208 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-3.3.2-r2.ebuild?r1=1.14&r2=1.15
209
210 Index: python-3.3.2-r2.ebuild
211 ===================================================================
212 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.3.2-r2.ebuild,v
213 retrieving revision 1.14
214 retrieving revision 1.15
215 diff -u -r1.14 -r1.15
216 --- python-3.3.2-r2.ebuild 26 Dec 2013 15:24:16 -0000 1.14
217 +++ python-3.3.2-r2.ebuild 30 Dec 2013 01:45:02 -0000 1.15
218 @@ -1,6 +1,6 @@
219 # Copyright 1999-2013 Gentoo Foundation
220 # Distributed under the terms of the GNU General Public License v2
221 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.3.2-r2.ebuild,v 1.14 2013/12/26 15:24:16 maekke Exp $
222 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.3.2-r2.ebuild,v 1.15 2013/12/30 01:45:02 floppym Exp $
223
224 EAPI="3"
225 WANT_AUTOMAKE="none"
226 @@ -168,6 +168,12 @@
227 --enable-loadable-sqlite-extensions \
228 --with-system-expat \
229 --with-system-ffi
230 +
231 + if grep -q "#define POSIX_SEMAPHORES_NOT_ENABLED 1" pyconfig.h; then
232 + eerror "configure has detected that the sem_open function is broken."
233 + eerror "Please ensure that /dev/shm is mounted as a tmpfs with mode 1777."
234 + die "Broken sem_open function (bug 496328)"
235 + fi
236 }
237
238 src_compile() {
239
240
241
242 1.2 dev-lang/python/python-3.2.5-r3.ebuild
243
244 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-3.2.5-r3.ebuild?rev=1.2&view=markup
245 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-3.2.5-r3.ebuild?rev=1.2&content-type=text/plain
246 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-3.2.5-r3.ebuild?r1=1.1&r2=1.2
247
248 Index: python-3.2.5-r3.ebuild
249 ===================================================================
250 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.2.5-r3.ebuild,v
251 retrieving revision 1.1
252 retrieving revision 1.2
253 diff -u -r1.1 -r1.2
254 --- python-3.2.5-r3.ebuild 16 Oct 2013 23:43:45 -0000 1.1
255 +++ python-3.2.5-r3.ebuild 30 Dec 2013 01:45:02 -0000 1.2
256 @@ -1,6 +1,6 @@
257 # Copyright 1999-2013 Gentoo Foundation
258 # Distributed under the terms of the GNU General Public License v2
259 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.2.5-r3.ebuild,v 1.1 2013/10/16 23:43:45 floppym Exp $
260 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.2.5-r3.ebuild,v 1.2 2013/12/30 01:45:02 floppym Exp $
261
262 EAPI="4"
263 WANT_AUTOMAKE="none"
264 @@ -196,6 +196,12 @@
265 --with-system-expat \
266 --with-system-ffi
267
268 + if grep -q "#define POSIX_SEMAPHORES_NOT_ENABLED 1" pyconfig.h; then
269 + eerror "configure has detected that the sem_open function is broken."
270 + eerror "Please ensure that /dev/shm is mounted as a tmpfs with mode 1777."
271 + die "Broken sem_open function (bug 496328)"
272 + fi
273 +
274 if tc-is-cross-compiler; then
275 # Modify the Makefile.pre so we don't regen for the host/ one.
276 # We need to link the host python programs into $PWD and run
277
278
279
280 1.5 dev-lang/python/python-3.3.3.ebuild
281
282 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-3.3.3.ebuild?rev=1.5&view=markup
283 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-3.3.3.ebuild?rev=1.5&content-type=text/plain
284 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/python-3.3.3.ebuild?r1=1.4&r2=1.5
285
286 Index: python-3.3.3.ebuild
287 ===================================================================
288 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.3.3.ebuild,v
289 retrieving revision 1.4
290 retrieving revision 1.5
291 diff -u -r1.4 -r1.5
292 --- python-3.3.3.ebuild 7 Dec 2013 10:48:58 -0000 1.4
293 +++ python-3.3.3.ebuild 30 Dec 2013 01:45:02 -0000 1.5
294 @@ -1,6 +1,6 @@
295 # Copyright 1999-2013 Gentoo Foundation
296 # Distributed under the terms of the GNU General Public License v2
297 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.3.3.ebuild,v 1.4 2013/12/07 10:48:58 vapier Exp $
298 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.3.3.ebuild,v 1.5 2013/12/30 01:45:02 floppym Exp $
299
300 EAPI="4"
301 WANT_AUTOMAKE="none"
302 @@ -166,6 +166,12 @@
303 --enable-loadable-sqlite-extensions \
304 --with-system-expat \
305 --with-system-ffi
306 +
307 + if grep -q "#define POSIX_SEMAPHORES_NOT_ENABLED 1" pyconfig.h; then
308 + eerror "configure has detected that the sem_open function is broken."
309 + eerror "Please ensure that /dev/shm is mounted as a tmpfs with mode 1777."
310 + die "Broken sem_open function (bug 496328)"
311 + fi
312 }
313
314 src_compile() {
315
316
317
318 1.724 dev-lang/python/ChangeLog
319
320 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/ChangeLog?rev=1.724&view=markup
321 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/ChangeLog?rev=1.724&content-type=text/plain
322 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/python/ChangeLog?r1=1.723&r2=1.724
323
324 Index: ChangeLog
325 ===================================================================
326 RCS file: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v
327 retrieving revision 1.723
328 retrieving revision 1.724
329 diff -u -r1.723 -r1.724
330 --- ChangeLog 26 Dec 2013 15:24:16 -0000 1.723
331 +++ ChangeLog 30 Dec 2013 01:45:02 -0000 1.724
332 @@ -1,6 +1,12 @@
333 # ChangeLog for dev-lang/python
334 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
335 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.723 2013/12/26 15:24:16 maekke Exp $
336 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.724 2013/12/30 01:45:02 floppym Exp $
337 +
338 + 30 Dec 2013; Mike Gilbert <floppym@g.o> python-2.6.8-r3.ebuild,
339 + python-2.6.9.ebuild, python-2.7.5-r3.ebuild, python-2.7.5-r4.ebuild,
340 + python-2.7.6.ebuild, python-3.2.5-r3.ebuild, python-3.3.2-r2.ebuild,
341 + python-3.3.3.ebuild:
342 + Die if sem_open is detected as broken, bug 496328.
343
344 26 Dec 2013; Markus Meier <maekke@g.o> python-3.3.2-r2.ebuild:
345 arm stable, bug #474128