From owner-svn-ports-all@freebsd.org Wed Mar 25 01:43:44 2020 Return-Path: Delivered-To: svn-ports-all@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 E9B112718FE; Wed, 25 Mar 2020 01:43:44 +0000 (UTC) (envelope-from cem@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) server-signature RSA-PSS (4096 bits) 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 48n9rJ2cL9z48nm; Wed, 25 Mar 2020 01:43:44 +0000 (UTC) (envelope-from cem@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 4C2E5A52E; Wed, 25 Mar 2020 01:43:36 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02P1hZV6074749; Wed, 25 Mar 2020 01:43:35 GMT (envelope-from cem@FreeBSD.org) Received: (from cem@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02P1hZZe074747; Wed, 25 Mar 2020 01:43:35 GMT (envelope-from cem@FreeBSD.org) Message-Id: <202003250143.02P1hZZe074747@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cem set sender to cem@FreeBSD.org using -f From: Conrad Meyer Date: Wed, 25 Mar 2020 01:43:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529072 - head/www/chromium X-SVN-Group: ports-head X-SVN-Commit-Author: cem X-SVN-Commit-Paths: head/www/chromium X-SVN-Commit-Revision: 529072 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Mar 2020 01:43:45 -0000 Author: cem (src committer) Date: Wed Mar 25 01:43:35 2020 New Revision: 529072 URL: https://svnweb.freebsd.org/changeset/ports/529072 Log: www/chromium: update to 80.0.3987.149 The Chrome stable channel has been updated to 80.0.3987.149[1]. This update includes 13 security fixes, including 9 Sev:High reports from external researchers. [1]: https://chromereleases.googleblog.com/2020/03/stable-channel-update-for-desktop_18.html PR: 245019 Approved by: jrm Security: yes Differential Revision: https://reviews.freebsd.org/D24169 Modified: head/www/chromium/Makefile head/www/chromium/distinfo Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Wed Mar 25 01:30:36 2020 (r529071) +++ head/www/chromium/Makefile Wed Mar 25 01:43:35 2020 (r529072) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 80.0.3987.132 -PORTREVISION= 1 +PORTVERSION= 80.0.3987.149 CATEGORIES?= www java MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ \ LOCAL/cpm/chromium/:fonts @@ -104,20 +103,19 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch-clang # Some parts don't have use_system_* flag, and can be turned on/off by using # replace_gn_files.py script, some parts just turned on/off for target host # OS "target_os == is_bsd", like libusb, libpci. -GN_ARGS+= clang_use_chrome_plugins=false \ +GN_ARGS+= \ + clang_use_chrome_plugins=false \ enable_hangout_services_extension=true \ enable_nacl=false \ enable_one_click_signin=true \ enable_remoting=false \ fieldtrial_testing_like_official_build=true \ is_clang=true \ - jumbo_file_merge_limit=8 \ toolkit_views=true \ treat_warnings_as_errors=false \ use_allocator="none" \ use_allocator_shim=false \ use_aura=true \ - use_bundled_fontconfig=false \ use_custom_libcxx=false \ use_gnome_keyring=false \ use_lld=true \ @@ -158,12 +156,12 @@ ALSA_RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_ ALSA_VARS= GN_ARGS+=use_alsa=true ALSA_VARS_OFF= GN_ARGS+=use_alsa=false -CODECS_VARS= GN_ARGS+=ffmpeg_branding="Chrome" \ - GN_ARGS+=proprietary_codecs=true \ - GN_ARGS+=enable_platform_hevc=true -CODECS_VARS_OFF= GN_ARGS+=ffmpeg_branding="Chromium" \ - GN_ARGS+=proprietary_codecs=false \ - GN_ARGS+=enable_platform_hevc=false +CODECS_VARS= \ + GN_ARGS+=ffmpeg_branding="Chrome" \ + GN_ARGS+=proprietary_codecs=true +CODECS_VARS_OFF= \ + GN_ARGS+=ffmpeg_branding="Chromium" \ + GN_ARGS+=proprietary_codecs=false CUPS_LIB_DEPENDS= libcups.so:print/cups CUPS_VARS= GN_ARGS+=use_cups=true Modified: head/www/chromium/distinfo ============================================================================== --- head/www/chromium/distinfo Wed Mar 25 01:30:36 2020 (r529071) +++ head/www/chromium/distinfo Wed Mar 25 01:43:35 2020 (r529072) @@ -1,7 +1,7 @@ -TIMESTAMP = 1583291717 -SHA256 (chromium-80.0.3987.132.tar.xz) = 2c0012059046a5a7e2bf6e9502f1898f1953226d63b724b82fc18226e285c201 -SIZE (chromium-80.0.3987.132.tar.xz) = 796975056 -SHA256 (chromium-80.0.3987.132-testdata.tar.xz) = 6cbe559778ab75386c90b2de29416bc63b5b6d5b1232876b6a7626359362a91b -SIZE (chromium-80.0.3987.132-testdata.tar.xz) = 251267384 +TIMESTAMP = 1584486585 +SHA256 (chromium-80.0.3987.149.tar.xz) = 50bedde7932921e375b521ceab8989be134a8d937751847e9d9287f7e0a02c1e +SIZE (chromium-80.0.3987.149.tar.xz) = 797049332 +SHA256 (chromium-80.0.3987.149-testdata.tar.xz) = e13e10e16949c57bae899d7f552c7c2b615be8030ac5e38decc83991abb7d90c +SIZE (chromium-80.0.3987.149-testdata.tar.xz) = 251285868 SHA256 (test_fonts.tar.xz) = cf9cbe3b7f1c4c42d426bddc65ec178d333ad7e205a36fe0a606a3c0c545ece1 SIZE (test_fonts.tar.xz) = 200040