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 3A6F0158020 for ; Sun, 4 Dec 2022 19:42:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38BBDE0827; Sun, 4 Dec 2022 19:42:06 +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 201DDE0827 for ; Sun, 4 Dec 2022 19:42:06 +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 1BA34341298 for ; Sun, 4 Dec 2022 19:42:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A91C9773 for ; Sun, 4 Dec 2022 19:42:03 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1670182908.4047ed6af865d423ff2104c1ed071e4e0b8735b5.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/webkit-gtk/files/, net-libs/webkit-gtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/webkit-gtk/files/2.38.2-GTK-Fix-build-failure-in-ClipboardGtk4.cpp.patch net-libs/webkit-gtk/webkit-gtk-2.38.2-r500.ebuild X-VCS-Directories: net-libs/webkit-gtk/files/ net-libs/webkit-gtk/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 4047ed6af865d423ff2104c1ed071e4e0b8735b5 X-VCS-Branch: master Date: Sun, 4 Dec 2022 19:42:03 +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: 11054ea8-916d-4966-8aea-27d0cf09859d X-Archives-Hash: 1a279d23a2870d99defca0933a610214 commit: 4047ed6af865d423ff2104c1ed071e4e0b8735b5 Author: Matt Turner gentoo org> AuthorDate: Sun Dec 4 19:29:04 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Dec 4 19:41:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4047ed6a net-libs/webkit-gtk: Fix build failure in ClipboardGtk4.cpp Closes: https://bugs.gentoo.org/882609 Signed-off-by: Matt Turner gentoo.org> ...TK-Fix-build-failure-in-ClipboardGtk4.cpp.patch | 31 ++++++++++++++++++++++ net-libs/webkit-gtk/webkit-gtk-2.38.2-r500.ebuild | 2 ++ 2 files changed, 33 insertions(+) diff --git a/net-libs/webkit-gtk/files/2.38.2-GTK-Fix-build-failure-in-ClipboardGtk4.cpp.patch b/net-libs/webkit-gtk/files/2.38.2-GTK-Fix-build-failure-in-ClipboardGtk4.cpp.patch new file mode 100644 index 000000000000..e5b032df8659 --- /dev/null +++ b/net-libs/webkit-gtk/files/2.38.2-GTK-Fix-build-failure-in-ClipboardGtk4.cpp.patch @@ -0,0 +1,31 @@ +https://bugs.gentoo.org/882609 +https://github.com/WebKit/WebKit/pull/7036 + +From b6b8028ff267470b593e5763b285283295d6e855 Mon Sep 17 00:00:00 2001 +From: Matt Turner +Date: Thu, 1 Dec 2022 14:30:55 -0600 +Subject: [PATCH] [GTK] Fix build failure in ClipboardGtk4.cpp + https://bugs.gentoo.org/882609 + +Reviewed by Michael Catanzaro + +* Source/WebKit/UIProcess/gtk/ClipboardGtk4.cpp: +--- + Source/WebKit/UIProcess/gtk/ClipboardGtk4.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/Source/WebKit/UIProcess/gtk/ClipboardGtk4.cpp b/Source/WebKit/UIProcess/gtk/ClipboardGtk4.cpp +index 4fd9616c5f7f..c6faa02957c7 100644 +--- a/Source/WebKit/UIProcess/gtk/ClipboardGtk4.cpp ++++ b/Source/WebKit/UIProcess/gtk/ClipboardGtk4.cpp +@@ -34,6 +34,7 @@ + #include + #include + #include ++#include + + namespace WebKit { + +-- +2.37.4 + diff --git a/net-libs/webkit-gtk/webkit-gtk-2.38.2-r500.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.38.2-r500.ebuild index 71c036b210ae..04cd193ba61a 100644 --- a/net-libs/webkit-gtk/webkit-gtk-2.38.2-r500.ebuild +++ b/net-libs/webkit-gtk/webkit-gtk-2.38.2-r500.ebuild @@ -156,6 +156,8 @@ pkg_setup() { src_prepare() { cmake_src_prepare gnome2_src_prepare + + eapply "${FILESDIR}"/${PV}-GTK-Fix-build-failure-in-ClipboardGtk4.cpp.patch } src_configure() {