[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/424: gnu: rust: Update to 1.80.
From: |
guix-commits |
Subject: |
04/424: gnu: rust: Update to 1.80. |
Date: |
Sun, 10 Nov 2024 05:40:52 -0500 (EST) |
efraim pushed a commit to branch rust-team
in repository guix.
commit 11275adcd56d874ee096c5886de90474d29a5dfc
Author: Brennan Vincent <brennan@umanwizard.com>
AuthorDate: Mon Aug 26 13:40:57 2024 -0400
gnu: rust: Update to 1.80.
gnu/packages/rust.scm (rust): Update to 1.80.
Change-Id: Ife65cb52362a30df8aabd4255a3fdc3c3d60e7bb
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/rust.scm | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm
index e0def663b9..016ffced53 100644
--- a/gnu/packages/rust.scm
+++ b/gnu/packages/rust.scm
@@ -1064,7 +1064,7 @@ safety and thread safety guarantees.")
;;; Here we take the latest included Rust, make it public, and re-enable tests
;;; and extra components such as rustfmt.
(define-public rust
- (let ((base-rust rust-1.79))
+ (let ((base-rust rust-1.80))
(package
(inherit base-rust)
(properties (append
@@ -1079,7 +1079,7 @@ safety and thread safety guarantees.")
(for-each delete-file-recursively
'("src/llvm-project"
"vendor/jemalloc-sys-0.5.4+5.3.0-patched/jemalloc"
- "vendor/openssl-src-111.28.1+1.1.1w/openssl"
+ "vendor/openssl-src-111.28.2+1.1.1w/openssl"
"vendor/tikv-jemalloc-sys-0.5.4+5.3.0-patched/jemalloc"
;; These are referenced by the cargo output
;; so we unbundle them.
@@ -1100,7 +1100,8 @@ safety and thread safety guarantees.")
(for-each delete-file
(find-files "vendor" "\\.(a|dll|exe|lib)$"))
;; Adjust vendored dependency to explicitly use rustix with libc
backend.
- (substitute* "vendor/tempfile/Cargo.toml"
+ (substitute* '("vendor/tempfile-3.7.1/Cargo.toml"
+ "vendor/tempfile-3.10.1/Cargo.toml")
(("features = \\[\"fs\"" all)
(string-append all ", \"use-libc\"")))))))
(arguments
@@ -1210,6 +1211,15 @@ safety and thread safety guarantees.")
(substitute* "src/tools/cargo/tests/testsuite/install.rs"
,@(make-ignore-test-list
'("fn install_global_cargo_config")))))
+ (add-after 'unpack 'disable-miscellaneous-broken-tests
+ (lambda _
+ (substitute* "src/tools/cargo/tests/testsuite/check_cfg.rs"
+ ;; These apparently get confused by the fact that
+ ;; we're building in a directory containing the
+ ;; string "rustc"
+ ,@(make-ignore-test-list
+ '("fn config_fingerprint"
+ "fn features_fingerprint")))))
(add-after 'unpack 'patch-command-exec-tests
;; This test suite includes some tests that the stdlib's
;; `Command` execution properly handles in situations where
- branch rust-team created (now 8562a98314), guix-commits, 2024/11/10
- 06/424: gnu: rust: Build with clang sources for version 17., guix-commits, 2024/11/10
- 04/424: gnu: rust: Update to 1.80.,
guix-commits <=
- 05/424: gnu: rust: Update to 1.81., guix-commits, 2024/11/10
- 08/424: gnu: rust-time-0.3: Update to 0.3.36., guix-commits, 2024/11/10
- 14/424: gnu: Add rust-gdk-pixbuf-0.19., guix-commits, 2024/11/10
- 20/424: gnu: Add rust-glib-sys-0.19., guix-commits, 2024/11/10
- 18/424: gnu: Add rust-glib-0.19., guix-commits, 2024/11/10
- 25/424: gnu: Add rust-pangocairo-sys-0.19., guix-commits, 2024/11/10
- 23/424: gnu: Add rust-pango-sys-0.19., guix-commits, 2024/11/10
- 01/424: gnu: rust: Update to 1.78., guix-commits, 2024/11/10
- 19/424: gnu: Add rust-glib-macros-0.19., guix-commits, 2024/11/10
- 07/424: gnu: rust-time-macros-0.2: Update to 0.2.18., guix-commits, 2024/11/10