Date: Fri, 11 May 2018 20:11:18 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r469687 - in branches/2018Q2/www/waterfox: . files Message-ID: <201805112011.w4BKBI32040184@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Fri May 11 20:11:18 2018 New Revision: 469687 URL: https://svnweb.freebsd.org/changeset/ports/469687 Log: MFH: r469685 www/waterfox: update to 56.1.0.89 Changes: https://github.com/MrAlex94/Waterfox/compare/56.1.0...2bb1a86e5dbd6 Approved by: ports-secteam blanket Added: branches/2018Q2/www/waterfox/files/patch-bug1436117 - copied unchanged from r469685, head/www/waterfox/files/patch-bug1436117 Deleted: branches/2018Q2/www/waterfox/files/patch-a-bug863246 branches/2018Q2/www/waterfox/files/patch-bug1314928 branches/2018Q2/www/waterfox/files/patch-bug1341234 branches/2018Q2/www/waterfox/files/patch-bug1386371 branches/2018Q2/www/waterfox/files/patch-bug1386887 branches/2018Q2/www/waterfox/files/patch-bug1409680 branches/2018Q2/www/waterfox/files/patch-bug1416045 branches/2018Q2/www/waterfox/files/patch-bug1433715 branches/2018Q2/www/waterfox/files/patch-bug1434619 branches/2018Q2/www/waterfox/files/patch-bug1436482 branches/2018Q2/www/waterfox/files/patch-bug1436809 branches/2018Q2/www/waterfox/files/patch-bug1440717 branches/2018Q2/www/waterfox/files/patch-bug1443092 branches/2018Q2/www/waterfox/files/patch-bug1448774 branches/2018Q2/www/waterfox/files/patch-bug1449548 branches/2018Q2/www/waterfox/files/patch-bug1451908 branches/2018Q2/www/waterfox/files/patch-servo17934 branches/2018Q2/www/waterfox/files/patch-servo17969 branches/2018Q2/www/waterfox/files/patch-servo18046 branches/2018Q2/www/waterfox/files/patch-servo18126 branches/2018Q2/www/waterfox/files/patch-servo19128 branches/2018Q2/www/waterfox/files/patch-servo19162 branches/2018Q2/www/waterfox/files/patch-servo19654 branches/2018Q2/www/waterfox/files/patch-waterfox503 Modified: branches/2018Q2/www/waterfox/Makefile branches/2018Q2/www/waterfox/distinfo branches/2018Q2/www/waterfox/files/patch-bug1393283 Directory Properties: branches/2018Q2/ (props changed) Modified: branches/2018Q2/www/waterfox/Makefile ============================================================================== --- branches/2018Q2/www/waterfox/Makefile Fri May 11 20:00:42 2018 (r469686) +++ branches/2018Q2/www/waterfox/Makefile Fri May 11 20:11:18 2018 (r469687) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= waterfox -DISTVERSION= 56.1.0 -PORTREVISION= 18 +DISTVERSION= 56.1.0-89 +DISTVERSIONSUFFIX= -g2bb1a86e5dbd6 CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Modified: branches/2018Q2/www/waterfox/distinfo ============================================================================== --- branches/2018Q2/www/waterfox/distinfo Fri May 11 20:00:42 2018 (r469686) +++ branches/2018Q2/www/waterfox/distinfo Fri May 11 20:11:18 2018 (r469687) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521928239 -SHA256 (MrAlex94-Waterfox-56.1.0_GH0.tar.gz) = 638d3c2bf092c36fac3a93ace4aa30bcfee0b7fe867e5b515f304238b9414d17 -SIZE (MrAlex94-Waterfox-56.1.0_GH0.tar.gz) = 394072277 +TIMESTAMP = 1526056588 +SHA256 (MrAlex94-Waterfox-56.1.0-89-g2bb1a86e5dbd6_GH0.tar.gz) = ab20b2392440e321ce7a3ecbd8b77eae40110b387094488cec95c57f2a6853bc +SIZE (MrAlex94-Waterfox-56.1.0-89-g2bb1a86e5dbd6_GH0.tar.gz) = 394172045 Modified: branches/2018Q2/www/waterfox/files/patch-bug1393283 ============================================================================== --- branches/2018Q2/www/waterfox/files/patch-bug1393283 Fri May 11 20:00:42 2018 (r469686) +++ branches/2018Q2/www/waterfox/files/patch-bug1393283 Fri May 11 20:11:18 2018 (r469687) @@ -37,7 +37,7 @@ index 31d0f8832732..b957d835b52f 100644 - // version. - uint32_t spoofedVersion = mAppVersion.ToInteger(&rv); - if (NS_SUCCEEDED(rv)) { -- spoofedVersion = spoofedVersion - (spoofedVersion % 10); +- spoofedVersion = (10 - spoofedVersion % 10) + spoofedVersion; - mSpoofedUserAgent.Assign(nsPrintfCString( - "Mozilla/5.0 (%s; rv:%d.0) Gecko/%s Firefox/%d.0", - SPOOFED_OSCPU, spoofedVersion, LEGACY_BUILD_ID, spoofedVersion)); Copied: branches/2018Q2/www/waterfox/files/patch-bug1436117 (from r469685, head/www/waterfox/files/patch-bug1436117) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q2/www/waterfox/files/patch-bug1436117 Fri May 11 20:11:18 2018 (r469687, copy of r469685, head/www/waterfox/files/patch-bug1436117) @@ -0,0 +1,42 @@ +commit 34646edc7884 +Author: Andreas Pehrson <pehrsons@mozilla.com> +Date: Mon Feb 26 10:32:29 2018 +0100 + + Bug 1436117 - Keep aImage around until the WrappedI420Buffer is released. r=dminor + + MozReview-Commit-ID: GuBHFnPA3YQ + + --HG-- + extra : rebase_source : e5cc3c1d5e0f08279e8c40ebf03ef7e535cfe5e5 +--- + media/webrtc/signaling/src/mediapipeline/MediaPipeline.cpp | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git media/webrtc/signaling/src/mediapipeline/MediaPipeline.cpp media/webrtc/signaling/src/mediapipeline/MediaPipeline.cpp +index 2bb7203f85bd0..cfaadaaa7ff73 100644 +--- media/webrtc/signaling/src/mediapipeline/MediaPipeline.cpp ++++ media/webrtc/signaling/src/mediapipeline/MediaPipeline.cpp +@@ -57,6 +57,7 @@ + #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" + #include "webrtc/common_video/include/video_frame_buffer.h" + #include "webrtc/base/bind.h" ++#include "webrtc/base/keep_ref_until_done.h" + + #include "nsThreadUtils.h" + +@@ -336,14 +337,13 @@ protected: + uint32_t width = yuv->GetSize().width; + uint32_t height = yuv->GetSize().height; + +- rtc::Callback0<void> callback_unused; + rtc::scoped_refptr<webrtc::WrappedI420Buffer> video_frame_buffer( + new rtc::RefCountedObject<webrtc::WrappedI420Buffer>( + width, height, + y, yStride, + cb, cbCrStride, + cr, cbCrStride, +- callback_unused)); ++ rtc::KeepRefUntilDone(aImage))); + + webrtc::VideoFrame i420_frame(video_frame_buffer, + 0, 0, // not setting timestamps
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805112011.w4BKBI32040184>