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-python/twisted-core: twisted-core-13.2.0.ebuild twisted-core-12.3.0-r1.ebuild twisted-core-13.0.0-r3.ebuild twisted-core-14.0.1.ebuild twisted-core-14.0.2.ebuild twisted-core-14.0.0.ebuild ChangeLog
Date: Sun, 28 Dec 2014 19:41:53
Message-Id: 20141228194147.A1552E5EA@oystercatcher.gentoo.org
1 floppym 14/12/28 19:41:47
2
3 Modified: twisted-core-13.2.0.ebuild
4 twisted-core-12.3.0-r1.ebuild
5 twisted-core-13.0.0-r3.ebuild
6 twisted-core-14.0.1.ebuild
7 twisted-core-14.0.2.ebuild
8 twisted-core-14.0.0.ebuild ChangeLog
9 Log:
10 Cleanup CFLAGS handling.
11
12 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
13
14 Revision Changes Path
15 1.3 dev-python/twisted-core/twisted-core-13.2.0.ebuild
16
17 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-13.2.0.ebuild?rev=1.3&view=markup
18 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-13.2.0.ebuild?rev=1.3&content-type=text/plain
19 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-13.2.0.ebuild?r1=1.2&r2=1.3
20
21 Index: twisted-core-13.2.0.ebuild
22 ===================================================================
23 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-13.2.0.ebuild,v
24 retrieving revision 1.2
25 retrieving revision 1.3
26 diff -u -r1.2 -r1.3
27 --- twisted-core-13.2.0.ebuild 12 Dec 2014 23:23:23 -0000 1.2
28 +++ twisted-core-13.2.0.ebuild 28 Dec 2014 19:41:47 -0000 1.3
29 @@ -1,6 +1,6 @@
30 # Copyright 1999-2014 Gentoo Foundation
31 # Distributed under the terms of the GNU General Public License v2
32 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-13.2.0.ebuild,v 1.2 2014/12/12 23:23:23 mgorny Exp $
33 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-13.2.0.ebuild,v 1.3 2014/12/28 19:41:47 floppym Exp $
34
35 EAPI=5
36 PYTHON_COMPAT=( python{2_6,2_7} )
37 @@ -43,13 +43,12 @@
38 }
39
40 python_compile() {
41 - local CFLAGS CXXFLAGS
42 -
43 - if [[ ${EPYTHON} != python3* ]]; then
44 + if ! python_is_python3; then
45 # Needed to make the sendmsg extension work
46 # (see http://twistedmatrix.com/trac/ticket/5701 )
47
48 - append-flags -fno-strict-aliasing
49 + local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
50 + local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
51 fi
52
53 distutils-r1_python_compile
54
55
56
57 1.3 dev-python/twisted-core/twisted-core-12.3.0-r1.ebuild
58
59 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-12.3.0-r1.ebuild?rev=1.3&view=markup
60 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-12.3.0-r1.ebuild?rev=1.3&content-type=text/plain
61 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-12.3.0-r1.ebuild?r1=1.2&r2=1.3
62
63 Index: twisted-core-12.3.0-r1.ebuild
64 ===================================================================
65 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-12.3.0-r1.ebuild,v
66 retrieving revision 1.2
67 retrieving revision 1.3
68 diff -u -r1.2 -r1.3
69 --- twisted-core-12.3.0-r1.ebuild 12 Dec 2014 23:23:23 -0000 1.2
70 +++ twisted-core-12.3.0-r1.ebuild 28 Dec 2014 19:41:47 -0000 1.3
71 @@ -1,6 +1,6 @@
72 # Copyright 1999-2014 Gentoo Foundation
73 # Distributed under the terms of the GNU General Public License v2
74 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-12.3.0-r1.ebuild,v 1.2 2014/12/12 23:23:23 mgorny Exp $
75 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-12.3.0-r1.ebuild,v 1.3 2014/12/28 19:41:47 floppym Exp $
76
77 EAPI=5
78 PYTHON_COMPAT=( python{2_6,2_7} )
79 @@ -30,10 +30,6 @@
80 "${FILESDIR}/${PN}-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch"
81 )
82
83 -# Needed to make the sendmsg extension work
84 -# (see http://twistedmatrix.com/trac/ticket/5701 )
85 -PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
86 -
87 python_prepare_all() {
88 if [[ "${EUID}" -eq 0 ]]; then
89 # Disable tests failing with root permissions.
90 @@ -47,13 +43,12 @@
91 }
92
93 python_compile() {
94 - local CFLAGS CXXFLAGS
95 -
96 - if [[ ${EPYTHON} != python3* ]]; then
97 + if ! python_is_python3; then
98 # Needed to make the sendmsg extension work
99 # (see http://twistedmatrix.com/trac/ticket/5701 )
100
101 - append-flags -fno-strict-aliasing
102 + local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
103 + local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
104 fi
105
106 distutils-r1_python_compile
107
108
109
110 1.12 dev-python/twisted-core/twisted-core-13.0.0-r3.ebuild
111
112 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-13.0.0-r3.ebuild?rev=1.12&view=markup
113 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-13.0.0-r3.ebuild?rev=1.12&content-type=text/plain
114 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-13.0.0-r3.ebuild?r1=1.11&r2=1.12
115
116 Index: twisted-core-13.0.0-r3.ebuild
117 ===================================================================
118 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-13.0.0-r3.ebuild,v
119 retrieving revision 1.11
120 retrieving revision 1.12
121 diff -u -r1.11 -r1.12
122 --- twisted-core-13.0.0-r3.ebuild 12 Dec 2014 23:23:23 -0000 1.11
123 +++ twisted-core-13.0.0-r3.ebuild 28 Dec 2014 19:41:47 -0000 1.12
124 @@ -1,6 +1,6 @@
125 # Copyright 1999-2014 Gentoo Foundation
126 # Distributed under the terms of the GNU General Public License v2
127 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-13.0.0-r3.ebuild,v 1.11 2014/12/12 23:23:23 mgorny Exp $
128 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-13.0.0-r3.ebuild,v 1.12 2014/12/28 19:41:47 floppym Exp $
129
130 EAPI=5
131 PYTHON_COMPAT=( python{2_6,2_7} )
132 @@ -43,13 +43,12 @@
133 }
134
135 python_compile() {
136 - local CFLAGS CXXFLAGS
137 -
138 - if [[ ${EPYTHON} != python3* ]]; then
139 + if ! python_is_python3; then
140 # Needed to make the sendmsg extension work
141 # (see http://twistedmatrix.com/trac/ticket/5701 )
142
143 - append-flags -fno-strict-aliasing
144 + local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
145 + local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
146 fi
147
148 distutils-r1_python_compile
149
150
151
152 1.5 dev-python/twisted-core/twisted-core-14.0.1.ebuild
153
154 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.1.ebuild?rev=1.5&view=markup
155 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.1.ebuild?rev=1.5&content-type=text/plain
156 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.1.ebuild?r1=1.4&r2=1.5
157
158 Index: twisted-core-14.0.1.ebuild
159 ===================================================================
160 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.1.ebuild,v
161 retrieving revision 1.4
162 retrieving revision 1.5
163 diff -u -r1.4 -r1.5
164 --- twisted-core-14.0.1.ebuild 12 Dec 2014 23:23:23 -0000 1.4
165 +++ twisted-core-14.0.1.ebuild 28 Dec 2014 19:41:47 -0000 1.5
166 @@ -1,6 +1,6 @@
167 # Copyright 1999-2014 Gentoo Foundation
168 # Distributed under the terms of the GNU General Public License v2
169 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.1.ebuild,v 1.4 2014/12/12 23:23:23 mgorny Exp $
170 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.1.ebuild,v 1.5 2014/12/28 19:41:47 floppym Exp $
171
172 EAPI=5
173 PYTHON_COMPAT=( python2_7 )
174 @@ -44,12 +44,11 @@
175 }
176
177 python_compile() {
178 - local CFLAGS CXXFLAGS
179 -
180 if ! python_is_python3; then
181 # Needed to make the sendmsg extension work
182 # (see http://twistedmatrix.com/trac/ticket/5701 )
183 - append-flags -fno-strict-aliasing
184 + local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
185 + local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
186 fi
187
188 distutils-r1_python_compile
189
190
191
192 1.3 dev-python/twisted-core/twisted-core-14.0.2.ebuild
193
194 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.2.ebuild?rev=1.3&view=markup
195 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.2.ebuild?rev=1.3&content-type=text/plain
196 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.2.ebuild?r1=1.2&r2=1.3
197
198 Index: twisted-core-14.0.2.ebuild
199 ===================================================================
200 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.2.ebuild,v
201 retrieving revision 1.2
202 retrieving revision 1.3
203 diff -u -r1.2 -r1.3
204 --- twisted-core-14.0.2.ebuild 12 Dec 2014 23:23:23 -0000 1.2
205 +++ twisted-core-14.0.2.ebuild 28 Dec 2014 19:41:47 -0000 1.3
206 @@ -1,6 +1,6 @@
207 # Copyright 1999-2014 Gentoo Foundation
208 # Distributed under the terms of the GNU General Public License v2
209 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.2.ebuild,v 1.2 2014/12/12 23:23:23 mgorny Exp $
210 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.2.ebuild,v 1.3 2014/12/28 19:41:47 floppym Exp $
211
212 EAPI=5
213 PYTHON_COMPAT=( python2_7 )
214 @@ -44,12 +44,11 @@
215 }
216
217 python_compile() {
218 - local CFLAGS CXXFLAGS
219 -
220 if ! python_is_python3; then
221 # Needed to make the sendmsg extension work
222 # (see http://twistedmatrix.com/trac/ticket/5701 )
223 - append-flags -fno-strict-aliasing
224 + local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
225 + local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
226 fi
227
228 distutils-r1_python_compile
229
230
231
232 1.9 dev-python/twisted-core/twisted-core-14.0.0.ebuild
233
234 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild?rev=1.9&view=markup
235 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild?rev=1.9&content-type=text/plain
236 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild?r1=1.8&r2=1.9
237
238 Index: twisted-core-14.0.0.ebuild
239 ===================================================================
240 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v
241 retrieving revision 1.8
242 retrieving revision 1.9
243 diff -u -r1.8 -r1.9
244 --- twisted-core-14.0.0.ebuild 12 Dec 2014 23:23:23 -0000 1.8
245 +++ twisted-core-14.0.0.ebuild 28 Dec 2014 19:41:47 -0000 1.9
246 @@ -1,6 +1,6 @@
247 # Copyright 1999-2014 Gentoo Foundation
248 # Distributed under the terms of the GNU General Public License v2
249 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 1.8 2014/12/12 23:23:23 mgorny Exp $
250 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/twisted-core-14.0.0.ebuild,v 1.9 2014/12/28 19:41:47 floppym Exp $
251
252 EAPI=5
253 PYTHON_COMPAT=( python{2_6,2_7} )
254 @@ -43,12 +43,11 @@
255 }
256
257 python_compile() {
258 - local CFLAGS CXXFLAGS
259 -
260 if ! python_is_python3; then
261 # Needed to make the sendmsg extension work
262 # (see http://twistedmatrix.com/trac/ticket/5701 )
263 - append-flags -fno-strict-aliasing
264 + local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
265 + local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
266 fi
267
268 distutils-r1_python_compile
269
270
271
272 1.42 dev-python/twisted-core/ChangeLog
273
274 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?rev=1.42&view=markup
275 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?rev=1.42&content-type=text/plain
276 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-core/ChangeLog?r1=1.41&r2=1.42
277
278 Index: ChangeLog
279 ===================================================================
280 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v
281 retrieving revision 1.41
282 retrieving revision 1.42
283 diff -u -r1.41 -r1.42
284 --- ChangeLog 12 Dec 2014 23:23:23 -0000 1.41
285 +++ ChangeLog 28 Dec 2014 19:41:47 -0000 1.42
286 @@ -1,6 +1,12 @@
287 # ChangeLog for dev-python/twisted-core
288 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
289 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v 1.41 2014/12/12 23:23:23 mgorny Exp $
290 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-core/ChangeLog,v 1.42 2014/12/28 19:41:47 floppym Exp $
291 +
292 + 28 Dec 2014; Mike Gilbert <floppym@g.o> twisted-core-12.3.0-r1.ebuild,
293 + twisted-core-13.0.0-r3.ebuild, twisted-core-13.2.0.ebuild,
294 + twisted-core-14.0.0.ebuild, twisted-core-14.0.1.ebuild,
295 + twisted-core-14.0.2.ebuild:
296 + Cleanup CFLAGS handling.
297
298 12 Dec 2014; Michał Górny <mgorny@g.o> twisted-core-12.3.0-r1.ebuild,
299 twisted-core-13.0.0-r3.ebuild, twisted-core-13.2.0.ebuild,