git: 8a5434cbc6e2 - main - games/veloren-weekly: drop rust < 1.80 workaround after bc4fedc1fec0

From: Jan Beich <jbeich_at_FreeBSD.org>
Date: Tue, 27 Aug 2024 00:56:31 UTC
The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=8a5434cbc6e23708d5ba3ce88169c706b601b83d

commit 8a5434cbc6e23708d5ba3ce88169c706b601b83d
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2024-08-27 00:45:55 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2024-08-27 00:47:48 +0000

    games/veloren-weekly: drop rust < 1.80 workaround after bc4fedc1fec0
---
 games/veloren-weekly/files/patch-rust-1.79 | 23 -----------------------
 1 file changed, 23 deletions(-)

diff --git a/games/veloren-weekly/files/patch-rust-1.79 b/games/veloren-weekly/files/patch-rust-1.79
deleted file mode 100644
index 52d0eb68ce87..000000000000
--- a/games/veloren-weekly/files/patch-rust-1.79
+++ /dev/null
@@ -1,23 +0,0 @@
-Partially revert https://gitlab.com/veloren/veloren/-/commit/a698a7d46ed7
-until lang/rust >= 1.80 update
-
-error[E0658]: use of unstable library feature 'option_take_if'
-    --> common/src/comp/inventory/item/mod.rs:1622:22
-     |
-1622 |                     .take_if(|contained_item| matches!(contained_item.quality(), Quality::Debug));
-     |                      ^^^^^^^
-     |
-     = note: see issue #98934 <https://github.com/rust-lang/rust/issues/98934> for more information
-     = help: add `#![feature(option_take_if)]` to the crate attributes to enable
-     = note: this compiler was built on 2024-06-10; consider upgrading it if it is out of date
-
---- common/src/lib.rs.orig	2024-07-10 22:07:53 UTC
-+++ common/src/lib.rs
-@@ -7,6 +7,7 @@
-     associated_type_defaults,
-     fundamental,
-     let_chains,
-+    option_take_if,
-     option_zip,
-     trait_alias,
-     type_alias_impl_trait,