/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: mikael X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 8579a27389c8de0476ba607f3faad89651f9b057 Auto-Submitted: auto-generated Date: Mon, 27 Apr 2026 12:27:03 +0000 Message-Id: <69ef5617.23ab0.6f99555b@gitrepo.freebsd.org> The branch main has been updated by mikael: URL: https://cgit.FreeBSD.org/ports/commit/?id=8579a27389c8de0476ba607f3faad89651f9b057 commit 8579a27389c8de0476ba607f3faad89651f9b057 Author: Mikael Urankar AuthorDate: 2026-04-27 09:51:10 +0000 Commit: Mikael Urankar CommitDate: 2026-04-27 12:26:46 +0000 www/librewolf: Fix build with rust 1.95.0 Import part of upstream patch [1] to fix the following error, upstream PR at [2]: error[E0599]: no method named `select` found for struct `Mask` in the current scope --> third_party/rust/encoding_rs/src/x_user_defined.rs:23:56 [1] https://hg-edge.mozilla.org/mozilla-central/rev/ec1dd05fd578 [2] https://bugzilla.mozilla.org/show_bug.cgi?id=2033279 PR: 294615 Approved by: portmgr (build fix blanket) --- www/librewolf/files/patch-bug2033279 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/www/librewolf/files/patch-bug2033279 b/www/librewolf/files/patch-bug2033279 new file mode 100644 index 000000000000..86546d3f0a84 --- /dev/null +++ b/www/librewolf/files/patch-bug2033279 @@ -0,0 +1,15 @@ +https://bugzilla.mozilla.org/show_bug.cgi?id=2033279 + +error[E0599]: no method named `select` found for struct `Mask` in the current scope + --> third_party/rust/encoding_rs/src/x_user_defined.rs:23:56 + +--- third_party/rust/encoding_rs/src/x_user_defined.rs.orig 2026-04-20 10:54:51 UTC ++++ third_party/rust/encoding_rs/src/x_user_defined.rs +@@ -16,6 +16,7 @@ cfg_if! { + use simd_funcs::*; + use core::simd::u16x8; + use core::simd::cmp::SimdPartialOrd; ++ use core::simd::Select; + + #[inline(always)] + fn shift_upper(unpacked: u16x8) -> u16x8 {