From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7837958973 for ; Thu, 11 Feb 2016 08:39:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CAB0521C003; Thu, 11 Feb 2016 08:39:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7502421C003 for ; Thu, 11 Feb 2016 08:39:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F078340BA1 for ; Thu, 11 Feb 2016 08:39:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19C628E1 for ; Thu, 11 Feb 2016 08:39:37 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1455179944.5a98aba7d89213f01ca32b400d0214cfb432d326.grobian@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.5.2.ebuild sys-devel/llvm/llvm-3.6.2.ebuild sys-devel/llvm/llvm-3.7.1.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 5a98aba7d89213f01ca32b400d0214cfb432d326 X-VCS-Branch: master Date: Thu, 11 Feb 2016 08:39:37 +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: 5c6b232a-f039-44f1-a00e-52b6a5dec1a1 X-Archives-Hash: f581b2f26ff4e8e41d01499895739cff commit: 5a98aba7d89213f01ca32b400d0214cfb432d326 Author: Fabian Groffen gentoo org> AuthorDate: Thu Feb 11 08:39:04 2016 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Feb 11 08:39:04 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a98aba7 sys-devel/llvm: fix dependency on libcxx for Darwin, bug #573176 llvm dies with an ICE while compiling packages (like itself) when the version of libcxx doesn't match. So pull in a version from the same major range. Package-Manager: portage-2.2.20-prefix sys-devel/llvm/llvm-3.5.2.ebuild | 2 +- sys-devel/llvm/llvm-3.6.2.ebuild | 2 +- sys-devel/llvm/llvm-3.7.1.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-devel/llvm/llvm-3.5.2.ebuild b/sys-devel/llvm/llvm-3.5.2.ebuild index f6bb2c3..d051a7a 100644 --- a/sys-devel/llvm/llvm-3.5.2.ebuild +++ b/sys-devel/llvm/llvm-3.5.2.ebuild @@ -50,7 +50,7 @@ DEPEND="${COMMON_DEPEND} ( >=sys-freebsd/freebsd-lib-9.1-r10 sys-libs/libcxx ) ) || ( >=sys-devel/binutils-2.18 >=sys-devel/binutils-apple-5.1 ) - kernel_Darwin? ( sys-libs/libcxx ) + kernel_Darwin? ( =sys-libs/libcxx-3.5* ) clang? ( xml? ( virtual/pkgconfig ) ) doc? ( dev-python/sphinx ) libffi? ( virtual/pkgconfig ) diff --git a/sys-devel/llvm/llvm-3.6.2.ebuild b/sys-devel/llvm/llvm-3.6.2.ebuild index 21f4f9d..2e59d43 100644 --- a/sys-devel/llvm/llvm-3.6.2.ebuild +++ b/sys-devel/llvm/llvm-3.6.2.ebuild @@ -53,7 +53,7 @@ DEPEND="${COMMON_DEPEND} ( >=sys-freebsd/freebsd-lib-9.1-r10 sys-libs/libcxx ) ) || ( >=sys-devel/binutils-2.18 >=sys-devel/binutils-apple-5.1 ) - kernel_Darwin? ( sys-libs/libcxx ) + kernel_Darwin? ( =sys-libs/libcxx-3.6* ) clang? ( xml? ( virtual/pkgconfig ) ) doc? ( dev-python/sphinx ) libffi? ( virtual/pkgconfig ) diff --git a/sys-devel/llvm/llvm-3.7.1.ebuild b/sys-devel/llvm/llvm-3.7.1.ebuild index 6aa2ef2..6afc7e9 100644 --- a/sys-devel/llvm/llvm-3.7.1.ebuild +++ b/sys-devel/llvm/llvm-3.7.1.ebuild @@ -55,7 +55,7 @@ DEPEND="${COMMON_DEPEND} ( >=sys-freebsd/freebsd-lib-9.1-r10 sys-libs/libcxx ) ) || ( >=sys-devel/binutils-2.18 >=sys-devel/binutils-apple-5.1 ) - kernel_Darwin? ( sys-libs/libcxx ) + kernel_Darwin? ( =sys-libs/libcxx-3.7* ) clang? ( xml? ( virtual/pkgconfig ) ) doc? ( dev-python/sphinx ) gold? ( sys-libs/binutils-libs )