aboutsummaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorChristoph Moench-Tegeder <cmt@FreeBSD.org>2020-09-19 22:47:30 +0000
committerChristoph Moench-Tegeder <cmt@FreeBSD.org>2020-09-19 22:47:30 +0000
commitc3ec356e1d3d0f6c3e461d884ce3be77eb545595 (patch)
tree26034746d307590492d12bb4219671c6f85a08d5 /mail
parent56d2983160374c5640fed81c17239beb2626a6e6 (diff)
downloadports-c3ec356e1d3d0f6c3e461d884ce3be77eb545595.tar.gz
ports-c3ec356e1d3d0f6c3e461d884ce3be77eb545595.zip
mail/thunderbird: update to 78.3.0 (rc1)
Notes
Notes: svn path=/head/; revision=549075
Diffstat (limited to 'mail')
-rw-r--r--mail/thunderbird/Makefile2
-rw-r--r--mail/thunderbird/distinfo6
-rw-r--r--mail/thunderbird/files/patch-bug166460749
3 files changed, 4 insertions, 53 deletions
diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile
index 4f3f7357d1cc..93d53ed8c8f0 100644
--- a/mail/thunderbird/Makefile
+++ b/mail/thunderbird/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= thunderbird
-DISTVERSION= 78.2.2
+DISTVERSION= 78.3.0
CATEGORIES= mail news net-im
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 535dec710efa..623d13753fe2 100644
--- a/mail/thunderbird/distinfo
+++ b/mail/thunderbird/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1599607340
-SHA256 (thunderbird-78.2.2.source.tar.xz) = 63e8641551d21f6a185e100260bae33d4ab529e30eb0e4d85a57f3aed974ec67
-SIZE (thunderbird-78.2.2.source.tar.xz) = 353246904
+TIMESTAMP = 1600518543
+SHA256 (thunderbird-78.3.0.source.tar.xz) = 72728883f8999a154769f879d9f5642d9a3a987ec8275353a1c33a151cd30a99
+SIZE (thunderbird-78.3.0.source.tar.xz) = 354482972
diff --git a/mail/thunderbird/files/patch-bug1664607 b/mail/thunderbird/files/patch-bug1664607
deleted file mode 100644
index 28053bd8ccb9..000000000000
--- a/mail/thunderbird/files/patch-bug1664607
+++ /dev/null
@@ -1,49 +0,0 @@
-# HG changeset patch
-# User Rob Lemley <rob@thunderbird.net>
-# Date 1600079976 -10800
-# Node ID 6379c3b860f7a1acc01dc549b6ce3cedf250831b
-# Parent d1ffffd30cb1c6b4c636f89006c89cfa73282216
-Bug 1664607 - Don't try to load what's new page when built with updater disabled. r=mkmelin DONTBUILD
-
-When Thunderbird is built with --disable-updater, as it done by most Linux
-distributions, accessing the nsIUpdateManager service will throw an error
-resulting in a broken UI. Check AppConstants.MOZ_UPDATER when using
-nsIUpdateManger to prevent errors.
-
-Differential Revision: https://phabricator.services.mozilla.com/D90023
-
-diff --git a/mail/base/content/specialTabs.js b/mail/base/content/specialTabs.js
---- comm/mail/base/content/specialTabs.js
-+++ comm/mail/base/content/specialTabs.js
-@@ -1048,18 +1048,20 @@ var specialTabs = {
- Services.prefs.setCharPref("mailnews.start_page_override.mstone", mstone);
- }
-
-- let update = Cc["@mozilla.org/updates/update-manager;1"].getService(
-- Ci.nsIUpdateManager
-- ).activeUpdate;
-+ if (AppConstants.MOZ_UPDATER) {
-+ let update = Cc["@mozilla.org/updates/update-manager;1"].getService(
-+ Ci.nsIUpdateManager
-+ ).activeUpdate;
-
-- if (update && Services.vc.compare(update.appVersion, old_mstone) > 0) {
-- let overridePage = Services.urlFormatter.formatURLPref(
-- "mailnews.start_page.override_url"
-- );
-- overridePage = this.getPostUpdateOverridePage(update, overridePage);
-- overridePage = overridePage.replace("%OLD_VERSION%", old_mstone);
-- if (overridePage) {
-- openLinkExternally(overridePage);
-+ if (update && Services.vc.compare(update.appVersion, old_mstone) > 0) {
-+ let overridePage = Services.urlFormatter.formatURLPref(
-+ "mailnews.start_page.override_url"
-+ );
-+ overridePage = this.getPostUpdateOverridePage(update, overridePage);
-+ overridePage = overridePage.replace("%OLD_VERSION%", old_mstone);
-+ if (overridePage) {
-+ openLinkExternally(overridePage);
-+ }
- }
- }
- },