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 B4D0E158089 for ; Sat, 7 Oct 2023 08:46:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE5F72BC016; Sat, 7 Oct 2023 08:46:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D41A32BC016 for ; Sat, 7 Oct 2023 08:46:19 +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 0E88B335CB7 for ; Sat, 7 Oct 2023 08:46:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CE6C9ED for ; Sat, 7 Oct 2023 08:46:17 +0000 (UTC) From: "WANG Xuerui" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "WANG Xuerui" Message-ID: <1696667763.36311d67f474ee06bf90a9e818cc3dc2340a669b.xen0n@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/rust/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/rust/rust-1.73.0.ebuild X-VCS-Directories: virtual/rust/ X-VCS-Committer: xen0n X-VCS-Committer-Name: WANG Xuerui X-VCS-Revision: 36311d67f474ee06bf90a9e818cc3dc2340a669b X-VCS-Branch: master Date: Sat, 7 Oct 2023 08:46:17 +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: 2583b80a-7671-4fec-b7a9-b8371cd76c9d X-Archives-Hash: bc7b961b0440e3bfec51f7513d9262d7 commit: 36311d67f474ee06bf90a9e818cc3dc2340a669b Author: WANG Xuerui gentoo org> AuthorDate: Thu Oct 5 23:22:09 2023 +0000 Commit: WANG Xuerui gentoo org> CommitDate: Sat Oct 7 08:36:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36311d67 virtual/rust: add 1.73.0 Signed-off-by: WANG Xuerui gentoo.org> virtual/rust/rust-1.73.0.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/virtual/rust/rust-1.73.0.ebuild b/virtual/rust/rust-1.73.0.ebuild new file mode 100644 index 000000000000..6662fd2eeded --- /dev/null +++ b/virtual/rust/rust-1.73.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multilib-build + +DESCRIPTION="Virtual for Rust language compiler" + +LICENSE="" + +# adjust when rust upstream bumps internal llvm +# we do not allow multiple llvm versions in dev-lang/rust for +# neither system nor bundled, so we just hardcode it here. +SLOT="0/llvm-17" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="rustfmt" + +BDEPEND="" +RDEPEND="|| ( + ~dev-lang/rust-bin-${PV}[rustfmt?,${MULTILIB_USEDEP}] + ~dev-lang/rust-${PV}[rustfmt?,${MULTILIB_USEDEP}] +)"