Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/mingw64-runtime/
Date: Sun, 07 Jan 2018 19:40:05
Message-Id: 1515353985.67ec9ae5fc78bc1ee31fa38caa92bb89bcf33c68.slyfox@gentoo
1 commit: 67ec9ae5fc78bc1ee31fa38caa92bb89bcf33c68
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 7 18:46:40 2018 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 7 19:39:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67ec9ae5
7
8 dev-util/mingw64-runtime: Migrate CROSSCOMPILE_OPTS=headers-only -> USE=headers-only
9
10 CROSSCOMPILE_OPTS is a USE_EXPAND of a single item: headers-only.
11 Convert it to a global USE flag instead.
12
13 Mechanical ebuild rename done as:
14 $ sed -e 's@crosscompile_opts_headers-only@headers-only@g' \
15 -i $(git grep -l headers-only)
16
17 'headers-only' flag is used by crossdev to bootstrap stage1 compiler
18 before libc is available.
19
20 crossdev switched to USE=headers-only in =sys-devel/crossdev-20171230.
21
22 Bug: https://bugs.gentoo.org/642712
23 Package-Manager: Portage-2.3.19, Repoman-2.3.6
24
25 dev-util/mingw64-runtime/mingw64-runtime-3.0.0.ebuild | 6 +++---
26 dev-util/mingw64-runtime/mingw64-runtime-3.1.0.ebuild | 6 +++---
27 dev-util/mingw64-runtime/mingw64-runtime-3.2.0-r1.ebuild | 6 +++---
28 dev-util/mingw64-runtime/mingw64-runtime-4.0.1.ebuild | 6 +++---
29 dev-util/mingw64-runtime/mingw64-runtime-4.0.4.ebuild | 6 +++---
30 dev-util/mingw64-runtime/mingw64-runtime-4.0.6.ebuild | 6 +++---
31 dev-util/mingw64-runtime/mingw64-runtime-5.0.1.ebuild | 6 +++---
32 dev-util/mingw64-runtime/mingw64-runtime-5.0.2-r1.ebuild | 6 +++---
33 dev-util/mingw64-runtime/mingw64-runtime-5.0.2-r2.ebuild | 6 +++---
34 dev-util/mingw64-runtime/mingw64-runtime-5.0.2.ebuild | 6 +++---
35 dev-util/mingw64-runtime/mingw64-runtime-5.0.3-r1.ebuild | 6 +++---
36 dev-util/mingw64-runtime/mingw64-runtime-5.0.3.ebuild | 6 +++---
37 12 files changed, 36 insertions(+), 36 deletions(-)
38
39 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-3.0.0.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-3.0.0.ebuild
40 index ce8f87cddc9..4397725c87a 100644
41 --- a/dev-util/mingw64-runtime/mingw64-runtime-3.0.0.ebuild
42 +++ b/dev-util/mingw64-runtime/mingw64-runtime-3.0.0.ebuild
43 @@ -1,4 +1,4 @@
44 -# Copyright 1999-2015 Gentoo Foundation
45 +# Copyright 1999-2018 Gentoo Foundation
46 # Distributed under the terms of the GNU General Public License v2
47
48 EAPI=5
49 @@ -20,7 +20,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
50 LICENSE="BSD"
51 SLOT="0"
52 KEYWORDS="~amd64 ~x86"
53 -IUSE="crosscompile_opts_headers-only idl"
54 +IUSE="headers-only idl"
55 RESTRICT="strip"
56
57 S="${WORKDIR}/mingw-w64-v${PV}"
58 @@ -29,7 +29,7 @@ is_crosscompile() {
59 [[ ${CHOST} != ${CTARGET} ]]
60 }
61 just_headers() {
62 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
63 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
64 }
65
66 pkg_setup() {
67
68 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-3.1.0.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-3.1.0.ebuild
69 index ce8f87cddc9..4397725c87a 100644
70 --- a/dev-util/mingw64-runtime/mingw64-runtime-3.1.0.ebuild
71 +++ b/dev-util/mingw64-runtime/mingw64-runtime-3.1.0.ebuild
72 @@ -1,4 +1,4 @@
73 -# Copyright 1999-2015 Gentoo Foundation
74 +# Copyright 1999-2018 Gentoo Foundation
75 # Distributed under the terms of the GNU General Public License v2
76
77 EAPI=5
78 @@ -20,7 +20,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
79 LICENSE="BSD"
80 SLOT="0"
81 KEYWORDS="~amd64 ~x86"
82 -IUSE="crosscompile_opts_headers-only idl"
83 +IUSE="headers-only idl"
84 RESTRICT="strip"
85
86 S="${WORKDIR}/mingw-w64-v${PV}"
87 @@ -29,7 +29,7 @@ is_crosscompile() {
88 [[ ${CHOST} != ${CTARGET} ]]
89 }
90 just_headers() {
91 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
92 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
93 }
94
95 pkg_setup() {
96
97 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-3.2.0-r1.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-3.2.0-r1.ebuild
98 index ce8f87cddc9..4397725c87a 100644
99 --- a/dev-util/mingw64-runtime/mingw64-runtime-3.2.0-r1.ebuild
100 +++ b/dev-util/mingw64-runtime/mingw64-runtime-3.2.0-r1.ebuild
101 @@ -1,4 +1,4 @@
102 -# Copyright 1999-2015 Gentoo Foundation
103 +# Copyright 1999-2018 Gentoo Foundation
104 # Distributed under the terms of the GNU General Public License v2
105
106 EAPI=5
107 @@ -20,7 +20,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
108 LICENSE="BSD"
109 SLOT="0"
110 KEYWORDS="~amd64 ~x86"
111 -IUSE="crosscompile_opts_headers-only idl"
112 +IUSE="headers-only idl"
113 RESTRICT="strip"
114
115 S="${WORKDIR}/mingw-w64-v${PV}"
116 @@ -29,7 +29,7 @@ is_crosscompile() {
117 [[ ${CHOST} != ${CTARGET} ]]
118 }
119 just_headers() {
120 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
121 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
122 }
123
124 pkg_setup() {
125
126 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-4.0.1.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-4.0.1.ebuild
127 index b298a1a5304..3bb7305cf0f 100644
128 --- a/dev-util/mingw64-runtime/mingw64-runtime-4.0.1.ebuild
129 +++ b/dev-util/mingw64-runtime/mingw64-runtime-4.0.1.ebuild
130 @@ -1,4 +1,4 @@
131 -# Copyright 1999-2015 Gentoo Foundation
132 +# Copyright 1999-2018 Gentoo Foundation
133 # Distributed under the terms of the GNU General Public License v2
134
135 EAPI=5
136 @@ -22,7 +22,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
137 LICENSE="BSD"
138 SLOT="0"
139 KEYWORDS="~amd64 ~x86"
140 -IUSE="crosscompile_opts_headers-only idl libraries tools"
141 +IUSE="headers-only idl libraries tools"
142 RESTRICT="strip"
143
144 S="${WORKDIR}/mingw-w64-v${PV}"
145 @@ -31,7 +31,7 @@ is_crosscompile() {
146 [[ ${CHOST} != ${CTARGET} ]]
147 }
148 just_headers() {
149 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
150 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
151 }
152 crt_with() {
153 just_headers && echo --without-$1 || echo --with-$1
154
155 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-4.0.4.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-4.0.4.ebuild
156 index 2fc6dd78d67..f279453e0e4 100644
157 --- a/dev-util/mingw64-runtime/mingw64-runtime-4.0.4.ebuild
158 +++ b/dev-util/mingw64-runtime/mingw64-runtime-4.0.4.ebuild
159 @@ -1,4 +1,4 @@
160 -# Copyright 1999-2015 Gentoo Foundation
161 +# Copyright 1999-2018 Gentoo Foundation
162 # Distributed under the terms of the GNU General Public License v2
163
164 EAPI=5
165 @@ -22,7 +22,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
166 LICENSE="BSD"
167 SLOT="0"
168 KEYWORDS="~amd64 ~x86"
169 -IUSE="crosscompile_opts_headers-only idl libraries tools"
170 +IUSE="headers-only idl libraries tools"
171 RESTRICT="strip"
172
173 S="${WORKDIR}/mingw-w64-v${PV}"
174 @@ -31,7 +31,7 @@ is_crosscompile() {
175 [[ ${CHOST} != ${CTARGET} ]]
176 }
177 just_headers() {
178 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
179 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
180 }
181 crt_with() {
182 just_headers && echo --without-$1 || echo --with-$1
183
184 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-4.0.6.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-4.0.6.ebuild
185 index 8b0d38b204c..2a652328142 100644
186 --- a/dev-util/mingw64-runtime/mingw64-runtime-4.0.6.ebuild
187 +++ b/dev-util/mingw64-runtime/mingw64-runtime-4.0.6.ebuild
188 @@ -1,4 +1,4 @@
189 -# Copyright 1999-2016 Gentoo Foundation
190 +# Copyright 1999-2018 Gentoo Foundation
191 # Distributed under the terms of the GNU General Public License v2
192
193 EAPI=5
194 @@ -22,7 +22,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
195 LICENSE="BSD"
196 SLOT="0"
197 KEYWORDS="~amd64 ~x86"
198 -IUSE="crosscompile_opts_headers-only idl libraries tools"
199 +IUSE="headers-only idl libraries tools"
200 RESTRICT="strip"
201
202 S="${WORKDIR}/mingw-w64-v${PV}"
203 @@ -31,7 +31,7 @@ is_crosscompile() {
204 [[ ${CHOST} != ${CTARGET} ]]
205 }
206 just_headers() {
207 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
208 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
209 }
210 crt_with() {
211 just_headers && echo --without-$1 || echo --with-$1
212
213 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-5.0.1.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-5.0.1.ebuild
214 index 408aa8d8e7b..d013a17c428 100644
215 --- a/dev-util/mingw64-runtime/mingw64-runtime-5.0.1.ebuild
216 +++ b/dev-util/mingw64-runtime/mingw64-runtime-5.0.1.ebuild
217 @@ -1,4 +1,4 @@
218 -# Copyright 1999-2017 Gentoo Foundation
219 +# Copyright 1999-2018 Gentoo Foundation
220 # Distributed under the terms of the GNU General Public License v2
221
222 EAPI=6
223 @@ -22,7 +22,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
224 LICENSE="BSD"
225 SLOT="0"
226 KEYWORDS="~amd64 ~x86"
227 -IUSE="crosscompile_opts_headers-only idl libraries tools"
228 +IUSE="headers-only idl libraries tools"
229 RESTRICT="strip"
230
231 S="${WORKDIR}/mingw-w64-v${PV}"
232 @@ -36,7 +36,7 @@ is_crosscompile() {
233 [[ ${CHOST} != ${CTARGET} ]]
234 }
235 just_headers() {
236 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
237 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
238 }
239 crt_with() {
240 just_headers && echo --without-$1 || echo --with-$1
241
242 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-5.0.2-r1.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-5.0.2-r1.ebuild
243 index 534091fe654..25df5eae738 100644
244 --- a/dev-util/mingw64-runtime/mingw64-runtime-5.0.2-r1.ebuild
245 +++ b/dev-util/mingw64-runtime/mingw64-runtime-5.0.2-r1.ebuild
246 @@ -1,4 +1,4 @@
247 -# Copyright 1999-2017 Gentoo Foundation
248 +# Copyright 1999-2018 Gentoo Foundation
249 # Distributed under the terms of the GNU General Public License v2
250
251 EAPI=6
252 @@ -22,7 +22,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
253 LICENSE="BSD"
254 SLOT="0"
255 KEYWORDS="~amd64 ~x86"
256 -IUSE="crosscompile_opts_headers-only idl libraries tools"
257 +IUSE="headers-only idl libraries tools"
258 RESTRICT="strip"
259
260 S="${WORKDIR}/mingw-w64-v${PV}"
261 @@ -37,7 +37,7 @@ is_crosscompile() {
262 [[ ${CHOST} != ${CTARGET} ]]
263 }
264 just_headers() {
265 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
266 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
267 }
268 crt_with() {
269 just_headers && echo --without-$1 || echo --with-$1
270
271 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-5.0.2-r2.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-5.0.2-r2.ebuild
272 index 0edd83c0035..5141174deb4 100644
273 --- a/dev-util/mingw64-runtime/mingw64-runtime-5.0.2-r2.ebuild
274 +++ b/dev-util/mingw64-runtime/mingw64-runtime-5.0.2-r2.ebuild
275 @@ -1,4 +1,4 @@
276 -# Copyright 1999-2017 Gentoo Foundation
277 +# Copyright 1999-2018 Gentoo Foundation
278 # Distributed under the terms of the GNU General Public License v2
279
280 EAPI=6
281 @@ -22,7 +22,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
282 LICENSE="BSD"
283 SLOT="0"
284 KEYWORDS="~amd64 ~x86"
285 -IUSE="crosscompile_opts_headers-only idl libraries tools"
286 +IUSE="headers-only idl libraries tools"
287 RESTRICT="strip"
288
289 S="${WORKDIR}/mingw-w64-v${PV}"
290 @@ -38,7 +38,7 @@ is_crosscompile() {
291 [[ ${CHOST} != ${CTARGET} ]]
292 }
293 just_headers() {
294 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
295 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
296 }
297 crt_with() {
298 just_headers && echo --without-$1 || echo --with-$1
299
300 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-5.0.2.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-5.0.2.ebuild
301 index 408aa8d8e7b..d013a17c428 100644
302 --- a/dev-util/mingw64-runtime/mingw64-runtime-5.0.2.ebuild
303 +++ b/dev-util/mingw64-runtime/mingw64-runtime-5.0.2.ebuild
304 @@ -1,4 +1,4 @@
305 -# Copyright 1999-2017 Gentoo Foundation
306 +# Copyright 1999-2018 Gentoo Foundation
307 # Distributed under the terms of the GNU General Public License v2
308
309 EAPI=6
310 @@ -22,7 +22,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
311 LICENSE="BSD"
312 SLOT="0"
313 KEYWORDS="~amd64 ~x86"
314 -IUSE="crosscompile_opts_headers-only idl libraries tools"
315 +IUSE="headers-only idl libraries tools"
316 RESTRICT="strip"
317
318 S="${WORKDIR}/mingw-w64-v${PV}"
319 @@ -36,7 +36,7 @@ is_crosscompile() {
320 [[ ${CHOST} != ${CTARGET} ]]
321 }
322 just_headers() {
323 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
324 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
325 }
326 crt_with() {
327 just_headers && echo --without-$1 || echo --with-$1
328
329 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-5.0.3-r1.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-5.0.3-r1.ebuild
330 index 1b9f05639b8..0dcbcfe06ee 100644
331 --- a/dev-util/mingw64-runtime/mingw64-runtime-5.0.3-r1.ebuild
332 +++ b/dev-util/mingw64-runtime/mingw64-runtime-5.0.3-r1.ebuild
333 @@ -1,4 +1,4 @@
334 -# Copyright 1999-2017 Gentoo Foundation
335 +# Copyright 1999-2018 Gentoo Foundation
336 # Distributed under the terms of the GNU General Public License v2
337
338 EAPI=6
339 @@ -22,7 +22,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
340 LICENSE="BSD"
341 SLOT="0"
342 KEYWORDS="~amd64 ~x86"
343 -IUSE="crosscompile_opts_headers-only idl libraries tools"
344 +IUSE="headers-only idl libraries tools"
345 RESTRICT="strip"
346
347 S="${WORKDIR}/mingw-w64-v${PV}"
348 @@ -35,7 +35,7 @@ is_crosscompile() {
349 [[ ${CHOST} != ${CTARGET} ]]
350 }
351 just_headers() {
352 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
353 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
354 }
355 crt_with() {
356 just_headers && echo --without-$1 || echo --with-$1
357
358 diff --git a/dev-util/mingw64-runtime/mingw64-runtime-5.0.3.ebuild b/dev-util/mingw64-runtime/mingw64-runtime-5.0.3.ebuild
359 index a21054499a0..225bba7d732 100644
360 --- a/dev-util/mingw64-runtime/mingw64-runtime-5.0.3.ebuild
361 +++ b/dev-util/mingw64-runtime/mingw64-runtime-5.0.3.ebuild
362 @@ -1,4 +1,4 @@
363 -# Copyright 1999-2017 Gentoo Foundation
364 +# Copyright 1999-2018 Gentoo Foundation
365 # Distributed under the terms of the GNU General Public License v2
366
367 EAPI=6
368 @@ -22,7 +22,7 @@ SRC_URI="mirror://sourceforge/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v$
369 LICENSE="BSD"
370 SLOT="0"
371 KEYWORDS="~amd64 ~x86"
372 -IUSE="crosscompile_opts_headers-only idl libraries tools"
373 +IUSE="headers-only idl libraries tools"
374 RESTRICT="strip"
375
376 S="${WORKDIR}/mingw-w64-v${PV}"
377 @@ -35,7 +35,7 @@ is_crosscompile() {
378 [[ ${CHOST} != ${CTARGET} ]]
379 }
380 just_headers() {
381 - use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
382 + use headers-only && [[ ${CHOST} != ${CTARGET} ]]
383 }
384 crt_with() {
385 just_headers && echo --without-$1 || echo --with-$1