summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-01-21 19:29:41 +0000
committerRene Ladan <rene@FreeBSD.org>2020-01-21 19:29:41 +0000
commita65946d7a64d1684626405ae7a86cf503713cc07 (patch)
treeff55de009f8b49ed9776ac7fba33f3b7b6ea66c6
parentdevel/ghub: Update to 3.3.0 (diff)
www/chromium: update to 79.0.3945.130 [1] and restore path for policies [2].
Submitted by: Matthias Wolf [1], Landon Fuller [2] via Github MFH: 2020Q1 (security, browser) Security: https://chromereleases.googleblog.com/2020/01/stable-channel-update-for-desktop_16.html
Notes
Notes: svn path=/head/; revision=523735
-rw-r--r--www/chromium/Makefile2
-rw-r--r--www/chromium/distinfo10
-rw-r--r--www/chromium/files/patch-chrome_common_chrome__paths.cc10
3 files changed, 16 insertions, 6 deletions
diff --git a/www/chromium/Makefile b/www/chromium/Makefile
index d3c0409630fd..22007040c44d 100644
--- a/www/chromium/Makefile
+++ b/www/chromium/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= chromium
-PORTVERSION= 79.0.3945.117
+PORTVERSION= 79.0.3945.130
CATEGORIES?= www java
MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ \
LOCAL/cpm/chromium/:fonts
diff --git a/www/chromium/distinfo b/www/chromium/distinfo
index 08234ed4c978..c376ac7beadb 100644
--- a/www/chromium/distinfo
+++ b/www/chromium/distinfo
@@ -1,7 +1,7 @@
-TIMESTAMP = 1578472567
-SHA256 (chromium-79.0.3945.117.tar.xz) = 4d960e8bd790cc1c8e7f0632790424957c4996a8a91b9d899eb572acec854ef1
-SIZE (chromium-79.0.3945.117.tar.xz) = 778215364
-SHA256 (chromium-79.0.3945.117-testdata.tar.xz) = f53530e59bfd76bf46e123eb281699e340281990a0e10405d48c2e6cefb7d84e
-SIZE (chromium-79.0.3945.117-testdata.tar.xz) = 252398316
+TIMESTAMP = 1579261549
+SHA256 (chromium-79.0.3945.130.tar.xz) = 56193431ab9d1193773b133d86b419bfae8d8b9196eea253660895e0e8f87ba0
+SIZE (chromium-79.0.3945.130.tar.xz) = 778319112
+SHA256 (chromium-79.0.3945.130-testdata.tar.xz) = da0b544e2f9a3022c5120a0dc21b945e4565e7e4b64f086eefd720e2c1e516d8
+SIZE (chromium-79.0.3945.130-testdata.tar.xz) = 252386344
SHA256 (test_fonts.tar.xz) = cf9cbe3b7f1c4c42d426bddc65ec178d333ad7e205a36fe0a606a3c0c545ece1
SIZE (test_fonts.tar.xz) = 200040
diff --git a/www/chromium/files/patch-chrome_common_chrome__paths.cc b/www/chromium/files/patch-chrome_common_chrome__paths.cc
index 171f2dd8afe1..65e998e965a5 100644
--- a/www/chromium/files/patch-chrome_common_chrome__paths.cc
+++ b/www/chromium/files/patch-chrome_common_chrome__paths.cc
@@ -35,6 +35,16 @@
if (!GetUserDownloadsDirectorySafe(&cur))
return false;
break;
+@@ -482,6 +482,9 @@ bool PathProvider(int key, base::FilePath* result) {
+ case chrome::DIR_POLICY_FILES: {
+ #if BUILDFLAG(GOOGLE_CHROME_BRANDING)
+ cur = base::FilePath(FILE_PATH_LITERAL("/etc/opt/chrome/policies"));
++#elif defined(OS_BSD)
++ cur = base::FilePath(FILE_PATH_LITERAL(
++ "/usr/local/etc/chrome/policies"));
+ #else
+ cur = base::FilePath(FILE_PATH_LITERAL("/etc/chromium/policies"));
+ #endif
@@ -502,7 +502,7 @@ bool PathProvider(int key, base::FilePath* result) {
}
#endif