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 117641382C5 for ; Fri, 12 Feb 2021 20:45:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48314E0822; Fri, 12 Feb 2021 20:45:16 +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 2DE62E0822 for ; Fri, 12 Feb 2021 20:45:16 +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 956A5335D8F for ; Fri, 12 Feb 2021 20:45:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE17D495 for ; Fri, 12 Feb 2021 20:45:12 +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: <1613162148.907a0ff98c5de2f0c717c40f66e2d9d1f1f39b46.asturm@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qtwebengine/ X-VCS-Repository: proj/qt X-VCS-Files: dev-qt/qtwebengine/qtwebengine-5.15.9999.ebuild X-VCS-Directories: dev-qt/qtwebengine/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 907a0ff98c5de2f0c717c40f66e2d9d1f1f39b46 X-VCS-Branch: master Date: Fri, 12 Feb 2021 20:45:12 +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: 14e1bc20-da6b-48ea-b174-f3214a85c0cb X-Archives-Hash: bcf948beeb7b46d0fe06992b9d3c4900 commit: 907a0ff98c5de2f0c717c40f66e2d9d1f1f39b46 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Feb 12 20:34:42 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Feb 12 20:35:48 2021 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=907a0ff9 dev-qt/qtwebengine: Fix MODULE_VERSION downpatching sed Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtwebengine/qtwebengine-5.15.9999.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.9999.ebuild b/dev-qt/qtwebengine/qtwebengine-5.15.9999.ebuild index 0f61b7f9..3a1e6def 100644 --- a/dev-qt/qtwebengine/qtwebengine-5.15.9999.ebuild +++ b/dev-qt/qtwebengine/qtwebengine-5.15.9999.ebuild @@ -96,9 +96,10 @@ src_prepare() { # We need to make sure this integrates well into Qt 5.15.2 installation. # Otherwise revdeps fail w/o heavy changes. This is the simplest way to do it. - sed -e "/^MODULE_VERSION/s/5.*/${QTMIN}/" -i .qmake.conf || die + sed -e "/^MODULE_VERSION/s/5.*/${QTVER}/" -i .qmake.conf || die fi + # QTBUG-88657 - jumbo-build is broken if ! use jumbo-build; then sed -i -e 's|use_jumbo_build=true|use_jumbo_build=false|' \ src/buildtools/config/common.pri || die