diff options
author | cmt <cmt@FreeBSD.org> | 2017-03-03 02:10:09 +0800 |
---|---|---|
committer | cmt <cmt@FreeBSD.org> | 2017-03-03 02:10:09 +0800 |
commit | c476559142e947c29689cd396fe5deac972a3ef6 (patch) | |
tree | 0ce7a46b9435bd7990c07bf747cce77345c743e8 /mail/thunderbird | |
parent | 9626fff211ec71fe4b94601c371414312d6dc9bf (diff) | |
download | freebsd-ports-gnome-c476559142e947c29689cd396fe5deac972a3ef6.tar.gz freebsd-ports-gnome-c476559142e947c29689cd396fe5deac972a3ef6.tar.zst freebsd-ports-gnome-c476559142e947c29689cd396fe5deac972a3ef6.zip |
update thunderbird to 45.7.1
https://www.mozilla.org/en-US/thunderbird/45.7.0/releasenotes/
https://www.mozilla.org/en-US/thunderbird/45.7.1/releasenotes/
After changes in packaging in ports r428672, profiles using lightning
will have to be recreated.
PR: 216584
Approved by: jbeich (maintainer), rene (mentor, implicit)
MFH: 2017Q1
Security: e60169c4-aa86-46b0-8ae2-0d81f683df09 e60169c4-aa86-46b0-8ae2-0d81f683df09
Diffstat (limited to 'mail/thunderbird')
-rw-r--r-- | mail/thunderbird/Makefile | 5 | ||||
-rw-r--r-- | mail/thunderbird/distinfo | 6 | ||||
-rw-r--r-- | mail/thunderbird/files/patch-bug1290037 | 29 |
3 files changed, 5 insertions, 35 deletions
diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index 90df722759b9..9fdd19e2bc6f 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 45.6.0 -PORTREVISION= 4 +DISTVERSION= 45.7.1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -14,7 +13,7 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above BUILD_DEPENDS= nspr>=4.12:devel/nspr \ - nss>=3.21.1:security/nss \ + nss>=3.21.3:security/nss \ libevent>=2.0.21_2:devel/libevent \ soundtouch>=1.9.0:audio/soundtouch \ harfbuzz>=1.1.0:print/harfbuzz \ diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo index ee778944d13e..ce504e67f84a 100644 --- a/mail/thunderbird/distinfo +++ b/mail/thunderbird/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1483360938 -SHA256 (thunderbird-45.6.0.source.tar.xz) = c32c74d69c4a2f79f120f44965525fc8197bbd39a9dac85027b2d9f74e04d8dc -SIZE (thunderbird-45.6.0.source.tar.xz) = 201145016 +TIMESTAMP = 1486551160 +SHA256 (thunderbird-45.7.1.source.tar.xz) = 5fc7a39c6a1baacfa37d6a52c9384f70c171dd0bb581576d370bdb29c84b9ffb +SIZE (thunderbird-45.7.1.source.tar.xz) = 201127704 diff --git a/mail/thunderbird/files/patch-bug1290037 b/mail/thunderbird/files/patch-bug1290037 deleted file mode 100644 index 94d9cd381bfb..000000000000 --- a/mail/thunderbird/files/patch-bug1290037 +++ /dev/null @@ -1,29 +0,0 @@ -commit 7943c27406fb -Author: Franziskus Kiefer <franziskuskiefer@gmail.com> -Date: Thu Jul 28 16:48:00 2016 +0200 - - Bug 1290037 - Update keybits in H2, r=mt - - MozReview-Commit-ID: 35oWoDMqe1Y - - --HG-- - extra : rebase_source : 020fbd93c190131eb04eed2d583787d6e5954a5a ---- - netwerk/protocol/http/Http2Session.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git netwerk/protocol/http/Http2Session.cpp netwerk/protocol/http/Http2Session.cpp -index dbcc1115cbd3..f3cd57304f73 100644 ---- mozilla/netwerk/protocol/http/Http2Session.cpp -+++ mozilla/netwerk/protocol/http/Http2Session.cpp -@@ -3549,8 +3549,8 @@ Http2Session::ConfirmTLSProfile() - LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to DH %d < 2048\n", - this, keybits)); - RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY); -- } else if (kea == ssl_kea_ecdh && keybits < 256) { // 256 bits is "security level" of 128 -- LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 256\n", -+ } else if (kea == ssl_kea_ecdh && keybits < 224) { // see rfc7540 9.2.1. -+ LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 224\n", - this, keybits)); - RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY); - } |