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 7B52B138351 for ; Sun, 22 Mar 2020 14:41:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97BB7E0A00; Sun, 22 Mar 2020 14:41:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 6880FE0A92 for ; Sun, 22 Mar 2020 14:41:02 +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 AE17D34F557 for ; Sun, 22 Mar 2020 14:41:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1CA19AF for ; Sun, 22 Mar 2020 14:40:59 +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: <1584888047.f2b3edf188a8d02dff24998b5e73e7e17a951f1c.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-detect-ninja-1.10.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: f2b3edf188a8d02dff24998b5e73e7e17a951f1c X-VCS-Branch: master Date: Sun, 22 Mar 2020 14:40: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: 81f1a741-ca53-4866-83e5-80c2dd266233 X-Archives-Hash: 192b29c0144798b85406ef934a4fe549 commit: f2b3edf188a8d02dff24998b5e73e7e17a951f1c Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 22 14:01:16 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 22 14:40:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2b3edf1 dev-qt/qtwebengine: Detect >=dev-util/ninja-1.10 Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Andreas Sturmlechner gentoo.org> .../qtwebengine-5.14.1-detect-ninja-1.10.patch | 27 ++++++++++++++++++++++ dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild | 1 + 2 files changed, 28 insertions(+) diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.14.1-detect-ninja-1.10.patch b/dev-qt/qtwebengine/files/qtwebengine-5.14.1-detect-ninja-1.10.patch new file mode 100644 index 00000000000..8200fb9f906 --- /dev/null +++ b/dev-qt/qtwebengine/files/qtwebengine-5.14.1-detect-ninja-1.10.patch @@ -0,0 +1,27 @@ +From 8c1a4841174a90299ba2e2851b4d9e79da3b9b25 Mon Sep 17 00:00:00 2001 +From: Kirill Burtsev +Date: Fri, 6 Mar 2020 17:38:45 +0100 +Subject: [PATCH] Support build with system ninja >= 1.10.0 + +Fixes: QTBUG-82715 +Change-Id: I9a269efa20d092f75a8a43cb20d1e0dc0f46b9f9 +Reviewed-by: Michal Klocek +--- + configure.pri | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/configure.pri b/configure.pri +index 3a144e3f8e..3cfce71e03 100644 +--- a/configure.pri ++++ b/configure.pri +@@ -163,7 +163,7 @@ defineTest(qtConfTest_detectNinja) { + !isEmpty(ninja) { + qtLog("Found ninja from path: $$ninja") + qtRunLoggedCommand("$$ninja --version", version)|return(false) +- contains(version, "1.[7-9].*"): return(true) ++ contains(version, "1\.([7-9]|1[0-9])\..*"): return(true) + qtLog("Ninja version too old") + } + qtLog("Building own ninja") +-- +2.16.3 diff --git a/dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild b/dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild index 4579f329664..601e198c642 100644 --- a/dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild +++ b/dev-qt/qtwebengine/qtwebengine-5.14.1.ebuild @@ -79,6 +79,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${P}-disable-fatal-warnings.patch" # bug 695446 + "${FILESDIR}/${P}-detect-ninja-1.10.patch" # QTBUG-82715, fixed in Qt 5.14.2 ) src_prepare() {