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 BCFEE138331 for ; Fri, 9 Mar 2018 23:11:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19874E0843; Fri, 9 Mar 2018 23:11:34 +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 DEF1DE0843 for ; Fri, 9 Mar 2018 23:11:33 +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 81F49335C09 for ; Fri, 9 Mar 2018 23:11:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD03F1CC for ; Fri, 9 Mar 2018 23:11:30 +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: <1520637085.3c93f9d2a10e4c1725440850e77d2bc12cfce6a8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang/clang-4.0.1.ebuild sys-devel/clang/clang-5.0.1.ebuild sys-devel/clang/clang-6.0.0.ebuild sys-devel/clang/clang-6.0.9999.ebuild sys-devel/clang/clang-9999.ebuild X-VCS-Directories: sys-devel/clang/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3c93f9d2a10e4c1725440850e77d2bc12cfce6a8 X-VCS-Branch: master Date: Fri, 9 Mar 2018 23:11:30 +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: b0dc6891-26f8-4294-b983-4d34d326e0f2 X-Archives-Hash: 2e7b2e5630cd3b7a60e3c1c5848de466 commit: 3c93f9d2a10e4c1725440850e77d2bc12cfce6a8 Author: Michał Górny gentoo org> AuthorDate: Fri Mar 9 22:58:54 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 9 23:11:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c93f9d2 sys-devel/clang: Raise libcxx dep for USE=default-libcxx Require the same or newer sys-libs/libcxx version when 'default-libcxx' flag is used. This may reduce the risk of libc++ version problems on pure libc++ systems (e.g. FreeBSD) by promoting early libc++ upgrade, and it is consistent with the dependency in sys-devel/clang-runtime. sys-devel/clang/clang-4.0.1.ebuild | 2 +- sys-devel/clang/clang-5.0.1.ebuild | 2 +- sys-devel/clang/clang-6.0.0.ebuild | 2 +- sys-devel/clang/clang-6.0.9999.ebuild | 2 +- sys-devel/clang/clang-9999.ebuild | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sys-devel/clang/clang-4.0.1.ebuild b/sys-devel/clang/clang-4.0.1.ebuild index f600ff571c2..6c37d1fd959 100644 --- a/sys-devel/clang/clang-4.0.1.ebuild +++ b/sys-devel/clang/clang-4.0.1.ebuild @@ -47,7 +47,7 @@ RDEPEND="${RDEPEND} PDEPEND=" ~sys-devel/clang-runtime-${PV} default-compiler-rt? ( =sys-libs/compiler-rt-${PV%_*}* ) - default-libcxx? ( sys-libs/libcxx )" + default-libcxx? ( >=sys-libs/libcxx-${PV} )" REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( ${ALL_LLVM_TARGETS[*]} )" diff --git a/sys-devel/clang/clang-5.0.1.ebuild b/sys-devel/clang/clang-5.0.1.ebuild index f215ab8b200..4c30e033af7 100644 --- a/sys-devel/clang/clang-5.0.1.ebuild +++ b/sys-devel/clang/clang-5.0.1.ebuild @@ -54,7 +54,7 @@ RDEPEND="${RDEPEND} PDEPEND=" ~sys-devel/clang-runtime-${PV} default-compiler-rt? ( =sys-libs/compiler-rt-${PV%_*}* ) - default-libcxx? ( sys-libs/libcxx )" + default-libcxx? ( >=sys-libs/libcxx-${PV} )" REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( ${ALL_LLVM_TARGETS[*]} )" diff --git a/sys-devel/clang/clang-6.0.0.ebuild b/sys-devel/clang/clang-6.0.0.ebuild index 36d8549e27a..e6a5cb693b9 100644 --- a/sys-devel/clang/clang-6.0.0.ebuild +++ b/sys-devel/clang/clang-6.0.0.ebuild @@ -56,7 +56,7 @@ RDEPEND="${RDEPEND} PDEPEND=" ~sys-devel/clang-runtime-${PV} default-compiler-rt? ( =sys-libs/compiler-rt-${PV%_*}* ) - default-libcxx? ( sys-libs/libcxx )" + default-libcxx? ( >=sys-libs/libcxx-${PV} )" REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( ${ALL_LLVM_TARGETS[*]} )" diff --git a/sys-devel/clang/clang-6.0.9999.ebuild b/sys-devel/clang/clang-6.0.9999.ebuild index a9edb3ec6a2..dc710183291 100644 --- a/sys-devel/clang/clang-6.0.9999.ebuild +++ b/sys-devel/clang/clang-6.0.9999.ebuild @@ -52,7 +52,7 @@ RDEPEND="${RDEPEND} PDEPEND=" ~sys-devel/clang-runtime-${PV} default-compiler-rt? ( =sys-libs/compiler-rt-${PV%_*}* ) - default-libcxx? ( sys-libs/libcxx )" + default-libcxx? ( >=sys-libs/libcxx-${PV} )" REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( ${ALL_LLVM_TARGETS[*]} )" diff --git a/sys-devel/clang/clang-9999.ebuild b/sys-devel/clang/clang-9999.ebuild index 015b5639dbf..0014ecde46b 100644 --- a/sys-devel/clang/clang-9999.ebuild +++ b/sys-devel/clang/clang-9999.ebuild @@ -53,7 +53,7 @@ RDEPEND="${RDEPEND} PDEPEND=" ~sys-devel/clang-runtime-${PV} default-compiler-rt? ( =sys-libs/compiler-rt-${PV%_*}* ) - default-libcxx? ( sys-libs/libcxx )" + default-libcxx? ( >=sys-libs/libcxx-${PV} )" REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( ${ALL_LLVM_TARGETS[*]} )"