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 C1FA2138350 for ; Mon, 10 Feb 2020 06:42:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAB7DE0841; Mon, 10 Feb 2020 06:42:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C05CBE0841 for ; Mon, 10 Feb 2020 06:42:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5D10034E986 for ; Mon, 10 Feb 2020 06:42:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E978810D for ; Mon, 10 Feb 2020 06:42:18 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1581316905.c5eefaf080581309a9d4c6dd03c55a84957aa3b5.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebengine/, dev-qt/qtwebengine/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtwebengine/files/qtwebengine-5.14.1-disable-fatal-warnings.patch dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild X-VCS-Directories: dev-qt/qtwebengine/ dev-qt/qtwebengine/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c5eefaf080581309a9d4c6dd03c55a84957aa3b5 X-VCS-Branch: master Date: Mon, 10 Feb 2020 06:42:18 +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: 889f81a4-c9c4-4f5b-bcf6-3adc47f3ede5 X-Archives-Hash: 53f9b6f7d75b42ae98935b365a7da65f commit: c5eefaf080581309a9d4c6dd03c55a84957aa3b5 Author: Stephan Hartmann googlemail com> AuthorDate: Sat Feb 8 21:35:41 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Feb 10 06:41:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5eefaf0 dev-qt/qtwebengine: fix building on x86 Closes: https://bugs.gentoo.org/695446 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Stephan Hartmann googlemail.com> Closes: https://github.com/gentoo/gentoo/pull/14598 Signed-off-by: Andreas Sturmlechner gentoo.org> .../files/qtwebengine-5.14.1-disable-fatal-warnings.patch | 12 ++++++++++++ dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild | 4 ++++ 2 files changed, 16 insertions(+) diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.14.1-disable-fatal-warnings.patch b/dev-qt/qtwebengine/files/qtwebengine-5.14.1-disable-fatal-warnings.patch new file mode 100644 index 00000000000..40f1f5d6c2a --- /dev/null +++ b/dev-qt/qtwebengine/files/qtwebengine-5.14.1-disable-fatal-warnings.patch @@ -0,0 +1,12 @@ +diff --git a/src/buildtools/config/common.pri b/src/buildtools/config/common.pri +index 97d3953..dd3d222 100644 +--- a/src/buildtools/config/common.pri ++++ b/src/buildtools/config/common.pri +@@ -25,6 +25,7 @@ gn_args += \ + v8_use_external_startup_data=false \ + toolkit_views=false \ + treat_warnings_as_errors=false \ ++ fatal_linker_warnings=false \ + safe_browsing_mode=0 \ + optimize_webui=false \ + forbid_non_component_debug_builds=false diff --git a/dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild b/dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild index ce5929f9ca8..1152cf4edeb 100644 --- a/dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild +++ b/dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild @@ -77,6 +77,10 @@ DEPEND="${RDEPEND} sys-devel/bison " +PATCHES=( + "${FILESDIR}/${P}-disable-fatal-warnings.patch" # bug 695446 +) + src_prepare() { if ! use jumbo-build; then sed -i -e 's|use_jumbo_build=true|use_jumbo_build=false|' \