From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 76910138334 for ; Sun, 27 Oct 2019 14:40:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC818E09B8; Sun, 27 Oct 2019 14:40:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8FAE9E09B6 for ; Sun, 27 Oct 2019 14:40:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9796534C42E for ; Sun, 27 Oct 2019 14:40:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 270A283E for ; Sun, 27 Oct 2019 14:40:09 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1572187128.112ec0703736e211689b6bca45d7f6ae702065d4.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/, www-client/chromium/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/chromium-79.0.3941.4.ebuild www-client/chromium/files/chromium-79-icu-65.patch X-VCS-Directories: www-client/chromium/ www-client/chromium/files/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 112ec0703736e211689b6bca45d7f6ae702065d4 X-VCS-Branch: master Date: Sun, 27 Oct 2019 14:40:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3293a693-51b8-4f4a-9197-f18315001cc1 X-Archives-Hash: 0d44553f0bda1807904ce0f441622fa0 commit: 112ec0703736e211689b6bca45d7f6ae702065d4 Author: Stephan Hartmann tu-dresden de> AuthorDate: Sat Oct 26 21:31:37 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Oct 27 14:38:48 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=112ec070 www-client/chromium: fix build with icu-65 Closes: https://bugs.gentoo.org/698564 Closes: https://github.com/gentoo/gentoo/pull/13455 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Stephan Hartmann googlemail.com> Signed-off-by: Mike Gilbert gentoo.org> www-client/chromium/chromium-79.0.3941.4.ebuild | 1 + www-client/chromium/files/chromium-79-icu-65.patch | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/www-client/chromium/chromium-79.0.3941.4.ebuild b/www-client/chromium/chromium-79.0.3941.4.ebuild index 1cb2a50a73e..9e2a2c46130 100644 --- a/www-client/chromium/chromium-79.0.3941.4.ebuild +++ b/www-client/chromium/chromium-79.0.3941.4.ebuild @@ -150,6 +150,7 @@ PATCHES=( "${FILESDIR}/chromium-79-swiftshader-linux.patch" "${FILESDIR}/chromium-79-system-hb.patch" "${FILESDIR}/chromium-79-include.patch" + "${FILESDIR}/chromium-79-icu-65.patch" "${FILESDIR}/chromium-79-gcc-ambiguous-nodestructor.patch" "${FILESDIR}/chromium-79-gcc-permissive.patch" "${FILESDIR}/chromium-79-gcc-alignas.patch" diff --git a/www-client/chromium/files/chromium-79-icu-65.patch b/www-client/chromium/files/chromium-79-icu-65.patch new file mode 100644 index 00000000000..e0732b6ace2 --- /dev/null +++ b/www-client/chromium/files/chromium-79-icu-65.patch @@ -0,0 +1,13 @@ +diff --git a/third_party/blink/renderer/core/dom/document.cc b/third_party/blink/renderer/core/dom/document.cc +index 5a62770..1fae2aa 100644 +--- a/third_party/blink/renderer/core/dom/document.cc ++++ b/third_party/blink/renderer/core/dom/document.cc +@@ -6192,7 +6192,7 @@ static ParseQualifiedNameResult ParseQualifiedNameInternal( + + for (unsigned i = 0; i < length;) { + UChar32 c; +- U16_NEXT(characters, i, length, c) ++ U16_NEXT(characters, i, length, c); + if (c == ':') { + if (saw_colon) + return ParseQualifiedNameResult(kQNMultipleColons);