From owner-svn-ports-branches@freebsd.org Sat Sep 19 01:22:05 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 276E83F6A63; Sat, 19 Sep 2020 01:22:05 +0000 (UTC) (envelope-from dvl@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 4BtXx90HJkz4QDG; Sat, 19 Sep 2020 01:22:05 +0000 (UTC) (envelope-from dvl@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 E180624346; Sat, 19 Sep 2020 01:22:04 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08J1M4RQ050413; Sat, 19 Sep 2020 01:22:04 GMT (envelope-from dvl@FreeBSD.org) Received: (from dvl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08J1M4tV050411; Sat, 19 Sep 2020 01:22:04 GMT (envelope-from dvl@FreeBSD.org) Message-Id: <202009190122.08J1M4tV050411@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dvl set sender to dvl@FreeBSD.org using -f From: Dan Langille Date: Sat, 19 Sep 2020 01:22:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548933 - branches/2020Q3/archivers/brotli X-SVN-Group: ports-branches X-SVN-Commit-Author: dvl X-SVN-Commit-Paths: branches/2020Q3/archivers/brotli X-SVN-Commit-Revision: 548933 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, 19 Sep 2020 01:22:05 -0000 Author: dvl Date: Sat Sep 19 01:22:04 2020 New Revision: 548933 URL: https://svnweb.freebsd.org/changeset/ports/548933 Log: MFH: r546350 Update from 1.0.7 to 1.0.9. Please consider updating brotli to version 1.0.9 (latest). Version 1.0.9 contains a fix to "integer overflow" problem. This happens when "one-shot" decoding API is used (or input chunk for streaming API is not limited), input size (chunk size) is larger than 2GiB, and input contains uncompressed blocks. After the overflow happens, `memcpy` is invoked with a gigantic `num` value, that will likely cause the crash. Approved by: ports-secteam (fluffy) Modified: branches/2020Q3/archivers/brotli/Makefile branches/2020Q3/archivers/brotli/distinfo Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/archivers/brotli/Makefile ============================================================================== --- branches/2020Q3/archivers/brotli/Makefile Sat Sep 19 01:20:52 2020 (r548932) +++ branches/2020Q3/archivers/brotli/Makefile Sat Sep 19 01:22:04 2020 (r548933) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= brotli -PORTVERSION= 1.0.7 -PORTREVISION= 2 +PORTVERSION= 1.0.9 DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= archivers devel Modified: branches/2020Q3/archivers/brotli/distinfo ============================================================================== --- branches/2020Q3/archivers/brotli/distinfo Sat Sep 19 01:20:52 2020 (r548932) +++ branches/2020Q3/archivers/brotli/distinfo Sat Sep 19 01:22:04 2020 (r548933) @@ -1,3 +1,3 @@ -TIMESTAMP = 1540423662 -SHA256 (google-brotli-v1.0.7_GH0.tar.gz) = 4c61bfb0faca87219ea587326c467b95acb25555b53d1a421ffa3c8a9296ee2c -SIZE (google-brotli-v1.0.7_GH0.tar.gz) = 23827908 +TIMESTAMP = 1598538126 +SHA256 (google-brotli-v1.0.9_GH0.tar.gz) = f9e8d81d0405ba66d181529af42a3354f838c939095ff99930da6aa9cdf6fe46 +SIZE (google-brotli-v1.0.9_GH0.tar.gz) = 486984