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 E4EF3158094 for ; Thu, 29 Sep 2022 22:58:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F661E0DF2; Thu, 29 Sep 2022 22:58:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 020C2E0DF2 for ; Thu, 29 Sep 2022 22:58:18 +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 4E9D2340CC8 for ; Thu, 29 Sep 2022 22:58:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AEC7F5E6 for ; Thu, 29 Sep 2022 22:58:15 +0000 (UTC) From: "Quentin Retornaz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Quentin Retornaz" Message-ID: <1664492254.02bab0badac9f0284a0584781d472a134809a95a.quentin@gentoo> Subject: [gentoo-commits] repo/proj/libressl:master commit in: dev-lang/rust/ X-VCS-Repository: repo/proj/libressl X-VCS-Files: dev-lang/rust/rust-1.62.1.ebuild dev-lang/rust/rust-1.63.0-r1.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: quentin X-VCS-Committer-Name: Quentin Retornaz X-VCS-Revision: 02bab0badac9f0284a0584781d472a134809a95a X-VCS-Branch: master Date: Thu, 29 Sep 2022 22:58:15 +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: 2744edb1-31f8-4aad-accd-d9aca2595681 X-Archives-Hash: 34b80a401c271b99cc3d966214a1710a commit: 02bab0badac9f0284a0584781d472a134809a95a Author: orbea riseup net> AuthorDate: Wed Sep 28 00:44:28 2022 +0000 Commit: Quentin Retornaz retornaz com> CommitDate: Thu Sep 29 22:57:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=02bab0ba dev-lang/rust: Merge ::gentoo changes Signed-off-by: orbea riseup.net> Closes: https://github.com/gentoo/libressl/pull/455 Signed-off-by: Quentin Retornaz retornaz.com> dev-lang/rust/rust-1.62.1.ebuild | 4 ++-- dev-lang/rust/rust-1.63.0-r1.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-lang/rust/rust-1.62.1.ebuild b/dev-lang/rust/rust-1.62.1.ebuild index 990093d..3426092 100644 --- a/dev-lang/rust/rust-1.62.1.ebuild +++ b/dev-lang/rust/rust-1.62.1.ebuild @@ -73,7 +73,7 @@ LLVM_DEPEND+=" ) # most of the time previous versions fail to bootstrap with newer # for example 1.47.x, requires at least 1.46.x, 1.47.x is ok, # but it fails to bootstrap with 1.48.x -# https://github.com/rust-lang/rust/blob/${PV}/src/stage0.txt +# https://github.com/rust-lang/rust/blob/${PV}/src/stage0.json RUST_DEP_PREV="$(ver_cut 1).$(($(ver_cut 2) - 1))*" RUST_DEP_CURR="$(ver_cut 1).$(ver_cut 2)*" BOOTSTRAP_DEPEND="|| @@ -257,7 +257,7 @@ src_prepare() { } src_configure() { - use system-llvm && filter-flags '-flto*' # https://bugs.gentoo.org/862109 + filter-flags '-flto*' # https://bugs.gentoo.org/862109 local rust_target="" rust_targets="" arch_cflags use_libcxx="false" diff --git a/dev-lang/rust/rust-1.63.0-r1.ebuild b/dev-lang/rust/rust-1.63.0-r1.ebuild index 6cc3ece..c925bff 100644 --- a/dev-lang/rust/rust-1.63.0-r1.ebuild +++ b/dev-lang/rust/rust-1.63.0-r1.ebuild @@ -73,7 +73,7 @@ LLVM_DEPEND+=" ) # most of the time previous versions fail to bootstrap with newer # for example 1.47.x, requires at least 1.46.x, 1.47.x is ok, # but it fails to bootstrap with 1.48.x -# https://github.com/rust-lang/rust/blob/${PV}/src/stage0.txt +# https://github.com/rust-lang/rust/blob/${PV}/src/stage0.json RUST_DEP_PREV="$(ver_cut 1).$(($(ver_cut 2) - 1))*" RUST_DEP_CURR="$(ver_cut 1).$(ver_cut 2)*" BOOTSTRAP_DEPEND="|| @@ -287,7 +287,7 @@ src_prepare() { } src_configure() { - use system-llvm && filter-flags '-flto*' # https://bugs.gentoo.org/862109 + filter-flags '-flto*' # https://bugs.gentoo.org/862109 local rust_target="" rust_targets="" arch_cflags use_libcxx="false"