Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/binutils-apple: binutils-apple-4.3-r1.ebuild binutils-apple-4.2-r1.ebuild binutils-apple-5.1.ebuild binutils-apple-4.2.ebuild binutils-apple-4.3.ebuild ChangeLog
Date: Wed, 04 Feb 2015 17:40:01
Message-Id: 20150204173958.5EB8D110CE@oystercatcher.gentoo.org
1 grobian 15/02/04 17:39:58
2
3 Modified: binutils-apple-4.3-r1.ebuild
4 binutils-apple-4.2-r1.ebuild
5 binutils-apple-5.1.ebuild binutils-apple-4.2.ebuild
6 binutils-apple-4.3.ebuild ChangeLog
7 Log:
8 Guard Darwin version checks for Darwin CHOSTs only
9
10 (Portage version: 2.2.14-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
11
12 Revision Changes Path
13 1.3 sys-devel/binutils-apple/binutils-apple-4.3-r1.ebuild
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3-r1.ebuild?rev=1.3&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3-r1.ebuild?rev=1.3&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3-r1.ebuild?r1=1.2&r2=1.3
18
19 Index: binutils-apple-4.3-r1.ebuild
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3-r1.ebuild,v
22 retrieving revision 1.2
23 retrieving revision 1.3
24 diff -u -r1.2 -r1.3
25 --- binutils-apple-4.3-r1.ebuild 4 Feb 2015 02:55:23 -0000 1.2
26 +++ binutils-apple-4.3-r1.ebuild 4 Feb 2015 17:39:58 -0000 1.3
27 @@ -1,6 +1,6 @@
28 # Copyright 1999-2015 Gentoo Foundation
29 # Distributed under the terms of the GNU General Public License v2
30 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3-r1.ebuild,v 1.2 2015/02/04 02:55:23 patrick Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3-r1.ebuild,v 1.3 2015/02/04 17:39:58 grobian Exp $
32
33 EAPI="3"
34
35 @@ -91,7 +91,7 @@
36
37 # mimic OS X Leopard-style Availability.h macros for libunwind.h on
38 # older systems
39 - [[ ${CHOST#*-darwin} -le 8 ]] && \
40 + [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -le 8 ]] && \
41 echo "#define __OSX_AVAILABLE_STARTING(x,y) " > include/Availability.h
42
43 local VER_STR="\"@(#)PROGRAM:ld PROJECT:${LD64} (Gentoo ${PN}-${PVR})\\n\""
44 @@ -175,7 +175,7 @@
45 append-cppflags -DNDEBUG
46
47 CCTOOLS_OFLAG=
48 - if [ ${CHOST#*-darwin} -le 8 ] ; then
49 + if [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -le 8 ]] ; then
50 # cctools expect to use UNIX03 struct member names.
51 # This is default on > 10.4. Activate it on <= 10.4 by defining
52 # __DARWIN_UNIX03 explicitly.
53
54
55
56 1.3 sys-devel/binutils-apple/binutils-apple-4.2-r1.ebuild
57
58 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2-r1.ebuild?rev=1.3&view=markup
59 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2-r1.ebuild?rev=1.3&content-type=text/plain
60 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2-r1.ebuild?r1=1.2&r2=1.3
61
62 Index: binutils-apple-4.2-r1.ebuild
63 ===================================================================
64 RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2-r1.ebuild,v
65 retrieving revision 1.2
66 retrieving revision 1.3
67 diff -u -r1.2 -r1.3
68 --- binutils-apple-4.2-r1.ebuild 4 Feb 2015 02:55:23 -0000 1.2
69 +++ binutils-apple-4.2-r1.ebuild 4 Feb 2015 17:39:58 -0000 1.3
70 @@ -1,6 +1,6 @@
71 # Copyright 1999-2015 Gentoo Foundation
72 # Distributed under the terms of the GNU General Public License v2
73 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2-r1.ebuild,v 1.2 2015/02/04 02:55:23 patrick Exp $
74 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2-r1.ebuild,v 1.3 2015/02/04 17:39:58 grobian Exp $
75
76 EAPI="3"
77
78 @@ -93,7 +93,7 @@
79
80 # mimic OS X Leopard-style Availability.h macros for libunwind.h on
81 # older systems
82 - [[ ${CHOST#*-darwin} -le 8 ]] && \
83 + [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -le 8 ]] && \
84 echo "#define __OSX_AVAILABLE_STARTING(x,y) " > include/Availability.h
85
86 local VER_STR="\"@(#)PROGRAM:ld PROJECT:${LD64} (Gentoo ${PN}-${PVR})\\n\""
87 @@ -191,7 +191,7 @@
88 append-cppflags -DNDEBUG
89
90 CCTOOLS_OFLAG=
91 - if [ ${CHOST#*-darwin} -le 8 ] ; then
92 + if [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -le 8 ]] ; then
93 # cctools expect to use UNIX03 struct member names.
94 # This is default on > 10.4. Activate it on <= 10.4 by defining
95 # __DARWIN_UNIX03 explicitly.
96
97
98
99 1.3 sys-devel/binutils-apple/binutils-apple-5.1.ebuild
100
101 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-5.1.ebuild?rev=1.3&view=markup
102 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-5.1.ebuild?rev=1.3&content-type=text/plain
103 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-5.1.ebuild?r1=1.2&r2=1.3
104
105 Index: binutils-apple-5.1.ebuild
106 ===================================================================
107 RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-5.1.ebuild,v
108 retrieving revision 1.2
109 retrieving revision 1.3
110 diff -u -r1.2 -r1.3
111 --- binutils-apple-5.1.ebuild 31 Jan 2015 02:33:23 -0000 1.2
112 +++ binutils-apple-5.1.ebuild 4 Feb 2015 17:39:58 -0000 1.3
113 @@ -1,6 +1,6 @@
114 # Copyright 1999-2015 Gentoo Foundation
115 # Distributed under the terms of the GNU General Public License v2
116 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-5.1.ebuild,v 1.2 2015/01/31 02:33:23 patrick Exp $
117 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-5.1.ebuild,v 1.3 2015/02/04 17:39:58 grobian Exp $
118
119 EAPI="3"
120
121 @@ -101,7 +101,7 @@
122
123 # mimic OS X Leopard-style Availability.h macros for libunwind.h on
124 # older systems
125 - [[ ${CHOST#*-darwin} -le 8 ]] && \
126 + [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -le 8 ]] && \
127 echo "#define __OSX_AVAILABLE_STARTING(x,y) " > include/Availability.h
128
129 local VER_STR="\"@(#)PROGRAM:ld PROJECT:${LD64} (Gentoo ${PN}-${PVR})\\n\""
130 @@ -200,11 +200,11 @@
131 append-cppflags -DNDEBUG
132
133 # Block API and thus snapshots supported on >= 10.6
134 - [ ${CHOST#*-darwin} -ge 10 ] && \
135 + [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -ge 10 ]] && \
136 append-cppflags -DSUPPORT_SNAPSHOTS
137
138 CCTOOLS_OFLAG=
139 - if [ ${CHOST#*-darwin} -le 8 ] ; then
140 + if [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -le 8 ]] ; then
141 # cctools expect to use UNIX03 struct member names.
142 # This is default on > 10.4. Activate it on <= 10.4 by defining
143 # __DARWIN_UNIX03 explicitly.
144
145
146
147 1.8 sys-devel/binutils-apple/binutils-apple-4.2.ebuild
148
149 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2.ebuild?rev=1.8&view=markup
150 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2.ebuild?rev=1.8&content-type=text/plain
151 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2.ebuild?r1=1.7&r2=1.8
152
153 Index: binutils-apple-4.2.ebuild
154 ===================================================================
155 RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2.ebuild,v
156 retrieving revision 1.7
157 retrieving revision 1.8
158 diff -u -r1.7 -r1.8
159 --- binutils-apple-4.2.ebuild 31 Jan 2015 02:33:23 -0000 1.7
160 +++ binutils-apple-4.2.ebuild 4 Feb 2015 17:39:58 -0000 1.8
161 @@ -1,6 +1,6 @@
162 # Copyright 1999-2015 Gentoo Foundation
163 # Distributed under the terms of the GNU General Public License v2
164 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2.ebuild,v 1.7 2015/01/31 02:33:23 patrick Exp $
165 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.2.ebuild,v 1.8 2015/02/04 17:39:58 grobian Exp $
166
167 EAPI="3"
168
169 @@ -77,7 +77,7 @@
170 ln -s ../../${LIBUNWIND}/src libunwind || die
171 cp ../../${LIBUNWIND}/include/*.h include/ || die
172 # mimic OS X Lion-style Availability.h macros
173 - if [[ ${CHOST#*-darwin} -le 10 ]] ; then
174 + if [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -le 10 ]] ; then
175 {
176 echo "#define __OSX_AVAILABLE_STARTING(x,y) "
177 echo "#define __OSX_AVAILABLE_BUT_DEPRECATED(a,b,c,d) "
178
179
180
181 1.6 sys-devel/binutils-apple/binutils-apple-4.3.ebuild
182
183 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3.ebuild?rev=1.6&view=markup
184 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3.ebuild?rev=1.6&content-type=text/plain
185 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3.ebuild?r1=1.5&r2=1.6
186
187 Index: binutils-apple-4.3.ebuild
188 ===================================================================
189 RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3.ebuild,v
190 retrieving revision 1.5
191 retrieving revision 1.6
192 diff -u -r1.5 -r1.6
193 --- binutils-apple-4.3.ebuild 31 Jan 2015 02:33:23 -0000 1.5
194 +++ binutils-apple-4.3.ebuild 4 Feb 2015 17:39:58 -0000 1.6
195 @@ -1,6 +1,6 @@
196 # Copyright 1999-2015 Gentoo Foundation
197 # Distributed under the terms of the GNU General Public License v2
198 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3.ebuild,v 1.5 2015/01/31 02:33:23 patrick Exp $
199 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-4.3.ebuild,v 1.6 2015/02/04 17:39:58 grobian Exp $
200
201 EAPI="3"
202
203 @@ -77,7 +77,7 @@
204 ln -s ../../${LIBUNWIND}/src libunwind || die
205 cp ../../${LIBUNWIND}/include/*.h include/ || die
206 # mimic OS X Lion-style Availability.h macros
207 - if [[ ${CHOST#*-darwin} -le 10 ]] ; then
208 + if [[ ${CHOST} == *darwin* && ${CHOST#*-darwin} -le 10 ]] ; then
209 {
210 echo "#define __OSX_AVAILABLE_STARTING(x,y) "
211 echo "#define __OSX_AVAILABLE_BUT_DEPRECATED(a,b,c,d) "
212
213
214
215 1.42 sys-devel/binutils-apple/ChangeLog
216
217 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/ChangeLog?rev=1.42&view=markup
218 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/ChangeLog?rev=1.42&content-type=text/plain
219 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/binutils-apple/ChangeLog?r1=1.41&r2=1.42
220
221 Index: ChangeLog
222 ===================================================================
223 RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v
224 retrieving revision 1.41
225 retrieving revision 1.42
226 diff -u -r1.41 -r1.42
227 --- ChangeLog 4 Feb 2015 17:33:20 -0000 1.41
228 +++ ChangeLog 4 Feb 2015 17:39:58 -0000 1.42
229 @@ -1,6 +1,11 @@
230 # ChangeLog for sys-devel/binutils-apple
231 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
232 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v 1.41 2015/02/04 17:33:20 grobian Exp $
233 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v 1.42 2015/02/04 17:39:58 grobian Exp $
234 +
235 + 04 Feb 2015; Fabian Groffen <grobian@g.o> binutils-apple-4.2-r1.ebuild,
236 + binutils-apple-4.2.ebuild, binutils-apple-4.3-r1.ebuild,
237 + binutils-apple-4.3.ebuild, binutils-apple-5.1.ebuild:
238 + Guard Darwin version checks for Darwin CHOSTs only
239
240 04 Feb 2015; Fabian Groffen <grobian@g.o>
241 +files/ld64-241.9-lto-noremarks.patch, binutils-apple-6.1.ebuild: