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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 31FDF15808B for ; Wed, 18 Sep 2024 02:56:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFF70E29A4; Wed, 18 Sep 2024 02:56:08 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D8185E29A4 for ; Wed, 18 Sep 2024 02:56:08 +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 110D2343003 for ; Wed, 18 Sep 2024 02:56:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C4B7276D for ; Wed, 18 Sep 2024 02:56:06 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1726628129.0c77534fd8dd2f47f988a417c94f52d48685a6cb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/rust/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/rust/rust-1.81.0-r1.ebuild virtual/rust/rust-1.81.0.ebuild X-VCS-Directories: virtual/rust/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0c77534fd8dd2f47f988a417c94f52d48685a6cb X-VCS-Branch: master Date: Wed, 18 Sep 2024 02:56:06 +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: 5f86dd40-f8a6-4e77-b0c3-8abe9d1292a8 X-Archives-Hash: 45fbc6e2524c8b13c45b50cb3720868f commit: 0c77534fd8dd2f47f988a417c94f52d48685a6cb Author: Sam James gentoo org> AuthorDate: Wed Sep 18 02:54:25 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 18 02:55:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c77534f virtual/rust: adapt 1.81.0 virtual to USE=profiler changes * rust-bin no longer has USE=profiler as it was only controlling rust-demangler which is now gone upstream. * rust still has USE=profiler however as it controls if it was built with the profiler runtime. AFAIK, rust-bin is always built upstream w/ the profiler runtime, so the USE flag is gone there. Bug: https://bugs.gentoo.org/939669 Bug: https://bugs.gentoo.org/939701 Signed-off-by: Sam James gentoo.org> virtual/rust/{rust-1.81.0.ebuild => rust-1.81.0-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual/rust/rust-1.81.0.ebuild b/virtual/rust/rust-1.81.0-r1.ebuild similarity index 89% rename from virtual/rust/rust-1.81.0.ebuild rename to virtual/rust/rust-1.81.0-r1.ebuild index 57e3cc3e6519..6f50c94d3e77 100644 --- a/virtual/rust/rust-1.81.0.ebuild +++ b/virtual/rust/rust-1.81.0-r1.ebuild @@ -15,6 +15,6 @@ KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="rustfmt profiler" RDEPEND="|| ( - ~dev-lang/rust-bin-${PV}[profiler?,rustfmt?,${MULTILIB_USEDEP}] + ~dev-lang/rust-bin-${PV}[rustfmt?,${MULTILIB_USEDEP}] ~dev-lang/rust-${PV}[profiler?,rustfmt?,${MULTILIB_USEDEP}] )"