From owner-svn-ports-head@freebsd.org Fri May 29 23:26:00 2020 Return-Path: Delivered-To: svn-ports-head@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 371DE2F3D45; Fri, 29 May 2020 23:26:00 +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 49Ygfw0Sp2z4c7W; Fri, 29 May 2020 23:26:00 +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 06AF61F3CF; Fri, 29 May 2020 23:26:00 +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 04TNPxlY045745; Fri, 29 May 2020 23:25:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04TNPwTt045740; Fri, 29 May 2020 23:25:58 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202005292325.04TNPwTt045740@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 29 May 2020 23:25:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r537006 - in head: mail/thunderbird mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: mail/thunderbird mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files X-SVN-Commit-Revision: 537006 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 May 2020 23:26:00 -0000 Author: jbeich Date: Fri May 29 23:25:58 2020 New Revision: 537006 URL: https://svnweb.freebsd.org/changeset/ports/537006 Log: www/firefox: also check posix_fallocate error in WaylandShmPool::Resize PR: 240884 Submitted by: Greg V Modified: head/mail/thunderbird/Makefile (contents, props changed) head/mail/thunderbird/files/patch-bug1618914 (contents, props changed) head/www/firefox-esr/Makefile (contents, props changed) head/www/firefox-esr/files/patch-bug1618914 (contents, props changed) head/www/firefox/Makefile (contents, props changed) head/www/firefox/files/patch-bug1618914 (contents, props changed) Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Fri May 29 22:44:43 2020 (r537005) +++ head/mail/thunderbird/Makefile Fri May 29 23:25:58 2020 (r537006) @@ -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: head/mail/thunderbird/files/patch-bug1618914 ============================================================================== --- head/mail/thunderbird/files/patch-bug1618914 Fri May 29 22:44:43 2020 (r537005) +++ head/mail/thunderbird/files/patch-bug1618914 Fri May 29 23:25:58 2020 (r537006) @@ -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: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Fri May 29 22:44:43 2020 (r537005) +++ head/www/firefox-esr/Makefile Fri May 29 23:25:58 2020 (r537006) @@ -3,6 +3,7 @@ PORTNAME= firefox DISTVERSION= 68.9.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: head/www/firefox-esr/files/patch-bug1618914 ============================================================================== --- head/www/firefox-esr/files/patch-bug1618914 Fri May 29 22:44:43 2020 (r537005) +++ head/www/firefox-esr/files/patch-bug1618914 Fri May 29 23:25:58 2020 (r537006) @@ -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: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Fri May 29 22:44:43 2020 (r537005) +++ head/www/firefox/Makefile Fri May 29 23:25:58 2020 (r537006) @@ -3,7 +3,7 @@ PORTNAME= firefox DISTVERSION= 77.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: head/www/firefox/files/patch-bug1618914 ============================================================================== --- head/www/firefox/files/patch-bug1618914 Fri May 29 22:44:43 2020 (r537005) +++ head/www/firefox/files/patch-bug1618914 Fri May 29 23:25:58 2020 (r537006) @@ -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);