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 713CE158091 for ; Fri, 10 Jun 2022 07:49:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64445E076B; Fri, 10 Jun 2022 07:49:07 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48A89E076B for ; Fri, 10 Jun 2022 07:49:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 314C13415E1 for ; Fri, 10 Jun 2022 07:49:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8714ED3 for ; Fri, 10 Jun 2022 07:49:04 +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: <1654847322.71807899662f46b12f91b7c5d53ab7df499aebbe.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.3_p20220406.ebuild dev-qt/qtwebengine/qtwebengine-5.15.4_p20220505.ebuild dev-qt/qtwebengine/qtwebengine-5.15.4_p20220526.ebuild X-VCS-Directories: dev-qt/qtwebengine/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 71807899662f46b12f91b7c5d53ab7df499aebbe X-VCS-Branch: master Date: Fri, 10 Jun 2022 07:49:04 +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: 228e2bf4-729c-4e8d-a9b8-311fab3e66a2 X-Archives-Hash: be30cd0febfa9d63b3096bdba5eb49e7 commit: 71807899662f46b12f91b7c5d53ab7df499aebbe Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Jun 10 07:45:53 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Jun 10 07:48:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71807899 dev-qt/qtwebengine: don't use clang-format on ppc64 Closes: https://bugs.gentoo.org/849458 Signed-off-by: Georgy Yakovlev gentoo.org> dev-qt/qtwebengine/qtwebengine-5.15.3_p20220406.ebuild | 5 +++++ dev-qt/qtwebengine/qtwebengine-5.15.4_p20220505.ebuild | 5 +++++ dev-qt/qtwebengine/qtwebengine-5.15.4_p20220526.ebuild | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.3_p20220406.ebuild b/dev-qt/qtwebengine/qtwebengine-5.15.3_p20220406.ebuild index db0d242c1aa1..a0c5b039fdfa 100644 --- a/dev-qt/qtwebengine/qtwebengine-5.15.3_p20220406.ebuild +++ b/dev-qt/qtwebengine/qtwebengine-5.15.3_p20220406.ebuild @@ -227,6 +227,11 @@ src_prepare() { mkdir -vp source/config/linux/ppc64 || die mkdir -p source/libvpx/test || die touch source/libvpx/test/test.mk || die + # clang-format is used to re-format sources + # but we'd rather make it a no-op than introduce a clang dependency + # https://bugs.gentoo.org/849458 + clang-format() { : ; } + export -f clang-format || die ./generate_gni.sh || die popd >/dev/null || die fi diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.4_p20220505.ebuild b/dev-qt/qtwebengine/qtwebengine-5.15.4_p20220505.ebuild index c213bc2c4a1b..9c2a93d1c3b2 100644 --- a/dev-qt/qtwebengine/qtwebengine-5.15.4_p20220505.ebuild +++ b/dev-qt/qtwebengine/qtwebengine-5.15.4_p20220505.ebuild @@ -227,6 +227,11 @@ src_prepare() { mkdir -vp source/config/linux/ppc64 || die mkdir -p source/libvpx/test || die touch source/libvpx/test/test.mk || die + # clang-format is used to re-format sources + # but we'd rather make it a no-op than introduce a clang dependency + # https://bugs.gentoo.org/849458 + clang-format() { : ; } + export -f clang-format || die ./generate_gni.sh || die popd >/dev/null || die fi diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.4_p20220526.ebuild b/dev-qt/qtwebengine/qtwebengine-5.15.4_p20220526.ebuild index f9d91b68a322..6c1f60c130b3 100644 --- a/dev-qt/qtwebengine/qtwebengine-5.15.4_p20220526.ebuild +++ b/dev-qt/qtwebengine/qtwebengine-5.15.4_p20220526.ebuild @@ -227,6 +227,11 @@ src_prepare() { mkdir -vp source/config/linux/ppc64 || die mkdir -p source/libvpx/test || die touch source/libvpx/test/test.mk || die + # clang-format is used to re-format sources + # but we'd rather make it a no-op than introduce a clang dependency + # https://bugs.gentoo.org/849458 + clang-format() { : ; } + export -f clang-format || die ./generate_gni.sh || die popd >/dev/null || die fi