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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A3833158021 for ; Fri, 11 Nov 2022 02:36:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E4C3E0935; Fri, 11 Nov 2022 02:36:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 40CAEE08F3 for ; Fri, 11 Nov 2022 02:36:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6379633BE6B for ; Fri, 11 Nov 2022 02:36:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B73E2738 for ; Fri, 11 Nov 2022 02:36:21 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1668133976.6d234fad42feda43bdf8697ee86b656d2c4dbe71.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/rust/rust-1.65.0.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 6d234fad42feda43bdf8697ee86b656d2c4dbe71 X-VCS-Branch: master Date: Fri, 11 Nov 2022 02:36:21 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a3a8657e-260b-4870-8df0-6131eb347c8b X-Archives-Hash: 838045e7e7fe03dff27330d2521f7f31 commit: 6d234fad42feda43bdf8697ee86b656d2c4dbe71 Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Nov 11 02:27:37 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Nov 11 02:32:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d234fad dev-lang/rust: rust-analyzer and wasm are mutually exclusive for now Bug: https://bugs.gentoo.org/874885 Signed-off-by: Georgy Yakovlev gentoo.org> dev-lang/rust/rust-1.65.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-lang/rust/rust-1.65.0.ebuild b/dev-lang/rust/rust-1.65.0.ebuild index ade6b118fbd8..18d63adf9fd3 100644 --- a/dev-lang/rust/rust-1.65.0.ebuild +++ b/dev-lang/rust/rust-1.65.0.ebuild @@ -121,10 +121,13 @@ RDEPEND="${DEPEND} sys-apps/lsb-release " +# FIXME: https://bugs.gentoo.org/874885 +# rust-analyzer should work with wasm, but currently does not REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} ) miri? ( nightly ) parallel-compiler? ( nightly ) rls? ( rust-src ) + rust-analyzer? ( !wasm ) test? ( ${ALL_LLVM_TARGETS[*]} ) wasm? ( llvm_targets_WebAssembly ) x86? ( cpu_flags_x86_sse2 )