From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1646389-garchives=archives.gentoo.org@lists.gentoo.org> 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 0278D15802E for <garchives@archives.gentoo.org>; Tue, 25 Jun 2024 03:08:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4AD8CE2A31; Tue, 25 Jun 2024 03:08:49 +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 28586E2A31 for <gentoo-commits@lists.gentoo.org>; Tue, 25 Jun 2024 03:08:49 +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 5718D341B52 for <gentoo-commits@lists.gentoo.org>; Tue, 25 Jun 2024 03:08:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B71C91D34 for <gentoo-commits@lists.gentoo.org>; Tue, 25 Jun 2024 03:08:46 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1719284899.72aac5e95c2050fc433d9a1be274dfaf2bd61422.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/rust/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/rust/rust-1.79.0.ebuild X-VCS-Directories: virtual/rust/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 72aac5e95c2050fc433d9a1be274dfaf2bd61422 X-VCS-Branch: master Date: Tue, 25 Jun 2024 03:08:46 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3db55d97-1123-469a-a6dc-3017d8fcb64a X-Archives-Hash: 7078da502e4bb75ba2cf44f3b1c60009 commit: 72aac5e95c2050fc433d9a1be274dfaf2bd61422 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Jun 25 03:08:19 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Jun 25 03:08:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72aac5e9 virtual/rust: add 1.79.0 Signed-off-by: Sam James <sam <AT> gentoo.org> virtual/rust/rust-1.79.0.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/virtual/rust/rust-1.79.0.ebuild b/virtual/rust/rust-1.79.0.ebuild new file mode 100644 index 000000000000..89d91522025f --- /dev/null +++ b/virtual/rust/rust-1.79.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2024 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-18" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="rustfmt profiler" + +BDEPEND="" +RDEPEND="|| ( + ~dev-lang/rust-bin-${PV}[profiler?,rustfmt?,${MULTILIB_USEDEP}] + ~dev-lang/rust-${PV}[profiler?,rustfmt?,${MULTILIB_USEDEP}] +)"