From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E8F96138330 for ; Sun, 7 Jan 2018 19:51:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C04BFE0863; Sun, 7 Jan 2018 19:51:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6D96AE0839 for ; Sun, 7 Jan 2018 19:51:44 +0000 (UTC) Received: from sf (trofi-1-pt.tunnel.tserv1.lon2.ipv6.he.net [IPv6:2001:470:1f1c:a0f::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: slyfox) by smtp.gentoo.org (Postfix) with ESMTPSA id D8B5E340D78; Sun, 7 Jan 2018 19:51:41 +0000 (UTC) Date: Sun, 7 Jan 2018 19:51:38 +0000 From: Sergei Trofimovich To: gentoo-dev@lists.gentoo.org Cc: toolchain@gentoo.org, embedded@gentoo.org, kernel@gentoo.org, bsd@gentoo.org, blueness@gentoo.org, lu_zero@gentoo.org Subject: [gentoo-dev] Re: [PATCH] Migrate CROSSCOMPILE_OPTS=headers-only -> USE=headers-only Message-ID: <20180107195138.5649cda1@sf> In-Reply-To: <20171230184802.10775-1-slyfox@gentoo.org> References: <20171230184802.10775-1-slyfox@gentoo.org> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.31; x86_64-pc-linux-gnu) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Archives-Salt: bbd52576-4d7d-47fd-8672-d1d9dc3dc0ec X-Archives-Hash: be731aadb049f9081dff5b60864e1b8f On Sat, 30 Dec 2017 18:48:02 +0000 Sergei Trofimovich wrote: > CROSSCOMPILE_OPTS is a USE_EXPAND of a single item: headers-only. > Convert it to a global USE flag instead. >=20 > The changes are: > - mechanical ebuild rename (touches libcs and kernel headers): > $ sed -e 's@crosscompile_opts_headers-only@headers-only@g' \ > -i $(git grep -l headers-only) > - added global 'headers-only' USE > - CROSSCOMPILE_OPTS USE_EXPAND is removed >=20 > 'headers-only' flag is used by crossdev to bootstrap stage1 compiler > before libc is available. >=20 > crossdev switched to USE=3Dheaders-only in =3Dsys-devel/crossdev-20171230. > After crossdev goes stable this change can go in. >=20 > CC: toolchain@gentoo.org > CC: embedded@gentoo.org > CC: kernel@gentoo.org > CC: bsd@gentoo.org > CC: blueness@gentoo.org > CC: lu_zero@gentoo.org > Reported-by: Micha=C5=82 G=C3=B3rny > Bug: https://bugs.gentoo.org/642712 > Signed-off-by: Sergei Trofimovich Pushed as a batch of commits: 8dd32dc8bd8 profiles: drop CROSSCOMPILE_OPTS USE_EXPAND, bug #642712 e1172c04556 toolchain.eclass: Migrate CROSSCOMPILE_OPTS=3Dheaders-only -> U= SE=3Dheaders-only 60b276fb7c3 toolchain-glibc.eclass: Migrate CROSSCOMPILE_OPTS=3Dheaders-onl= y -> USE=3Dheaders-only ce86854ff88 kernel-2.eclass: Migrate CROSSCOMPILE_OPTS=3Dheaders-only -> US= E=3Dheaders-only 98965f4b376 dev-embedded/avr-libc: Migrate CROSSCOMPILE_OPTS=3Dheaders-only= -> USE=3Dheaders-only e18277296d7 dev-libs/cygwin: Migrate CROSSCOMPILE_OPTS=3Dheaders-only -> US= E=3Dheaders-only d4ea3345c87 dev-util/mingw-runtime: Migrate CROSSCOMPILE_OPTS=3Dheaders-onl= y -> USE=3Dheaders-only 67ec9ae5fc7 dev-util/mingw64-runtime: Migrate CROSSCOMPILE_OPTS=3Dheaders-o= nly -> USE=3Dheaders-only 84524c10349 dev-util/w32api: Migrate CROSSCOMPILE_OPTS=3Dheaders-only -> US= E=3Dheaders-only 11ad885f29c sys-freebsd/freebsd-lib: Migrate CROSSCOMPILE_OPTS=3Dheaders-on= ly -> USE=3Dheaders-only 91a02442c5a sys-libs/glibc: Migrate CROSSCOMPILE_OPTS=3Dheaders-only -> USE= =3Dheaders-only d0bf3364d71 sys-libs/musl: Migrate CROSSCOMPILE_OPTS=3Dheaders-only -> USE= =3Dheaders-only 7ebe9beefaf sys-libs/newlib: Migrate CROSSCOMPILE_OPTS=3Dheaders-only -> US= E=3Dheaders-only 113d629bf4c sys-libs/uclibc: Migrate CROSSCOMPILE_OPTS=3Dheaders-only -> US= E=3Dheaders-only 365914db135 sys-libs/uclibc-ng: Migrate CROSSCOMPILE_OPTS=3Dheaders-only ->= USE=3Dheaders-only 7866e987215 profiles/use.desc: add new USE=3Dheaders-only global flag --=20 Sergei