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 2E3961395E2 for ; Sun, 20 Nov 2016 10:09:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86528E0BF0; Sun, 20 Nov 2016 10:09:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60D15E0BF0 for ; Sun, 20 Nov 2016 10:09:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 89635340EE1 for ; Sun, 20 Nov 2016 10:09:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2CD43492 for ; Sun, 20 Nov 2016 10:09:13 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1479636546.761f99ae251bbedafe1ad076b77023772291dc44.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang-runtime/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang-runtime/clang-runtime-3.9.0.ebuild sys-devel/clang-runtime/clang-runtime-9999.ebuild X-VCS-Directories: sys-devel/clang-runtime/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 761f99ae251bbedafe1ad076b77023772291dc44 X-VCS-Branch: master Date: Sun, 20 Nov 2016 10:09:13 +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: d2a278ae-54e8-4945-88f9-f1058e93552b X-Archives-Hash: 1db6e1d6033422fdd9f79680a0356263 commit: 761f99ae251bbedafe1ad076b77023772291dc44 Author: Michał Górny gentoo org> AuthorDate: Sun Nov 20 09:09:17 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 20 10:09:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=761f99ae sys-devel/clang-runtime: Add multilib propagation flags Add multilib flags and use them to propagate ABI support to runtime packages. This makes it possible to reliably enforce support for a particular ABI via the central package. sys-devel/clang-runtime/clang-runtime-3.9.0.ebuild | 6 ++++-- sys-devel/clang-runtime/clang-runtime-9999.ebuild | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/sys-devel/clang-runtime/clang-runtime-3.9.0.ebuild b/sys-devel/clang-runtime/clang-runtime-3.9.0.ebuild index 29c4a2d..d2b06e9 100644 --- a/sys-devel/clang-runtime/clang-runtime-3.9.0.ebuild +++ b/sys-devel/clang-runtime/clang-runtime-3.9.0.ebuild @@ -4,6 +4,8 @@ EAPI=6 +inherit multilib-build + DESCRIPTION="Meta-ebuild for clang runtime libraries" HOMEPAGE="http://clang.llvm.org/" SRC_URI="" @@ -15,5 +17,5 @@ IUSE="libcxx openmp" # compiler-rt is installed unconditionally RDEPEND=" - libcxx? ( ~sys-libs/libcxx-${PV} ) - openmp? ( ~sys-libs/libomp-${PV} )" + libcxx? ( ~sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] ) + openmp? ( ~sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )" diff --git a/sys-devel/clang-runtime/clang-runtime-9999.ebuild b/sys-devel/clang-runtime/clang-runtime-9999.ebuild index a29a541..d224ca0 100644 --- a/sys-devel/clang-runtime/clang-runtime-9999.ebuild +++ b/sys-devel/clang-runtime/clang-runtime-9999.ebuild @@ -4,6 +4,8 @@ EAPI=6 +inherit multilib-build + DESCRIPTION="Meta-ebuild for clang runtime libraries" HOMEPAGE="http://clang.llvm.org/" SRC_URI="" @@ -18,7 +20,7 @@ RDEPEND=" ~sys-libs/compiler-rt-${PV} sanitize? ( ~sys-libs/compiler-rt-sanitizers-${PV} ) ) - libcxx? ( ~sys-libs/libcxx-${PV} ) - openmp? ( ~sys-libs/libomp-${PV} )" + libcxx? ( ~sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] ) + openmp? ( ~sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )" REQUIRED_USE="sanitize? ( compiler-rt )"