From owner-svn-ports-branches@freebsd.org Sat May 30 00:22:43 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 48D1A2F4EFA; Sat, 30 May 2020 00:22:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49YhwM1G2Lz3SM3; Sat, 30 May 2020 00:22:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 26666203EE; Sat, 30 May 2020 00:22:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04U0MhIQ083201; Sat, 30 May 2020 00:22:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04U0MgZO083194; Sat, 30 May 2020 00:22:42 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202005300022.04U0MgZO083194@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 30 May 2020 00:22:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r537012 - in branches/2020Q2: mail/thunderbird mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2020Q2: mail/thunderbird mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files X-SVN-Commit-Revision: 537012 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 May 2020 00:22:43 -0000 Author: jbeich Date: Sat May 30 00:22:41 2020 New Revision: 537012 URL: https://svnweb.freebsd.org/changeset/ports/537012 Log: MFH: r537006 www/firefox: also check posix_fallocate error in WaylandShmPool::Resize PR: 240884 Submitted by: Greg V Approved by: ports-secteam blanket Modified: branches/2020Q2/mail/thunderbird/Makefile branches/2020Q2/mail/thunderbird/files/patch-bug1618914 branches/2020Q2/www/firefox-esr/Makefile branches/2020Q2/www/firefox-esr/files/patch-bug1618914 branches/2020Q2/www/firefox/Makefile branches/2020Q2/www/firefox/files/patch-bug1618914 Directory Properties: branches/2020Q2/ (props changed) Modified: branches/2020Q2/mail/thunderbird/Makefile ============================================================================== --- branches/2020Q2/mail/thunderbird/Makefile Sat May 30 00:21:10 2020 (r537011) +++ branches/2020Q2/mail/thunderbird/Makefile Sat May 30 00:22:41 2020 (r537012) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 68.8.1 +PORTREVISION= 1 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: branches/2020Q2/mail/thunderbird/files/patch-bug1618914 ============================================================================== --- branches/2020Q2/mail/thunderbird/files/patch-bug1618914 Sat May 30 00:21:10 2020 (r537011) +++ branches/2020Q2/mail/thunderbird/files/patch-bug1618914 Sat May 30 00:22:41 2020 (r537012) @@ -32,3 +32,12 @@ index 9a73326399bd5..9e42a7f1c5d18 100644 return fd; } +@@ -265,7 +266,7 @@ bool WaylandShmPool::Resize(int aSize) { + do { + errno = posix_fallocate(mShmPoolFd, 0, aSize); + } while (errno == EINTR); +- if (errno != 0) return false; ++ if (errno != EINVAL && errno != EOPNOTSUPP) return false; + #endif + + wl_shm_pool_resize(mShmPool, aSize); Modified: branches/2020Q2/www/firefox-esr/Makefile ============================================================================== --- branches/2020Q2/www/firefox-esr/Makefile Sat May 30 00:21:10 2020 (r537011) +++ branches/2020Q2/www/firefox-esr/Makefile Sat May 30 00:22:41 2020 (r537012) @@ -3,7 +3,7 @@ PORTNAME= firefox DISTVERSION= 68.8.0 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2020Q2/www/firefox-esr/files/patch-bug1618914 ============================================================================== --- branches/2020Q2/www/firefox-esr/files/patch-bug1618914 Sat May 30 00:21:10 2020 (r537011) +++ branches/2020Q2/www/firefox-esr/files/patch-bug1618914 Sat May 30 00:22:41 2020 (r537012) @@ -32,3 +32,12 @@ index 9a73326399bd5..9e42a7f1c5d18 100644 return fd; } +@@ -265,7 +266,7 @@ bool WaylandShmPool::Resize(int aSize) { + do { + errno = posix_fallocate(mShmPoolFd, 0, aSize); + } while (errno == EINTR); +- if (errno != 0) return false; ++ if (errno != EINVAL && errno != EOPNOTSUPP) return false; + #endif + + wl_shm_pool_resize(mShmPool, aSize); Modified: branches/2020Q2/www/firefox/Makefile ============================================================================== --- branches/2020Q2/www/firefox/Makefile Sat May 30 00:21:10 2020 (r537011) +++ branches/2020Q2/www/firefox/Makefile Sat May 30 00:22:41 2020 (r537012) @@ -3,7 +3,7 @@ PORTNAME= firefox DISTVERSION= 76.0.1 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: branches/2020Q2/www/firefox/files/patch-bug1618914 ============================================================================== --- branches/2020Q2/www/firefox/files/patch-bug1618914 Sat May 30 00:21:10 2020 (r537011) +++ branches/2020Q2/www/firefox/files/patch-bug1618914 Sat May 30 00:22:41 2020 (r537012) @@ -32,3 +32,12 @@ index 9a73326399bd5..9e42a7f1c5d18 100644 return fd; } +@@ -265,7 +266,7 @@ bool WaylandShmPool::Resize(int aSize) { + do { + errno = posix_fallocate(mShmPoolFd, 0, aSize); + } while (errno == EINTR); +- if (errno != 0) return false; ++ if (errno != EINVAL && errno != EOPNOTSUPP) return false; + #endif + + wl_shm_pool_resize(mShmPool, aSize);