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 2B692138330 for ; Tue, 6 Sep 2016 12:56:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7529CE08C7; Tue, 6 Sep 2016 12:56:07 +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 0995BE08C7 for ; Tue, 6 Sep 2016 12:56:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E89CF340139 for ; Tue, 6 Sep 2016 12:56:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E07AC246C for ; Tue, 6 Sep 2016 12:56:03 +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: <1473166560.9ad85349cc69fe2d3d9b2f6b0be06e0080dc7f4b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/llvm-3.8.1-r2.ebuild sys-devel/llvm/llvm-3.9.0.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9ad85349cc69fe2d3d9b2f6b0be06e0080dc7f4b X-VCS-Branch: master Date: Tue, 6 Sep 2016 12:56:03 +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: 98652535-610b-4870-9a4e-28663e41d924 X-Archives-Hash: 38caac84f4568e89fc84aa8fecef563f commit: 9ad85349cc69fe2d3d9b2f6b0be06e0080dc7f4b Author: Michał Górny gentoo org> AuthorDate: Tue Sep 6 12:52:22 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Sep 6 12:56:00 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ad85349 sys-devel/llvm: Move libcxx to PDEP, to avoid circular deps sys-devel/llvm/llvm-3.8.1-r2.ebuild | 4 ++-- sys-devel/llvm/llvm-3.9.0.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-devel/llvm/llvm-3.8.1-r2.ebuild b/sys-devel/llvm/llvm-3.8.1-r2.ebuild index de892fd..7db30d1 100644 --- a/sys-devel/llvm/llvm-3.8.1-r2.ebuild +++ b/sys-devel/llvm/llvm-3.8.1-r2.ebuild @@ -67,10 +67,10 @@ DEPEND="${COMMON_DEPEND} ${PYTHON_DEPS}" RDEPEND="${COMMON_DEPEND} clang? ( !<=sys-devel/clang-${PV}-r99 ) - default-libcxx? ( sys-libs/libcxx ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r2 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )" -PDEPEND="clang? ( =sys-devel/clang-${PV}-r100 )" +PDEPEND="clang? ( =sys-devel/clang-${PV}-r100 ) + default-libcxx? ( sys-libs/libcxx )" # pypy gives me around 1700 unresolved tests due to open file limit # being exceeded. probably GC does not close them fast enough. diff --git a/sys-devel/llvm/llvm-3.9.0.ebuild b/sys-devel/llvm/llvm-3.9.0.ebuild index d310072..fa91fb5 100644 --- a/sys-devel/llvm/llvm-3.9.0.ebuild +++ b/sys-devel/llvm/llvm-3.9.0.ebuild @@ -69,10 +69,10 @@ DEPEND="${COMMON_DEPEND} ${PYTHON_DEPS}" RDEPEND="${COMMON_DEPEND} clang? ( !<=sys-devel/clang-${PV}-r99 ) - default-libcxx? ( sys-libs/libcxx ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r2 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )" -PDEPEND="clang? ( =sys-devel/clang-${PV}-r100 )" +PDEPEND="clang? ( =sys-devel/clang-${PV}-r100 ) + default-libcxx? ( sys-libs/libcxx )" # pypy gives me around 1700 unresolved tests due to open file limit # being exceeded. probably GC does not close them fast enough.