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