lang/rust-nightly: update 1.84.0.20241104 → 1.86.0.20250115
PR: 284142 Approved by: rust (mikael)
This commit is contained in:
parent
9d286e922a
commit
0181dc409a
@ -1,5 +1,5 @@
|
||||
# Run update.sh to update to the latest nightly
|
||||
PORTVERSION= 1.84.0.${NIGHTLY_DATE:C,-,,g}
|
||||
PORTVERSION= 1.86.0.${NIGHTLY_DATE:C,-,,g}
|
||||
# Always set PORTREVISION explicitly as otherwise it is inherited from lang/rust
|
||||
PORTREVISION= 0
|
||||
PKGNAMESUFFIX= -nightly
|
||||
@ -14,8 +14,8 @@ MASTERDIR= ${.CURDIR}/../rust
|
||||
PATCHDIR= ${.CURDIR}/files
|
||||
DISTINFO_FILE= ${.CURDIR}/distinfo
|
||||
|
||||
NIGHTLY_DATE= 2024-11-04
|
||||
BOOTSTRAPS_DATE= 2024-10-16
|
||||
NIGHTLY_DATE= 2025-01-15
|
||||
BOOTSTRAPS_DATE= 2025-01-08
|
||||
RUST_BOOTSTRAP_VERSION= beta
|
||||
|
||||
.include "${MASTERDIR}/Makefile"
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
TIMESTAMP = 1730809089
|
||||
SHA256 (rust/2024-11-04/rustc-nightly-src.tar.xz) = c1e98dafef13dac41688c401054223c5f5c49777b4c663bd1b3bbb1cecfecd3a
|
||||
SIZE (rust/2024-11-04/rustc-nightly-src.tar.xz) = 354595848
|
||||
SHA256 (rust/2024-10-16/rustc-beta-x86_64-unknown-freebsd.tar.xz) = 36c995c1dd55ab4501f250a77f27cce34330daa2a3e74129ce389aa23b4e3a05
|
||||
SIZE (rust/2024-10-16/rustc-beta-x86_64-unknown-freebsd.tar.xz) = 78540256
|
||||
SHA256 (rust/2024-10-16/rust-std-beta-x86_64-unknown-freebsd.tar.xz) = 67e103b9742ebf2798fe8e2647a6755a1d253301fea13a5193ced5bc394b9a0c
|
||||
SIZE (rust/2024-10-16/rust-std-beta-x86_64-unknown-freebsd.tar.xz) = 28904608
|
||||
SHA256 (rust/2024-10-16/cargo-beta-x86_64-unknown-freebsd.tar.xz) = 9e287f3d0c7e402dbc121cd737fd2360dfcd97fa886770aae93c07474494bb77
|
||||
SIZE (rust/2024-10-16/cargo-beta-x86_64-unknown-freebsd.tar.xz) = 9671024
|
||||
TIMESTAMP = 1737057085
|
||||
SHA256 (rust/2025-01-15/rustc-nightly-src.tar.xz) = f4d8a783a6dad307151159bf9bcabd5b8e8cfa61e5b3053529aeb20b48d6026b
|
||||
SIZE (rust/2025-01-15/rustc-nightly-src.tar.xz) = 359121224
|
||||
SHA256 (rust/2025-01-08/rustc-beta-x86_64-unknown-freebsd.tar.xz) = c9e699c5fdbf0af0434354caf8745796db42a931669e733b3a7432baabf81974
|
||||
SIZE (rust/2025-01-08/rustc-beta-x86_64-unknown-freebsd.tar.xz) = 79860216
|
||||
SHA256 (rust/2025-01-08/rust-std-beta-x86_64-unknown-freebsd.tar.xz) = ce6967397e9dcf20c700957d5ef3a8fbe35795f0b7be1e8f2fc61ebebdd9771d
|
||||
SIZE (rust/2025-01-08/rust-std-beta-x86_64-unknown-freebsd.tar.xz) = 29762976
|
||||
SHA256 (rust/2025-01-08/cargo-beta-x86_64-unknown-freebsd.tar.xz) = e853f0e42602ff80f64fe245863ba0a4f50d8197ab4cde56c4bed53f4d7d9cbb
|
||||
SIZE (rust/2025-01-08/cargo-beta-x86_64-unknown-freebsd.tar.xz) = 9814360
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
--- compiler/rustc_target/src/callconv/powerpc64.rs.orig 2020-03-09 22:11:17 UTC
|
||||
--- compiler/rustc_target/src/callconv/powerpc64.rs.orig 2024-12-10 13:16:09 UTC
|
||||
+++ compiler/rustc_target/src/callconv/powerpc64.rs
|
||||
@@ -95,7 +95,7 @@ where
|
||||
ELFv2
|
||||
@@ -105,7 +105,7 @@ where
|
||||
AIX
|
||||
} else {
|
||||
match cx.data_layout().endian {
|
||||
- Endian::Big => ELFv1,
|
||||
|
||||
@ -8,9 +8,9 @@ until LLVM can be updated to use libc++ by default.
|
||||
|
||||
https://reviews.llvm.org/D77776
|
||||
|
||||
--- vendor/cc-1.0.99/src/tool.rs.orig 2024-05-09 18:20:47 UTC
|
||||
+++ vendor/cc-1.0.99/src/tool.rs
|
||||
@@ -151,9 +151,7 @@ impl Tool {
|
||||
--- vendor/cc-1.0.98/src/tool.rs.orig 2024-12-10 13:16:09 UTC
|
||||
+++ vendor/cc-1.0.98/src/tool.rs
|
||||
@@ -167,9 +167,7 @@ impl Tool {
|
||||
|
||||
match (clang, accepts_cl_style_flags, gcc) {
|
||||
(clang_cl, true, _) => Ok(ToolFamily::Msvc { clang_cl }),
|
||||
@ -21,7 +21,20 @@ https://reviews.llvm.org/D77776
|
||||
(false, false, true) => Ok(ToolFamily::Gnu),
|
||||
(false, false, false) => {
|
||||
cargo_output.print_warning(&"Compiler family detection failed since it does not define `__clang__`, `__GNUC__` or `_MSC_VER`, fallback to treating it as GNU");
|
||||
--- vendor/cc-1.1.22/src/tool.rs.orig 2024-05-09 18:20:47 UTC
|
||||
--- vendor/cc-1.0.99/src/tool.rs.orig 2024-12-10 13:16:09 UTC
|
||||
+++ vendor/cc-1.0.99/src/tool.rs
|
||||
@@ -167,9 +167,7 @@ impl Tool {
|
||||
|
||||
match (clang, accepts_cl_style_flags, gcc) {
|
||||
(clang_cl, true, _) => Ok(ToolFamily::Msvc { clang_cl }),
|
||||
- (true, false, _) => Ok(ToolFamily::Clang {
|
||||
- zig_cc: is_zig_cc(path, cargo_output),
|
||||
- }),
|
||||
+ (true, false, _) => Ok(ToolFamily::Gnu),
|
||||
(false, false, true) => Ok(ToolFamily::Gnu),
|
||||
(false, false, false) => {
|
||||
cargo_output.print_warning(&"Compiler family detection failed since it does not define `__clang__`, `__GNUC__` or `_MSC_VER`, fallback to treating it as GNU");
|
||||
--- vendor/cc-1.1.22/src/tool.rs.orig 2024-12-10 13:16:09 UTC
|
||||
+++ vendor/cc-1.1.22/src/tool.rs
|
||||
@@ -174,9 +174,7 @@ impl Tool {
|
||||
|
||||
@ -34,8 +47,8 @@ https://reviews.llvm.org/D77776
|
||||
(false, false, true, _, false) | (_, _, _, _, true) => Ok(ToolFamily::Gnu),
|
||||
(false, false, false, false, false) => {
|
||||
cargo_output.print_warning(&"Compiler family detection failed since it does not define `__clang__`, `__GNUC__`, `__EMSCRIPTEN__` or `__VXWORKS__`, also does not accept cl style flag `-?`, fallback to treating it as GNU");
|
||||
--- vendor/cc-1.1.23/src/tool.rs.orig 2024-05-09 18:20:47 UTC
|
||||
+++ vendor/cc-1.1.23/src/tool.rs
|
||||
--- vendor/cc-1.2.0/src/tool.rs.orig 2024-12-10 13:16:09 UTC
|
||||
+++ vendor/cc-1.2.0/src/tool.rs
|
||||
@@ -174,9 +174,7 @@ impl Tool {
|
||||
|
||||
match (clang, accepts_cl_style_flags, gcc, emscripten, vxworks) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user