Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/gdb: gdb-7.8.ebuild gdb-7.1.ebuild gdb-7.8.2.ebuild gdb-7.3.1-r1.ebuild gdb-7.5.ebuild gdb-7.3.1.ebuild gdb-7.3.ebuild gdb-6.6-r2.ebuild gdb-7.5.1.ebuild gdb-7.8.1.ebuild gdb-6.8-r1.ebuild gdb-7.4.ebuild gdb-9999.ebuild gdb-7.6.2.ebuild gdb-7.4.1.ebuild gdb-7.2.50.20101117.4.15.ebuild gdb-7.2.ebuild gdb-7.9.ebuild gdb-6.8-r2.ebuild gdb-7.7.1.ebuild gdb-6.7.1-r3.ebuild gdb-7.6.ebuild gdb-7.0.1.ebuild gdb-7.6.1.ebuild gdb-7.7-r1.ebuild ChangeLog
Date: Fri, 27 Feb 2015 08:14:15
Message-Id: 20150227081405.824E012A68@oystercatcher.gentoo.org
1 vapier 15/02/27 08:14:05
2
3 Modified: gdb-7.8.ebuild gdb-7.1.ebuild gdb-7.8.2.ebuild
4 gdb-7.3.1-r1.ebuild gdb-7.5.ebuild gdb-7.3.1.ebuild
5 gdb-7.3.ebuild gdb-6.6-r2.ebuild gdb-7.5.1.ebuild
6 gdb-7.8.1.ebuild gdb-6.8-r1.ebuild gdb-7.4.ebuild
7 gdb-9999.ebuild gdb-7.6.2.ebuild gdb-7.4.1.ebuild
8 gdb-7.2.50.20101117.4.15.ebuild gdb-7.2.ebuild
9 gdb-7.9.ebuild gdb-6.8-r2.ebuild gdb-7.7.1.ebuild
10 gdb-6.7.1-r3.ebuild gdb-7.6.ebuild gdb-7.0.1.ebuild
11 gdb-7.6.1.ebuild gdb-7.7-r1.ebuild ChangeLog
12 Log:
13 Use more readable CTARGET setup logic.
14
15 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
16
17 Revision Changes Path
18 1.4 sys-devel/gdb/gdb-7.8.ebuild
19
20 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.8.ebuild?rev=1.4&view=markup
21 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.8.ebuild?rev=1.4&content-type=text/plain
22 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.8.ebuild?r1=1.3&r2=1.4
23
24 Index: gdb-7.8.ebuild
25 ===================================================================
26 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.8.ebuild,v
27 retrieving revision 1.3
28 retrieving revision 1.4
29 diff -u -r1.3 -r1.4
30 --- gdb-7.8.ebuild 20 Feb 2015 15:42:58 -0000 1.3
31 +++ gdb-7.8.ebuild 27 Feb 2015 08:14:05 -0000 1.4
32 @@ -1,6 +1,6 @@
33 # Copyright 1999-2015 Gentoo Foundation
34 # Distributed under the terms of the GNU General Public License v2
35 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.8.ebuild,v 1.3 2015/02/20 15:42:58 vapier Exp $
36 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.8.ebuild,v 1.4 2015/02/27 08:14:05 vapier Exp $
37
38 EAPI="4"
39 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
40 @@ -9,8 +9,8 @@
41
42 export CTARGET=${CTARGET:-${CHOST}}
43 if [[ ${CTARGET} == ${CHOST} ]] ; then
44 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
45 - export CTARGET=${CATEGORY/cross-}
46 + if [[ ${CATEGORY} == cross-* ]] ; then
47 + export CTARGET=${CATEGORY#cross-}
48 fi
49 fi
50 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
51
52
53
54 1.6 sys-devel/gdb/gdb-7.1.ebuild
55
56 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.1.ebuild?rev=1.6&view=markup
57 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.1.ebuild?rev=1.6&content-type=text/plain
58 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.1.ebuild?r1=1.5&r2=1.6
59
60 Index: gdb-7.1.ebuild
61 ===================================================================
62 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.1.ebuild,v
63 retrieving revision 1.5
64 retrieving revision 1.6
65 diff -u -r1.5 -r1.6
66 --- gdb-7.1.ebuild 20 Feb 2015 15:42:58 -0000 1.5
67 +++ gdb-7.1.ebuild 27 Feb 2015 08:14:05 -0000 1.6
68 @@ -1,13 +1,13 @@
69 # Copyright 1999-2015 Gentoo Foundation
70 # Distributed under the terms of the GNU General Public License v2
71 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.1.ebuild,v 1.5 2015/02/20 15:42:58 vapier Exp $
72 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.1.ebuild,v 1.6 2015/02/27 08:14:05 vapier Exp $
73
74 inherit flag-o-matic eutils
75
76 export CTARGET=${CTARGET:-${CHOST}}
77 if [[ ${CTARGET} == ${CHOST} ]] ; then
78 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
79 - export CTARGET=${CATEGORY/cross-}
80 + if [[ ${CATEGORY} == cross-* ]] ; then
81 + export CTARGET=${CATEGORY#cross-}
82 fi
83 fi
84 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
85
86
87
88 1.3 sys-devel/gdb/gdb-7.8.2.ebuild
89
90 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.8.2.ebuild?rev=1.3&view=markup
91 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.8.2.ebuild?rev=1.3&content-type=text/plain
92 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.8.2.ebuild?r1=1.2&r2=1.3
93
94 Index: gdb-7.8.2.ebuild
95 ===================================================================
96 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.8.2.ebuild,v
97 retrieving revision 1.2
98 retrieving revision 1.3
99 diff -u -r1.2 -r1.3
100 --- gdb-7.8.2.ebuild 20 Feb 2015 15:42:58 -0000 1.2
101 +++ gdb-7.8.2.ebuild 27 Feb 2015 08:14:05 -0000 1.3
102 @@ -1,6 +1,6 @@
103 # Copyright 1999-2015 Gentoo Foundation
104 # Distributed under the terms of the GNU General Public License v2
105 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.8.2.ebuild,v 1.2 2015/02/20 15:42:58 vapier Exp $
106 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.8.2.ebuild,v 1.3 2015/02/27 08:14:05 vapier Exp $
107
108 EAPI="4"
109 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
110 @@ -9,8 +9,8 @@
111
112 export CTARGET=${CTARGET:-${CHOST}}
113 if [[ ${CTARGET} == ${CHOST} ]] ; then
114 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
115 - export CTARGET=${CATEGORY/cross-}
116 + if [[ ${CATEGORY} == cross-* ]] ; then
117 + export CTARGET=${CATEGORY#cross-}
118 fi
119 fi
120 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
121
122
123
124 1.11 sys-devel/gdb/gdb-7.3.1-r1.ebuild
125
126 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.3.1-r1.ebuild?rev=1.11&view=markup
127 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.3.1-r1.ebuild?rev=1.11&content-type=text/plain
128 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.3.1-r1.ebuild?r1=1.10&r2=1.11
129
130 Index: gdb-7.3.1-r1.ebuild
131 ===================================================================
132 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.3.1-r1.ebuild,v
133 retrieving revision 1.10
134 retrieving revision 1.11
135 diff -u -r1.10 -r1.11
136 --- gdb-7.3.1-r1.ebuild 20 Feb 2015 15:42:58 -0000 1.10
137 +++ gdb-7.3.1-r1.ebuild 27 Feb 2015 08:14:05 -0000 1.11
138 @@ -1,6 +1,6 @@
139 # Copyright 1999-2015 Gentoo Foundation
140 # Distributed under the terms of the GNU General Public License v2
141 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.3.1-r1.ebuild,v 1.10 2015/02/20 15:42:58 vapier Exp $
142 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.3.1-r1.ebuild,v 1.11 2015/02/27 08:14:05 vapier Exp $
143
144 EAPI="3"
145
146 @@ -8,8 +8,8 @@
147
148 export CTARGET=${CTARGET:-${CHOST}}
149 if [[ ${CTARGET} == ${CHOST} ]] ; then
150 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
151 - export CTARGET=${CATEGORY/cross-}
152 + if [[ ${CATEGORY} == cross-* ]] ; then
153 + export CTARGET=${CATEGORY#cross-}
154 fi
155 fi
156 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
157
158
159
160 1.14 sys-devel/gdb/gdb-7.5.ebuild
161
162 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.5.ebuild?rev=1.14&view=markup
163 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.5.ebuild?rev=1.14&content-type=text/plain
164 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.5.ebuild?r1=1.13&r2=1.14
165
166 Index: gdb-7.5.ebuild
167 ===================================================================
168 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.5.ebuild,v
169 retrieving revision 1.13
170 retrieving revision 1.14
171 diff -u -r1.13 -r1.14
172 --- gdb-7.5.ebuild 20 Feb 2015 15:42:58 -0000 1.13
173 +++ gdb-7.5.ebuild 27 Feb 2015 08:14:05 -0000 1.14
174 @@ -1,6 +1,6 @@
175 # Copyright 1999-2015 Gentoo Foundation
176 # Distributed under the terms of the GNU General Public License v2
177 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.5.ebuild,v 1.13 2015/02/20 15:42:58 vapier Exp $
178 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.5.ebuild,v 1.14 2015/02/27 08:14:05 vapier Exp $
179
180 EAPI="3"
181
182 @@ -8,8 +8,8 @@
183
184 export CTARGET=${CTARGET:-${CHOST}}
185 if [[ ${CTARGET} == ${CHOST} ]] ; then
186 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
187 - export CTARGET=${CATEGORY/cross-}
188 + if [[ ${CATEGORY} == cross-* ]] ; then
189 + export CTARGET=${CATEGORY#cross-}
190 fi
191 fi
192 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
193
194
195
196 1.17 sys-devel/gdb/gdb-7.3.1.ebuild
197
198 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.3.1.ebuild?rev=1.17&view=markup
199 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.3.1.ebuild?rev=1.17&content-type=text/plain
200 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.3.1.ebuild?r1=1.16&r2=1.17
201
202 Index: gdb-7.3.1.ebuild
203 ===================================================================
204 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.3.1.ebuild,v
205 retrieving revision 1.16
206 retrieving revision 1.17
207 diff -u -r1.16 -r1.17
208 --- gdb-7.3.1.ebuild 20 Feb 2015 15:42:58 -0000 1.16
209 +++ gdb-7.3.1.ebuild 27 Feb 2015 08:14:05 -0000 1.17
210 @@ -1,6 +1,6 @@
211 # Copyright 1999-2015 Gentoo Foundation
212 # Distributed under the terms of the GNU General Public License v2
213 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.3.1.ebuild,v 1.16 2015/02/20 15:42:58 vapier Exp $
214 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.3.1.ebuild,v 1.17 2015/02/27 08:14:05 vapier Exp $
215
216 EAPI="3"
217
218 @@ -8,8 +8,8 @@
219
220 export CTARGET=${CTARGET:-${CHOST}}
221 if [[ ${CTARGET} == ${CHOST} ]] ; then
222 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
223 - export CTARGET=${CATEGORY/cross-}
224 + if [[ ${CATEGORY} == cross-* ]] ; then
225 + export CTARGET=${CATEGORY#cross-}
226 fi
227 fi
228 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
229
230
231
232 1.11 sys-devel/gdb/gdb-7.3.ebuild
233
234 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.3.ebuild?rev=1.11&view=markup
235 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.3.ebuild?rev=1.11&content-type=text/plain
236 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.3.ebuild?r1=1.10&r2=1.11
237
238 Index: gdb-7.3.ebuild
239 ===================================================================
240 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.3.ebuild,v
241 retrieving revision 1.10
242 retrieving revision 1.11
243 diff -u -r1.10 -r1.11
244 --- gdb-7.3.ebuild 20 Feb 2015 15:42:58 -0000 1.10
245 +++ gdb-7.3.ebuild 27 Feb 2015 08:14:05 -0000 1.11
246 @@ -1,6 +1,6 @@
247 # Copyright 1999-2015 Gentoo Foundation
248 # Distributed under the terms of the GNU General Public License v2
249 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.3.ebuild,v 1.10 2015/02/20 15:42:58 vapier Exp $
250 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.3.ebuild,v 1.11 2015/02/27 08:14:05 vapier Exp $
251
252 EAPI="3"
253
254 @@ -8,8 +8,8 @@
255
256 export CTARGET=${CTARGET:-${CHOST}}
257 if [[ ${CTARGET} == ${CHOST} ]] ; then
258 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
259 - export CTARGET=${CATEGORY/cross-}
260 + if [[ ${CATEGORY} == cross-* ]] ; then
261 + export CTARGET=${CATEGORY#cross-}
262 fi
263 fi
264 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
265
266
267
268 1.17 sys-devel/gdb/gdb-6.6-r2.ebuild
269
270 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.6-r2.ebuild?rev=1.17&view=markup
271 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.6-r2.ebuild?rev=1.17&content-type=text/plain
272 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.6-r2.ebuild?r1=1.16&r2=1.17
273
274 Index: gdb-6.6-r2.ebuild
275 ===================================================================
276 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.6-r2.ebuild,v
277 retrieving revision 1.16
278 retrieving revision 1.17
279 diff -u -r1.16 -r1.17
280 --- gdb-6.6-r2.ebuild 20 Feb 2015 15:42:58 -0000 1.16
281 +++ gdb-6.6-r2.ebuild 27 Feb 2015 08:14:05 -0000 1.17
282 @@ -1,13 +1,13 @@
283 # Copyright 1999-2015 Gentoo Foundation
284 # Distributed under the terms of the GNU General Public License v2
285 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.6-r2.ebuild,v 1.16 2015/02/20 15:42:58 vapier Exp $
286 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.6-r2.ebuild,v 1.17 2015/02/27 08:14:05 vapier Exp $
287
288 inherit flag-o-matic eutils
289
290 export CTARGET=${CTARGET:-${CHOST}}
291 if [[ ${CTARGET} == ${CHOST} ]] ; then
292 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
293 - export CTARGET=${CATEGORY/cross-}
294 + if [[ ${CATEGORY} == cross-* ]] ; then
295 + export CTARGET=${CATEGORY#cross-}
296 fi
297 fi
298
299
300
301
302 1.18 sys-devel/gdb/gdb-7.5.1.ebuild
303
304 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.5.1.ebuild?rev=1.18&view=markup
305 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.5.1.ebuild?rev=1.18&content-type=text/plain
306 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.5.1.ebuild?r1=1.17&r2=1.18
307
308 Index: gdb-7.5.1.ebuild
309 ===================================================================
310 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.5.1.ebuild,v
311 retrieving revision 1.17
312 retrieving revision 1.18
313 diff -u -r1.17 -r1.18
314 --- gdb-7.5.1.ebuild 20 Feb 2015 15:42:58 -0000 1.17
315 +++ gdb-7.5.1.ebuild 27 Feb 2015 08:14:05 -0000 1.18
316 @@ -1,6 +1,6 @@
317 # Copyright 1999-2015 Gentoo Foundation
318 # Distributed under the terms of the GNU General Public License v2
319 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.5.1.ebuild,v 1.17 2015/02/20 15:42:58 vapier Exp $
320 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.5.1.ebuild,v 1.18 2015/02/27 08:14:05 vapier Exp $
321
322 EAPI="3"
323
324 @@ -8,8 +8,8 @@
325
326 export CTARGET=${CTARGET:-${CHOST}}
327 if [[ ${CTARGET} == ${CHOST} ]] ; then
328 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
329 - export CTARGET=${CATEGORY/cross-}
330 + if [[ ${CATEGORY} == cross-* ]] ; then
331 + export CTARGET=${CATEGORY#cross-}
332 fi
333 fi
334 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
335
336
337
338 1.5 sys-devel/gdb/gdb-7.8.1.ebuild
339
340 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.8.1.ebuild?rev=1.5&view=markup
341 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.8.1.ebuild?rev=1.5&content-type=text/plain
342 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.8.1.ebuild?r1=1.4&r2=1.5
343
344 Index: gdb-7.8.1.ebuild
345 ===================================================================
346 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.8.1.ebuild,v
347 retrieving revision 1.4
348 retrieving revision 1.5
349 diff -u -r1.4 -r1.5
350 --- gdb-7.8.1.ebuild 20 Feb 2015 15:42:58 -0000 1.4
351 +++ gdb-7.8.1.ebuild 27 Feb 2015 08:14:05 -0000 1.5
352 @@ -1,6 +1,6 @@
353 # Copyright 1999-2015 Gentoo Foundation
354 # Distributed under the terms of the GNU General Public License v2
355 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.8.1.ebuild,v 1.4 2015/02/20 15:42:58 vapier Exp $
356 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.8.1.ebuild,v 1.5 2015/02/27 08:14:05 vapier Exp $
357
358 EAPI="4"
359 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
360 @@ -9,8 +9,8 @@
361
362 export CTARGET=${CTARGET:-${CHOST}}
363 if [[ ${CTARGET} == ${CHOST} ]] ; then
364 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
365 - export CTARGET=${CATEGORY/cross-}
366 + if [[ ${CATEGORY} == cross-* ]] ; then
367 + export CTARGET=${CATEGORY#cross-}
368 fi
369 fi
370 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
371
372
373
374 1.15 sys-devel/gdb/gdb-6.8-r1.ebuild
375
376 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.8-r1.ebuild?rev=1.15&view=markup
377 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.8-r1.ebuild?rev=1.15&content-type=text/plain
378 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.8-r1.ebuild?r1=1.14&r2=1.15
379
380 Index: gdb-6.8-r1.ebuild
381 ===================================================================
382 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.8-r1.ebuild,v
383 retrieving revision 1.14
384 retrieving revision 1.15
385 diff -u -r1.14 -r1.15
386 --- gdb-6.8-r1.ebuild 20 Feb 2015 15:42:58 -0000 1.14
387 +++ gdb-6.8-r1.ebuild 27 Feb 2015 08:14:05 -0000 1.15
388 @@ -1,13 +1,13 @@
389 # Copyright 1999-2015 Gentoo Foundation
390 # Distributed under the terms of the GNU General Public License v2
391 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.8-r1.ebuild,v 1.14 2015/02/20 15:42:58 vapier Exp $
392 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.8-r1.ebuild,v 1.15 2015/02/27 08:14:05 vapier Exp $
393
394 inherit flag-o-matic eutils
395
396 export CTARGET=${CTARGET:-${CHOST}}
397 if [[ ${CTARGET} == ${CHOST} ]] ; then
398 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
399 - export CTARGET=${CATEGORY/cross-}
400 + if [[ ${CATEGORY} == cross-* ]] ; then
401 + export CTARGET=${CATEGORY#cross-}
402 fi
403 fi
404
405
406
407
408 1.8 sys-devel/gdb/gdb-7.4.ebuild
409
410 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.4.ebuild?rev=1.8&view=markup
411 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.4.ebuild?rev=1.8&content-type=text/plain
412 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.4.ebuild?r1=1.7&r2=1.8
413
414 Index: gdb-7.4.ebuild
415 ===================================================================
416 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.4.ebuild,v
417 retrieving revision 1.7
418 retrieving revision 1.8
419 diff -u -r1.7 -r1.8
420 --- gdb-7.4.ebuild 20 Feb 2015 15:42:58 -0000 1.7
421 +++ gdb-7.4.ebuild 27 Feb 2015 08:14:05 -0000 1.8
422 @@ -1,6 +1,6 @@
423 # Copyright 1999-2015 Gentoo Foundation
424 # Distributed under the terms of the GNU General Public License v2
425 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.4.ebuild,v 1.7 2015/02/20 15:42:58 vapier Exp $
426 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.4.ebuild,v 1.8 2015/02/27 08:14:05 vapier Exp $
427
428 EAPI="3"
429
430 @@ -8,8 +8,8 @@
431
432 export CTARGET=${CTARGET:-${CHOST}}
433 if [[ ${CTARGET} == ${CHOST} ]] ; then
434 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
435 - export CTARGET=${CATEGORY/cross-}
436 + if [[ ${CATEGORY} == cross-* ]] ; then
437 + export CTARGET=${CATEGORY#cross-}
438 fi
439 fi
440 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
441
442
443
444 1.34 sys-devel/gdb/gdb-9999.ebuild
445
446 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-9999.ebuild?rev=1.34&view=markup
447 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-9999.ebuild?rev=1.34&content-type=text/plain
448 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-9999.ebuild?r1=1.33&r2=1.34
449
450 Index: gdb-9999.ebuild
451 ===================================================================
452 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-9999.ebuild,v
453 retrieving revision 1.33
454 retrieving revision 1.34
455 diff -u -r1.33 -r1.34
456 --- gdb-9999.ebuild 20 Feb 2015 15:42:58 -0000 1.33
457 +++ gdb-9999.ebuild 27 Feb 2015 08:14:05 -0000 1.34
458 @@ -1,6 +1,6 @@
459 # Copyright 1999-2015 Gentoo Foundation
460 # Distributed under the terms of the GNU General Public License v2
461 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-9999.ebuild,v 1.33 2015/02/20 15:42:58 vapier Exp $
462 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-9999.ebuild,v 1.34 2015/02/27 08:14:05 vapier Exp $
463
464 EAPI="4"
465 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
466 @@ -9,8 +9,8 @@
467
468 export CTARGET=${CTARGET:-${CHOST}}
469 if [[ ${CTARGET} == ${CHOST} ]] ; then
470 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
471 - export CTARGET=${CATEGORY/cross-}
472 + if [[ ${CATEGORY} == cross-* ]] ; then
473 + export CTARGET=${CATEGORY#cross-}
474 fi
475 fi
476 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
477
478
479
480 1.14 sys-devel/gdb/gdb-7.6.2.ebuild
481
482 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.6.2.ebuild?rev=1.14&view=markup
483 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.6.2.ebuild?rev=1.14&content-type=text/plain
484 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.6.2.ebuild?r1=1.13&r2=1.14
485
486 Index: gdb-7.6.2.ebuild
487 ===================================================================
488 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.6.2.ebuild,v
489 retrieving revision 1.13
490 retrieving revision 1.14
491 diff -u -r1.13 -r1.14
492 --- gdb-7.6.2.ebuild 20 Feb 2015 15:42:58 -0000 1.13
493 +++ gdb-7.6.2.ebuild 27 Feb 2015 08:14:05 -0000 1.14
494 @@ -1,6 +1,6 @@
495 # Copyright 1999-2015 Gentoo Foundation
496 # Distributed under the terms of the GNU General Public License v2
497 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.6.2.ebuild,v 1.13 2015/02/20 15:42:58 vapier Exp $
498 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.6.2.ebuild,v 1.14 2015/02/27 08:14:05 vapier Exp $
499
500 EAPI="3"
501
502 @@ -8,8 +8,8 @@
503
504 export CTARGET=${CTARGET:-${CHOST}}
505 if [[ ${CTARGET} == ${CHOST} ]] ; then
506 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
507 - export CTARGET=${CATEGORY/cross-}
508 + if [[ ${CATEGORY} == cross-* ]] ; then
509 + export CTARGET=${CATEGORY#cross-}
510 fi
511 fi
512 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
513
514
515
516 1.8 sys-devel/gdb/gdb-7.4.1.ebuild
517
518 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.4.1.ebuild?rev=1.8&view=markup
519 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.4.1.ebuild?rev=1.8&content-type=text/plain
520 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.4.1.ebuild?r1=1.7&r2=1.8
521
522 Index: gdb-7.4.1.ebuild
523 ===================================================================
524 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.4.1.ebuild,v
525 retrieving revision 1.7
526 retrieving revision 1.8
527 diff -u -r1.7 -r1.8
528 --- gdb-7.4.1.ebuild 20 Feb 2015 15:42:58 -0000 1.7
529 +++ gdb-7.4.1.ebuild 27 Feb 2015 08:14:05 -0000 1.8
530 @@ -1,6 +1,6 @@
531 # Copyright 1999-2015 Gentoo Foundation
532 # Distributed under the terms of the GNU General Public License v2
533 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.4.1.ebuild,v 1.7 2015/02/20 15:42:58 vapier Exp $
534 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.4.1.ebuild,v 1.8 2015/02/27 08:14:05 vapier Exp $
535
536 EAPI="3"
537
538 @@ -8,8 +8,8 @@
539
540 export CTARGET=${CTARGET:-${CHOST}}
541 if [[ ${CTARGET} == ${CHOST} ]] ; then
542 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
543 - export CTARGET=${CATEGORY/cross-}
544 + if [[ ${CATEGORY} == cross-* ]] ; then
545 + export CTARGET=${CATEGORY#cross-}
546 fi
547 fi
548 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
549
550
551
552 1.5 sys-devel/gdb/gdb-7.2.50.20101117.4.15.ebuild
553
554 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.2.50.20101117.4.15.ebuild?rev=1.5&view=markup
555 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.2.50.20101117.4.15.ebuild?rev=1.5&content-type=text/plain
556 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.2.50.20101117.4.15.ebuild?r1=1.4&r2=1.5
557
558 Index: gdb-7.2.50.20101117.4.15.ebuild
559 ===================================================================
560 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.2.50.20101117.4.15.ebuild,v
561 retrieving revision 1.4
562 retrieving revision 1.5
563 diff -u -r1.4 -r1.5
564 --- gdb-7.2.50.20101117.4.15.ebuild 20 Feb 2015 15:42:58 -0000 1.4
565 +++ gdb-7.2.50.20101117.4.15.ebuild 27 Feb 2015 08:14:05 -0000 1.5
566 @@ -1,6 +1,6 @@
567 # Copyright 1999-2015 Gentoo Foundation
568 # Distributed under the terms of the GNU General Public License v2
569 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.2.50.20101117.4.15.ebuild,v 1.4 2015/02/20 15:42:58 vapier Exp $
570 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.2.50.20101117.4.15.ebuild,v 1.5 2015/02/27 08:14:05 vapier Exp $
571
572 EAPI="3"
573
574 @@ -8,8 +8,8 @@
575
576 export CTARGET=${CTARGET:-${CHOST}}
577 if [[ ${CTARGET} == ${CHOST} ]] ; then
578 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
579 - export CTARGET=${CATEGORY/cross-}
580 + if [[ ${CATEGORY} == cross-* ]] ; then
581 + export CTARGET=${CATEGORY#cross-}
582 fi
583 fi
584 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
585
586
587
588 1.18 sys-devel/gdb/gdb-7.2.ebuild
589
590 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild?rev=1.18&view=markup
591 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild?rev=1.18&content-type=text/plain
592 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild?r1=1.17&r2=1.18
593
594 Index: gdb-7.2.ebuild
595 ===================================================================
596 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild,v
597 retrieving revision 1.17
598 retrieving revision 1.18
599 diff -u -r1.17 -r1.18
600 --- gdb-7.2.ebuild 20 Feb 2015 15:42:58 -0000 1.17
601 +++ gdb-7.2.ebuild 27 Feb 2015 08:14:05 -0000 1.18
602 @@ -1,6 +1,6 @@
603 # Copyright 1999-2015 Gentoo Foundation
604 # Distributed under the terms of the GNU General Public License v2
605 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild,v 1.17 2015/02/20 15:42:58 vapier Exp $
606 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.2.ebuild,v 1.18 2015/02/27 08:14:05 vapier Exp $
607
608 EAPI="3"
609
610 @@ -8,8 +8,8 @@
611
612 export CTARGET=${CTARGET:-${CHOST}}
613 if [[ ${CTARGET} == ${CHOST} ]] ; then
614 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
615 - export CTARGET=${CATEGORY/cross-}
616 + if [[ ${CATEGORY} == cross-* ]] ; then
617 + export CTARGET=${CATEGORY#cross-}
618 fi
619 fi
620 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
621
622
623
624 1.2 sys-devel/gdb/gdb-7.9.ebuild
625
626 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.9.ebuild?rev=1.2&view=markup
627 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.9.ebuild?rev=1.2&content-type=text/plain
628 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.9.ebuild?r1=1.1&r2=1.2
629
630 Index: gdb-7.9.ebuild
631 ===================================================================
632 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.9.ebuild,v
633 retrieving revision 1.1
634 retrieving revision 1.2
635 diff -u -r1.1 -r1.2
636 --- gdb-7.9.ebuild 20 Feb 2015 19:53:30 -0000 1.1
637 +++ gdb-7.9.ebuild 27 Feb 2015 08:14:05 -0000 1.2
638 @@ -1,6 +1,6 @@
639 # Copyright 1999-2015 Gentoo Foundation
640 # Distributed under the terms of the GNU General Public License v2
641 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.9.ebuild,v 1.1 2015/02/20 19:53:30 vapier Exp $
642 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.9.ebuild,v 1.2 2015/02/27 08:14:05 vapier Exp $
643
644 EAPI="4"
645 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
646 @@ -9,8 +9,8 @@
647
648 export CTARGET=${CTARGET:-${CHOST}}
649 if [[ ${CTARGET} == ${CHOST} ]] ; then
650 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
651 - export CTARGET=${CATEGORY/cross-}
652 + if [[ ${CATEGORY} == cross-* ]] ; then
653 + export CTARGET=${CATEGORY#cross-}
654 fi
655 fi
656 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
657
658
659
660 1.9 sys-devel/gdb/gdb-6.8-r2.ebuild
661
662 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.8-r2.ebuild?rev=1.9&view=markup
663 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.8-r2.ebuild?rev=1.9&content-type=text/plain
664 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.8-r2.ebuild?r1=1.8&r2=1.9
665
666 Index: gdb-6.8-r2.ebuild
667 ===================================================================
668 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.8-r2.ebuild,v
669 retrieving revision 1.8
670 retrieving revision 1.9
671 diff -u -r1.8 -r1.9
672 --- gdb-6.8-r2.ebuild 20 Feb 2015 15:42:58 -0000 1.8
673 +++ gdb-6.8-r2.ebuild 27 Feb 2015 08:14:05 -0000 1.9
674 @@ -1,13 +1,13 @@
675 # Copyright 1999-2015 Gentoo Foundation
676 # Distributed under the terms of the GNU General Public License v2
677 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.8-r2.ebuild,v 1.8 2015/02/20 15:42:58 vapier Exp $
678 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.8-r2.ebuild,v 1.9 2015/02/27 08:14:05 vapier Exp $
679
680 inherit flag-o-matic eutils
681
682 export CTARGET=${CTARGET:-${CHOST}}
683 if [[ ${CTARGET} == ${CHOST} ]] ; then
684 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
685 - export CTARGET=${CATEGORY/cross-}
686 + if [[ ${CATEGORY} == cross-* ]] ; then
687 + export CTARGET=${CATEGORY#cross-}
688 fi
689 fi
690
691
692
693
694 1.13 sys-devel/gdb/gdb-7.7.1.ebuild
695
696 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.7.1.ebuild?rev=1.13&view=markup
697 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.7.1.ebuild?rev=1.13&content-type=text/plain
698 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.7.1.ebuild?r1=1.12&r2=1.13
699
700 Index: gdb-7.7.1.ebuild
701 ===================================================================
702 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.7.1.ebuild,v
703 retrieving revision 1.12
704 retrieving revision 1.13
705 diff -u -r1.12 -r1.13
706 --- gdb-7.7.1.ebuild 20 Feb 2015 15:42:58 -0000 1.12
707 +++ gdb-7.7.1.ebuild 27 Feb 2015 08:14:05 -0000 1.13
708 @@ -1,6 +1,6 @@
709 # Copyright 1999-2015 Gentoo Foundation
710 # Distributed under the terms of the GNU General Public License v2
711 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.7.1.ebuild,v 1.12 2015/02/20 15:42:58 vapier Exp $
712 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.7.1.ebuild,v 1.13 2015/02/27 08:14:05 vapier Exp $
713
714 EAPI="4"
715 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
716 @@ -9,8 +9,8 @@
717
718 export CTARGET=${CTARGET:-${CHOST}}
719 if [[ ${CTARGET} == ${CHOST} ]] ; then
720 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
721 - export CTARGET=${CATEGORY/cross-}
722 + if [[ ${CATEGORY} == cross-* ]] ; then
723 + export CTARGET=${CATEGORY#cross-}
724 fi
725 fi
726 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
727
728
729
730 1.13 sys-devel/gdb/gdb-6.7.1-r3.ebuild
731
732 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.7.1-r3.ebuild?rev=1.13&view=markup
733 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.7.1-r3.ebuild?rev=1.13&content-type=text/plain
734 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-6.7.1-r3.ebuild?r1=1.12&r2=1.13
735
736 Index: gdb-6.7.1-r3.ebuild
737 ===================================================================
738 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.7.1-r3.ebuild,v
739 retrieving revision 1.12
740 retrieving revision 1.13
741 diff -u -r1.12 -r1.13
742 --- gdb-6.7.1-r3.ebuild 20 Feb 2015 15:42:58 -0000 1.12
743 +++ gdb-6.7.1-r3.ebuild 27 Feb 2015 08:14:05 -0000 1.13
744 @@ -1,13 +1,13 @@
745 # Copyright 1999-2015 Gentoo Foundation
746 # Distributed under the terms of the GNU General Public License v2
747 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.7.1-r3.ebuild,v 1.12 2015/02/20 15:42:58 vapier Exp $
748 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.7.1-r3.ebuild,v 1.13 2015/02/27 08:14:05 vapier Exp $
749
750 inherit flag-o-matic eutils
751
752 export CTARGET=${CTARGET:-${CHOST}}
753 if [[ ${CTARGET} == ${CHOST} ]] ; then
754 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
755 - export CTARGET=${CATEGORY/cross-}
756 + if [[ ${CATEGORY} == cross-* ]] ; then
757 + export CTARGET=${CATEGORY#cross-}
758 fi
759 fi
760
761
762
763
764 1.9 sys-devel/gdb/gdb-7.6.ebuild
765
766 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.6.ebuild?rev=1.9&view=markup
767 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.6.ebuild?rev=1.9&content-type=text/plain
768 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.6.ebuild?r1=1.8&r2=1.9
769
770 Index: gdb-7.6.ebuild
771 ===================================================================
772 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.6.ebuild,v
773 retrieving revision 1.8
774 retrieving revision 1.9
775 diff -u -r1.8 -r1.9
776 --- gdb-7.6.ebuild 20 Feb 2015 15:42:58 -0000 1.8
777 +++ gdb-7.6.ebuild 27 Feb 2015 08:14:05 -0000 1.9
778 @@ -1,6 +1,6 @@
779 # Copyright 1999-2015 Gentoo Foundation
780 # Distributed under the terms of the GNU General Public License v2
781 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.6.ebuild,v 1.8 2015/02/20 15:42:58 vapier Exp $
782 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.6.ebuild,v 1.9 2015/02/27 08:14:05 vapier Exp $
783
784 EAPI="3"
785
786 @@ -8,8 +8,8 @@
787
788 export CTARGET=${CTARGET:-${CHOST}}
789 if [[ ${CTARGET} == ${CHOST} ]] ; then
790 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
791 - export CTARGET=${CATEGORY/cross-}
792 + if [[ ${CATEGORY} == cross-* ]] ; then
793 + export CTARGET=${CATEGORY#cross-}
794 fi
795 fi
796 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
797
798
799
800 1.12 sys-devel/gdb/gdb-7.0.1.ebuild
801
802 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.0.1.ebuild?rev=1.12&view=markup
803 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.0.1.ebuild?rev=1.12&content-type=text/plain
804 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.0.1.ebuild?r1=1.11&r2=1.12
805
806 Index: gdb-7.0.1.ebuild
807 ===================================================================
808 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.0.1.ebuild,v
809 retrieving revision 1.11
810 retrieving revision 1.12
811 diff -u -r1.11 -r1.12
812 --- gdb-7.0.1.ebuild 20 Feb 2015 15:42:58 -0000 1.11
813 +++ gdb-7.0.1.ebuild 27 Feb 2015 08:14:05 -0000 1.12
814 @@ -1,13 +1,13 @@
815 # Copyright 1999-2015 Gentoo Foundation
816 # Distributed under the terms of the GNU General Public License v2
817 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.0.1.ebuild,v 1.11 2015/02/20 15:42:58 vapier Exp $
818 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.0.1.ebuild,v 1.12 2015/02/27 08:14:05 vapier Exp $
819
820 inherit flag-o-matic eutils
821
822 export CTARGET=${CTARGET:-${CHOST}}
823 if [[ ${CTARGET} == ${CHOST} ]] ; then
824 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
825 - export CTARGET=${CATEGORY/cross-}
826 + if [[ ${CATEGORY} == cross-* ]] ; then
827 + export CTARGET=${CATEGORY#cross-}
828 fi
829 fi
830 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
831
832
833
834 1.9 sys-devel/gdb/gdb-7.6.1.ebuild
835
836 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.6.1.ebuild?rev=1.9&view=markup
837 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.6.1.ebuild?rev=1.9&content-type=text/plain
838 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.6.1.ebuild?r1=1.8&r2=1.9
839
840 Index: gdb-7.6.1.ebuild
841 ===================================================================
842 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.6.1.ebuild,v
843 retrieving revision 1.8
844 retrieving revision 1.9
845 diff -u -r1.8 -r1.9
846 --- gdb-7.6.1.ebuild 20 Feb 2015 15:42:58 -0000 1.8
847 +++ gdb-7.6.1.ebuild 27 Feb 2015 08:14:05 -0000 1.9
848 @@ -1,6 +1,6 @@
849 # Copyright 1999-2015 Gentoo Foundation
850 # Distributed under the terms of the GNU General Public License v2
851 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.6.1.ebuild,v 1.8 2015/02/20 15:42:58 vapier Exp $
852 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.6.1.ebuild,v 1.9 2015/02/27 08:14:05 vapier Exp $
853
854 EAPI="3"
855
856 @@ -8,8 +8,8 @@
857
858 export CTARGET=${CTARGET:-${CHOST}}
859 if [[ ${CTARGET} == ${CHOST} ]] ; then
860 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
861 - export CTARGET=${CATEGORY/cross-}
862 + if [[ ${CATEGORY} == cross-* ]] ; then
863 + export CTARGET=${CATEGORY#cross-}
864 fi
865 fi
866 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
867
868
869
870 1.5 sys-devel/gdb/gdb-7.7-r1.ebuild
871
872 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.7-r1.ebuild?rev=1.5&view=markup
873 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.7-r1.ebuild?rev=1.5&content-type=text/plain
874 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/gdb-7.7-r1.ebuild?r1=1.4&r2=1.5
875
876 Index: gdb-7.7-r1.ebuild
877 ===================================================================
878 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.7-r1.ebuild,v
879 retrieving revision 1.4
880 retrieving revision 1.5
881 diff -u -r1.4 -r1.5
882 --- gdb-7.7-r1.ebuild 20 Feb 2015 15:42:58 -0000 1.4
883 +++ gdb-7.7-r1.ebuild 27 Feb 2015 08:14:05 -0000 1.5
884 @@ -1,6 +1,6 @@
885 # Copyright 1999-2015 Gentoo Foundation
886 # Distributed under the terms of the GNU General Public License v2
887 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.7-r1.ebuild,v 1.4 2015/02/20 15:42:58 vapier Exp $
888 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-7.7-r1.ebuild,v 1.5 2015/02/27 08:14:05 vapier Exp $
889
890 EAPI="4"
891 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
892 @@ -9,8 +9,8 @@
893
894 export CTARGET=${CTARGET:-${CHOST}}
895 if [[ ${CTARGET} == ${CHOST} ]] ; then
896 - if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
897 - export CTARGET=${CATEGORY/cross-}
898 + if [[ ${CATEGORY} == cross-* ]] ; then
899 + export CTARGET=${CATEGORY#cross-}
900 fi
901 fi
902 is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
903
904
905
906 1.290 sys-devel/gdb/ChangeLog
907
908 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/ChangeLog?rev=1.290&view=markup
909 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/ChangeLog?rev=1.290&content-type=text/plain
910 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gdb/ChangeLog?r1=1.289&r2=1.290
911
912 Index: ChangeLog
913 ===================================================================
914 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v
915 retrieving revision 1.289
916 retrieving revision 1.290
917 diff -u -r1.289 -r1.290
918 --- ChangeLog 20 Feb 2015 19:53:30 -0000 1.289
919 +++ ChangeLog 27 Feb 2015 08:14:05 -0000 1.290
920 @@ -1,6 +1,16 @@
921 # ChangeLog for sys-devel/gdb
922 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
923 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v 1.289 2015/02/20 19:53:30 vapier Exp $
924 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/ChangeLog,v 1.290 2015/02/27 08:14:05 vapier Exp $
925 +
926 + 27 Feb 2015; Mike Frysinger <vapier@g.o> gdb-6.6-r2.ebuild,
927 + gdb-6.7.1-r3.ebuild, gdb-6.8-r1.ebuild, gdb-6.8-r2.ebuild, gdb-7.0.1.ebuild,
928 + gdb-7.1.ebuild, gdb-7.2.50.20101117.4.15.ebuild, gdb-7.2.ebuild,
929 + gdb-7.3.1-r1.ebuild, gdb-7.3.1.ebuild, gdb-7.3.ebuild, gdb-7.4.1.ebuild,
930 + gdb-7.4.ebuild, gdb-7.5.1.ebuild, gdb-7.5.ebuild, gdb-7.6.1.ebuild,
931 + gdb-7.6.2.ebuild, gdb-7.6.ebuild, gdb-7.7-r1.ebuild, gdb-7.7.1.ebuild,
932 + gdb-7.8.1.ebuild, gdb-7.8.2.ebuild, gdb-7.8.ebuild, gdb-7.9.ebuild,
933 + gdb-9999.ebuild:
934 + Use more readable CTARGET setup logic.
935
936 *gdb-7.9 (20 Feb 2015)