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 1333E138330 for ; Sun, 7 Jan 2018 19:40:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39010E085A; Sun, 7 Jan 2018 19:39:59 +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 09FA6E085A for ; Sun, 7 Jan 2018 19:39:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D7533340DC6 for ; Sun, 7 Jan 2018 19:39:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6229E1A7 for ; Sun, 7 Jan 2018 19:39:55 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1515353984.d0bf3364d7179e707a55f502c2e760a2daafb5db.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/musl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/musl/musl-1.1.18.ebuild sys-libs/musl/musl-9999.ebuild X-VCS-Directories: sys-libs/musl/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: d0bf3364d7179e707a55f502c2e760a2daafb5db X-VCS-Branch: master Date: Sun, 7 Jan 2018 19:39:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8bf2f0ba-06a4-4979-a84a-75fcf8ecc649 X-Archives-Hash: e586c656da33c13fb4597e6897bc2e6e commit: d0bf3364d7179e707a55f502c2e760a2daafb5db Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Jan 7 18:42:56 2018 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jan 7 19:39:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0bf3364 sys-libs/musl: Migrate CROSSCOMPILE_OPTS=headers-only -> USE=headers-only CROSSCOMPILE_OPTS is a USE_EXPAND of a single item: headers-only. Convert it to a global USE flag instead. Mechanical ebuild rename done as: $ sed -e 's@crosscompile_opts_headers-only@headers-only@g' \ -i $(git grep -l headers-only) 'headers-only' flag is used by crossdev to bootstrap stage1 compiler before libc is available. crossdev switched to USE=headers-only in =sys-devel/crossdev-20171230. Bug: https://bugs.gentoo.org/642712 Package-Manager: Portage-2.3.19, Repoman-2.3.6 sys-libs/musl/musl-1.1.18.ebuild | 6 +++--- sys-libs/musl/musl-9999.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sys-libs/musl/musl-1.1.18.ebuild b/sys-libs/musl/musl-1.1.18.ebuild index a36df0d0e87..e36e2199458 100644 --- a/sys-libs/musl/musl-1.1.18.ebuild +++ b/sys-libs/musl/musl-1.1.18.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -32,7 +32,7 @@ DESCRIPTION="Light, fast and simple C library focused on standards-conformance a HOMEPAGE="http://www.musl-libc.org/" LICENSE="MIT LGPL-2 GPL-2" SLOT="0" -IUSE="crosscompile_opts_headers-only" +IUSE="headers-only" QA_SONAME="/usr/lib/libc.so" QA_DT_NEEDED="/usr/lib/libc.so" @@ -42,7 +42,7 @@ is_crosscompile() { } just_headers() { - use crosscompile_opts_headers-only && is_crosscompile + use headers-only && is_crosscompile } pkg_setup() { diff --git a/sys-libs/musl/musl-9999.ebuild b/sys-libs/musl/musl-9999.ebuild index 9e0e184d656..991afd750a8 100644 --- a/sys-libs/musl/musl-9999.ebuild +++ b/sys-libs/musl/musl-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -32,7 +32,7 @@ DESCRIPTION="Light, fast and simple C library focused on standards-conformance a HOMEPAGE="http://www.musl-libc.org/" LICENSE="MIT LGPL-2 GPL-2" SLOT="0" -IUSE="crosscompile_opts_headers-only" +IUSE="headers-only" QA_SONAME="/usr/lib/libc.so" QA_DT_NEEDED="/usr/lib/libc.so" @@ -42,7 +42,7 @@ is_crosscompile() { } just_headers() { - use crosscompile_opts_headers-only && is_crosscompile + use headers-only && is_crosscompile } pkg_setup() {