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 CF44B1382C5 for ; Fri, 27 Nov 2020 21:50:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E2E6E07F1; Fri, 27 Nov 2020 21:50:30 +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 E97C0E07F1 for ; Fri, 27 Nov 2020 21:50:29 +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 7DBFC340A38 for ; Fri, 27 Nov 2020 21:50:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB669468 for ; Fri, 27 Nov 2020 21:50:26 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1606513798.48caab0321a0c86278bd6caf2b995a52673e6f9c.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebengine/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtwebengine/qtwebengine-5.15.2.ebuild X-VCS-Directories: dev-qt/qtwebengine/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 48caab0321a0c86278bd6caf2b995a52673e6f9c X-VCS-Branch: master Date: Fri, 27 Nov 2020 21:50:26 +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: 97eb71d7-de79-4c1f-8c3c-79c3a6ada7f5 X-Archives-Hash: 8cd8d53f15118406364a1eb9cd027576 commit: 48caab0321a0c86278bd6caf2b995a52673e6f9c Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Nov 27 21:49:58 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Nov 27 21:49:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48caab03 dev-qt/qtwebengine: prevent git from running in src_prepare on ppc64 Package-Manager: Portage-3.0.10, Repoman-3.0.2 Signed-off-by: Georgy Yakovlev gentoo.org> dev-qt/qtwebengine/qtwebengine-5.15.2.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.2.ebuild b/dev-qt/qtwebengine/qtwebengine-5.15.2.ebuild index 4dadfbefc9f..ae2669805a1 100644 --- a/dev-qt/qtwebengine/qtwebengine-5.15.2.ebuild +++ b/dev-qt/qtwebengine/qtwebengine-5.15.2.ebuild @@ -131,7 +131,11 @@ src_prepare() { mkdir -vp source/config/linux/ppc64 || die mkdir -p source/libvpx/test || die touch source/libvpx/test/test.mk || die + # generate_gni.sh runs git at the end of process, prevent it. + git() { : ; } + export -f git ./generate_gni.sh || die + unset git popd >/dev/null || die fi }