From b91519c4968fd06cae99534898f6326f94fc1e02 Mon Sep 17 00:00:00 2001 From: Peter Bui Date: Wed, 17 Feb 2021 11:32:10 -0500 Subject: [PATCH] chromium: update to 88.0.4324.182. - Built for x86_64, x86_64-musl, i686. - Tested on x86_64. - Remove/update deprecated build options: is_desktop_linux, closure_compile, binutils_path, linux_use_bundled_binutils. --- srcpkgs/chromium/template | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/srcpkgs/chromium/template b/srcpkgs/chromium/template index b543051ccf7..098cb904da9 100644 --- a/srcpkgs/chromium/template +++ b/srcpkgs/chromium/template @@ -1,7 +1,7 @@ # Template file for 'chromium' pkgname=chromium # See http://www.chromium.org/developers/calendar for the latest version -version=88.0.4324.150 +version=88.0.4324.182 revision=1 archs="i686* x86_64* aarch64* armv7l* ppc64le*" short_desc="Google's attempt at creating a safer, faster, and more stable browser" @@ -9,7 +9,7 @@ maintainer="Enno Boland " license="BSD-3-Clause" homepage="https://www.chromium.org/" distfiles="https://commondatastorage.googleapis.com/chromium-browser-official/${pkgname}-${version}.tar.xz" -checksum=ae12e94392986c6b8ea4413356a49bae0a19356ffe2ea95495303cf2decb38c3 +checksum=30411fc3ec2d33df4c5cad41f21affa3823c80f7dbd394f6d68f9a1e81015b81 nocross=yes lib32disabled=yes @@ -182,15 +182,15 @@ do_configure() { 'use_system_harfbuzz=true' 'enable_widevine=true' 'enable_hangout_services_extension=true' - 'is_desktop_linux=true' ) conf+=( "use_vaapi=$(vopt_if vaapi true false)" ) + # https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md conf+=( - "closure_compile=$(vopt_if js_optimize true false)" + "enable_js_type_check=$(vopt_if js_optimize true false)" ) conf+=( @@ -216,9 +216,7 @@ do_configure() { # Never use bundled binutils/gold binary. conf+=( - "binutils_path=\"${XBPS_CROSS_BASE}/usr/bin\"" "gold_path=\"${XBPS_CROSS_BASE}/usr/bin/ld.gold\"" - 'linux_use_bundled_binutils=false' 'use_custom_libcxx=false' 'use_lld=false' )