git: 5e98dcba070c - main - math/elan: Fix build with rust 1.80
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 07 Sep 2024 11:07:12 UTC
The branch main has been updated by mikael: URL: https://cgit.FreeBSD.org/ports/commit/?id=5e98dcba070c577f53ea26d42d93352eb2cb3219 commit 5e98dcba070c577f53ea26d42d93352eb2cb3219 Author: Mikael Urankar <mikael@FreeBSD.org> AuthorDate: 2024-09-07 09:53:17 +0000 Commit: Mikael Urankar <mikael@FreeBSD.org> CommitDate: 2024-09-07 11:07:05 +0000 math/elan: Fix build with rust 1.80 --- math/elan/files/patch-rust-1.80.0 | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/math/elan/files/patch-rust-1.80.0 b/math/elan/files/patch-rust-1.80.0 new file mode 100644 index 000000000000..201e9dc4360c --- /dev/null +++ b/math/elan/files/patch-rust-1.80.0 @@ -0,0 +1,25 @@ +From 5b0c627366babea1636b35db641c0fec964ddbd1 Mon Sep 17 00:00:00 2001 +From: David Tolnay <dtolnay@gmail.com> +Date: Fri, 15 Mar 2024 20:47:22 -0700 +Subject: [PATCH] Delete identity conversion in format_description::parse_owned + (#671) + +--- + time/src/format_description/parse/mod.rs | 4 +--- + 1 file changed, 1 insertion(+), 3 deletions(-) + +diff --git a/time/src/format_description/parse/mod.rs b/time/src/format_description/parse/mod.rs +index 1fcc577c9..22ca52591 100644 +--- cargo-crates/time-0.3.20/src/format_description/parse/mod.rs ++++ cargo-crates/time-0.3.20/src/format_description/parse/mod.rs +@@ -80,9 +80,7 @@ pub fn parse_owned<const VERSION: usize>( + let mut lexed = lexer::lex::<VERSION>(s.as_bytes()); + let ast = ast::parse::<_, VERSION>(&mut lexed); + let format_items = format_item::parse(ast); +- let items = format_items +- .map(|res| res.map(Into::into)) +- .collect::<Result<Box<_>, _>>()?; ++ let items = format_items.collect::<Result<Box<_>, _>>()?; + Ok(items.into()) + } +