Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Jul 2023 10:35:28 GMT
From:      Christoph Moench-Tegeder <cmt@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 0c71dd8f1b72 - main - mail/thunderbird: update to 102.13.0 (rc1)
Message-ID:  <202307051035.365AZS7o022260@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by cmt:

URL: https://cgit.FreeBSD.org/ports/commit/?id=0c71dd8f1b7294bc9c7fbf690530adce1482360f

commit 0c71dd8f1b7294bc9c7fbf690530adce1482360f
Author:     Christoph Moench-Tegeder <cmt@FreeBSD.org>
AuthorDate: 2023-07-05 10:34:42 +0000
Commit:     Christoph Moench-Tegeder <cmt@FreeBSD.org>
CommitDate: 2023-07-05 10:34:42 +0000

    mail/thunderbird: update to 102.13.0 (rc1)
    
    Release Notes (soon):
      https://www.thunderbird.net/en-US/thunderbird/102.13.0/releasenotes/
---
 mail/thunderbird/Makefile                |  3 +--
 mail/thunderbird/distinfo                |  6 +++---
 mail/thunderbird/files/patch-rust-1.70.0 | 33 --------------------------------
 3 files changed, 4 insertions(+), 38 deletions(-)

diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile
index 6041351cb25e..a8442861accf 100644
--- a/mail/thunderbird/Makefile
+++ b/mail/thunderbird/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	thunderbird
-DISTVERSION=	102.12.0
-PORTREVISION=	1
+DISTVERSION=	102.13.0
 CATEGORIES=	mail news net-im wayland
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
 		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source
diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo
index d0051bd74e74..8a8d01e7213c 100644
--- a/mail/thunderbird/distinfo
+++ b/mail/thunderbird/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1685878941
-SHA256 (thunderbird-102.12.0.source.tar.xz) = 5aa776b75dd47e77303185033c2c443a425488d28ced5c6e29e5bd64e7ac5afe
-SIZE (thunderbird-102.12.0.source.tar.xz) = 502135796
+TIMESTAMP = 1688542022
+SHA256 (thunderbird-102.13.0.source.tar.xz) = 3462f18ec2ff1c962aa3e75ca6fbfa24b79c25fc0f5937419c9f2e7d7b090897
+SIZE (thunderbird-102.13.0.source.tar.xz) = 502736152
diff --git a/mail/thunderbird/files/patch-rust-1.70.0 b/mail/thunderbird/files/patch-rust-1.70.0
deleted file mode 100644
index 233e51bee164..000000000000
--- a/mail/thunderbird/files/patch-rust-1.70.0
+++ /dev/null
@@ -1,33 +0,0 @@
-https://github.com/mozilla/mp4parse-rust/commit/8b5b652d38e007e736bb442ccd5aa5ed699db100
-
-From 8b5b652d38e007e736bb442ccd5aa5ed699db100 Mon Sep 17 00:00:00 2001
-From: Matthew Gregan <kinetik@flim.org>
-Date: Thu, 16 Jun 2022 13:54:02 +1200
-Subject: [PATCH] Fix `unstable-name-collisions` warning by using fully
- qualified path.
-
----
- mp4parse/src/lib.rs | 9 +++++++--
- 1 file changed, 7 insertions(+), 2 deletions(-)
-
-diff --git a/mp4parse/src/lib.rs b/mp4parse/src/lib.rs
-index 567ee21d..4f3d7153 100644
---- third_party/rust/mp4parse/src/lib.rs
-+++ third_party/rust/mp4parse/src/lib.rs
-@@ -3506,8 +3506,13 @@ macro_rules! impl_mul {
-             type Output = $output;
- 
-             fn mul(self, rhs: $rhs) -> Self::Output {
--                static_assertions::const_assert!(<$output>::MAX <= <$inner>::MAX as u64);
--                static_assertions::const_assert!(<$lhs>::MAX * <$rhs>::MAX <= <$output>::MAX);
-+                static_assertions::const_assert!(
-+                    <$output as UpperBounded>::MAX <= <$inner>::MAX as u64
-+                );
-+                static_assertions::const_assert!(
-+                    <$lhs as UpperBounded>::MAX * <$rhs as UpperBounded>::MAX
-+                        <= <$output as UpperBounded>::MAX
-+                );
- 
-                 let lhs: $inner = self.get().into();
-                 let rhs: $inner = rhs.get().into();
-



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202307051035.365AZS7o022260>