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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E6231158008 for ; Wed, 14 Jun 2023 15:10:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1828BE09A2; Wed, 14 Jun 2023 15:10:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E343FE09A2 for ; Wed, 14 Jun 2023 15:10:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E2F1533BDFC for ; Wed, 14 Jun 2023 15:10:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A4CCA66 for ; Wed, 14 Jun 2023 15:09:59 +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: <1686755396.95dc28cd8feecf8fd7e7d9d9310ccfa08a2e8ec8.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/files/, www-client/chromium/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/chromium-114.0.5735.133.ebuild www-client/chromium/files/chromium-114-iwyu-gcc-13.patch X-VCS-Directories: www-client/chromium/files/ www-client/chromium/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 95dc28cd8feecf8fd7e7d9d9310ccfa08a2e8ec8 X-VCS-Branch: master Date: Wed, 14 Jun 2023 15:09:59 +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: 4ed8f7ab-7892-4f6c-8cc2-9a07d3ac1545 X-Archives-Hash: 95873fb178872b0ecf79aeb565589644 commit: 95dc28cd8feecf8fd7e7d9d9310ccfa08a2e8ec8 Author: Mike Gilbert gentoo org> AuthorDate: Wed Jun 14 15:08:31 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Jun 14 15:09:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95dc28cd www-client/chromium: backport fix for missing includes Bug: https://bugs.gentoo.org/908432 Signed-off-by: Mike Gilbert gentoo.org> www-client/chromium/chromium-114.0.5735.133.ebuild | 1 + .../chromium/files/chromium-114-iwyu-gcc-13.patch | 75 ++++++++++++++++++++++ 2 files changed, 76 insertions(+) diff --git a/www-client/chromium/chromium-114.0.5735.133.ebuild b/www-client/chromium/chromium-114.0.5735.133.ebuild index 2775c0204444..0c1897d84b89 100644 --- a/www-client/chromium/chromium-114.0.5735.133.ebuild +++ b/www-client/chromium/chromium-114.0.5735.133.ebuild @@ -360,6 +360,7 @@ src_prepare() { "${FILESDIR}/chromium-114-compiler.patch" "${FILESDIR}/chromium-114-gcc12.patch" "${FILESDIR}/chromium-114-sigsegv-dom.patch" + "${FILESDIR}/chromium-114-iwyu-gcc-13.patch" ) if use ppc64 ; then diff --git a/www-client/chromium/files/chromium-114-iwyu-gcc-13.patch b/www-client/chromium/files/chromium-114-iwyu-gcc-13.patch new file mode 100644 index 000000000000..564a9ee75843 --- /dev/null +++ b/www-client/chromium/files/chromium-114-iwyu-gcc-13.patch @@ -0,0 +1,75 @@ +From 75c57b5f810d6ac6f393459d2884877c7fcf774c Mon Sep 17 00:00:00 2001 +From: Bruno Pitrus +Date: Mon, 05 Jun 2023 21:22:55 +0000 +Subject: [PATCH] IWYU: Add missing standard includes for GCC13 + +Bug: 957519 +Change-Id: Ie327653083173b41dfd5a456f82ccb490c305c26 +Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4547709 +Commit-Queue: Nico Weber +Auto-Submit: Bruno Pitrus +Reviewed-by: Nico Weber +Reviewed-by: Eric Orth +Cr-Commit-Position: refs/heads/main@{#1153468} +--- + +diff --git a/base/cpu.h b/base/cpu.h +index 10450e9..2ac00e9 100644 +--- a/base/cpu.h ++++ b/base/cpu.h +@@ -5,6 +5,7 @@ + #ifndef BASE_CPU_H_ + #define BASE_CPU_H_ + ++#include + #include + + #include "base/base_export.h" +diff --git a/components/services/app_service/public/cpp/intent_filter.h b/components/services/app_service/public/cpp/intent_filter.h +index 9c83ccf..48724963 100644 +--- a/components/services/app_service/public/cpp/intent_filter.h ++++ b/components/services/app_service/public/cpp/intent_filter.h +@@ -5,6 +5,7 @@ + #ifndef COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_INTENT_FILTER_H_ + #define COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_INTENT_FILTER_H_ + ++#include + #include + #include + #include +diff --git a/components/services/app_service/public/cpp/permission.h b/components/services/app_service/public/cpp/permission.h +index 82d323a..ede8540 100644 +--- a/components/services/app_service/public/cpp/permission.h ++++ b/components/services/app_service/public/cpp/permission.h +@@ -5,6 +5,7 @@ + #ifndef COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_PERMISSION_H_ + #define COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_PERMISSION_H_ + ++#include + #include + #include + +diff --git a/components/viz/common/view_transition_element_resource_id.h b/components/viz/common/view_transition_element_resource_id.h +index 17ae568..44f980f 100644 +--- a/components/viz/common/view_transition_element_resource_id.h ++++ b/components/viz/common/view_transition_element_resource_id.h +@@ -7,6 +7,7 @@ + + #include + ++#include + #include + #include + +diff --git a/net/cert/pki/string_util.h b/net/cert/pki/string_util.h +index b18f716..7340408 100644 +--- a/net/cert/pki/string_util.h ++++ b/net/cert/pki/string_util.h +@@ -9,6 +9,7 @@ + + #include + ++#include + #include + #include +