From 935ba7c5cf9e7ab7fa903ff1a7c3261d45e19557 Mon Sep 17 00:00:00 2001 From: Dongsu Park Date: Tue, 13 Oct 2020 10:46:22 +0200 Subject: [PATCH] dev-lang/rust: fix patchlevel for stage0 to rust-1.46.0 Rust stage0 tarballs should not be based on a patchlevel release like `1.45.1`. It might work in case of the previous version 1.45.1, which already exists. However, it will not work in case of x.y.1 is missing. So the build rust 1.47.0, should pull tarballs for rust 1.46.0, instead of 1.46.1, which does not exist. --- .../third_party/coreos-overlay/dev-lang/rust/rust-1.46.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/dev-lang/rust/rust-1.46.0.ebuild b/sdk_container/src/third_party/coreos-overlay/dev-lang/rust/rust-1.46.0.ebuild index bce1569089..78ff2f63df 100644 --- a/sdk_container/src/third_party/coreos-overlay/dev-lang/rust/rust-1.46.0.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/dev-lang/rust/rust-1.46.0.ebuild @@ -21,7 +21,7 @@ else KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" fi -RUST_STAGE0_VERSION="1.$(($(ver_cut 2) - 1)).1" +RUST_STAGE0_VERSION="1.$(($(ver_cut 2) - 1)).0" DESCRIPTION="Systems programming language from Mozilla" HOMEPAGE="https://www.rust-lang.org/"