Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/, www-client/chromium/files/
Date: Sun, 27 Oct 2019 14:40:27
Message-Id: 1572187128.112ec0703736e211689b6bca45d7f6ae702065d4.floppym@gentoo
1 commit: 112ec0703736e211689b6bca45d7f6ae702065d4
2 Author: Stephan Hartmann <stephan.hartmann <AT> tu-dresden <DOT> de>
3 AuthorDate: Sat Oct 26 21:31:37 2019 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 27 14:38:48 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=112ec070
7
8 www-client/chromium: fix build with icu-65
9
10 Closes: https://bugs.gentoo.org/698564
11 Closes: https://github.com/gentoo/gentoo/pull/13455
12 Package-Manager: Portage-2.3.76, Repoman-2.3.16
13 Signed-off-by: Stephan Hartmann <stha09 <AT> googlemail.com>
14 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
15
16 www-client/chromium/chromium-79.0.3941.4.ebuild | 1 +
17 www-client/chromium/files/chromium-79-icu-65.patch | 13 +++++++++++++
18 2 files changed, 14 insertions(+)
19
20 diff --git a/www-client/chromium/chromium-79.0.3941.4.ebuild b/www-client/chromium/chromium-79.0.3941.4.ebuild
21 index 1cb2a50a73e..9e2a2c46130 100644
22 --- a/www-client/chromium/chromium-79.0.3941.4.ebuild
23 +++ b/www-client/chromium/chromium-79.0.3941.4.ebuild
24 @@ -150,6 +150,7 @@ PATCHES=(
25 "${FILESDIR}/chromium-79-swiftshader-linux.patch"
26 "${FILESDIR}/chromium-79-system-hb.patch"
27 "${FILESDIR}/chromium-79-include.patch"
28 + "${FILESDIR}/chromium-79-icu-65.patch"
29 "${FILESDIR}/chromium-79-gcc-ambiguous-nodestructor.patch"
30 "${FILESDIR}/chromium-79-gcc-permissive.patch"
31 "${FILESDIR}/chromium-79-gcc-alignas.patch"
32
33 diff --git a/www-client/chromium/files/chromium-79-icu-65.patch b/www-client/chromium/files/chromium-79-icu-65.patch
34 new file mode 100644
35 index 00000000000..e0732b6ace2
36 --- /dev/null
37 +++ b/www-client/chromium/files/chromium-79-icu-65.patch
38 @@ -0,0 +1,13 @@
39 +diff --git a/third_party/blink/renderer/core/dom/document.cc b/third_party/blink/renderer/core/dom/document.cc
40 +index 5a62770..1fae2aa 100644
41 +--- a/third_party/blink/renderer/core/dom/document.cc
42 ++++ b/third_party/blink/renderer/core/dom/document.cc
43 +@@ -6192,7 +6192,7 @@ static ParseQualifiedNameResult ParseQualifiedNameInternal(
44 +
45 + for (unsigned i = 0; i < length;) {
46 + UChar32 c;
47 +- U16_NEXT(characters, i, length, c)
48 ++ U16_NEXT(characters, i, length, c);
49 + if (c == ':') {
50 + if (saw_colon)
51 + return ParseQualifiedNameResult(kQNMultipleColons);