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 11E401382C5 for ; Tue, 15 May 2018 11:48:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23616E0844; Tue, 15 May 2018 11:48:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E5366E0844 for ; Tue, 15 May 2018 11:48:13 +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 7F08F335C75 for ; Tue, 15 May 2018 11:48:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B432172 for ; Tue, 15 May 2018 11:48:10 +0000 (UTC) From: "Dirkjan Ochtman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dirkjan Ochtman" Message-ID: <1526384824.1628a22c616867e8896346d57f11b0071d7d9e9f.djc@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/x86/, profiles/arch/arm64/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/arch/amd64/package.use.force profiles/arch/arm64/package.use.force profiles/arch/x86/package.use.force X-VCS-Directories: profiles/arch/arm64/ profiles/arch/x86/ profiles/arch/amd64/ X-VCS-Committer: djc X-VCS-Committer-Name: Dirkjan Ochtman X-VCS-Revision: 1628a22c616867e8896346d57f11b0071d7d9e9f X-VCS-Branch: master Date: Tue, 15 May 2018 11:48:10 +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: 94456e07-1cad-4353-a840-73d421f8f22b X-Archives-Hash: 4f6a7eab93d960f352f6211f4e599849 commit: 1628a22c616867e8896346d57f11b0071d7d9e9f Author: Georgy Yakovlev sysdump net> AuthorDate: Mon May 14 18:12:15 2018 +0000 Commit: Dirkjan Ochtman gentoo org> CommitDate: Tue May 15 11:47:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1628a22c profiles: add default llvm_targets for rust It's not installable without user invervention with latest changes. !!! The ebuild selected to satisfy "dev-lang/rust" has unmet requirements. - dev-lang/rust-1.26.0::gentoo USE="-debug -doc (-extended) -jemalloc" ABI_X86="(64)" LLVM_TARGETS="-AArch64 -AMDGPU -ARM -BPF -Hexagon -Lanai -MSP430 -Mips -NVPTX -PowerPC -Sparc -SystemZ -X86 -XCore" Treat it the same way as llvm/clang does. Not touching musl/uclibc profiles, since they maintain their own rust ebuild. Fixes: https://bugs.gentoo.org/655780 profiles/arch/amd64/package.use.force | 4 ++++ profiles/arch/arm64/package.use.force | 4 ++++ profiles/arch/x86/package.use.force | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/profiles/arch/amd64/package.use.force b/profiles/arch/amd64/package.use.force index d35dfcf8dc5..eecfbb757e4 100644 --- a/profiles/arch/amd64/package.use.force +++ b/profiles/arch/amd64/package.use.force @@ -1,6 +1,10 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +# Georgy Yakovlev (14 May 2018) +# Force the host target to avoid dependency hell +dev-lang/rust llvm_targets_X86 + # NP-Hardass (23 May 2017) # Packages with optional 64-bit variant app-emulation/wine-vanilla -abi_x86_64 diff --git a/profiles/arch/arm64/package.use.force b/profiles/arch/arm64/package.use.force index 35055867c2f..31226f27346 100644 --- a/profiles/arch/arm64/package.use.force +++ b/profiles/arch/arm64/package.use.force @@ -1,6 +1,10 @@ # Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +# Georgy Yakovlev (14 May 2018) +# Force the host target to avoid dependency hell +dev-lang/rust llvm_targets_AArch64 + # Michał Górny (24 Sep 2016) # Force the host target to avoid dependency hell sys-devel/clang llvm_targets_AArch64 diff --git a/profiles/arch/x86/package.use.force b/profiles/arch/x86/package.use.force index 6d74f7f7c28..c234a241e4f 100644 --- a/profiles/arch/x86/package.use.force +++ b/profiles/arch/x86/package.use.force @@ -1,6 +1,10 @@ # Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +# Georgy Yakovlev (14 May 2018) +# Force the host target to avoid dependency hell +dev-lang/rust llvm_targets_X86 + # Michał Górny (24 Sep 2016) # Force the host target to avoid dependency hell sys-devel/clang llvm_targets_X86