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 C2B6915852A for ; Thu, 15 Aug 2024 17:48:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E99D3E29BE; Thu, 15 Aug 2024 17:48:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CE161E29BB for ; Thu, 15 Aug 2024 17:48:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 08FEC343021 for ; Thu, 15 Aug 2024 17:48:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DE3C1EF3 for ; Thu, 15 Aug 2024 17:48:07 +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: <1723744009.43ecd506f0393ce2cc5e2bb0c19961923ee35a6f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/cmake.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 43ecd506f0393ce2cc5e2bb0c19961923ee35a6f X-VCS-Branch: master Date: Thu, 15 Aug 2024 17:48:07 +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: d44febd7-3b3a-4d1d-bcf4-a292cac5e860 X-Archives-Hash: ea2a25efdeb74375c483679fdff910a7 commit: 43ecd506f0393ce2cc5e2bb0c19961923ee35a6f Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 13 20:06:40 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Aug 15 17:46:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43ecd506 cmake.eclass: If inherited from ecm.eclass, set ECM_DISABLE_APPSTREAMTEST Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/cmake.eclass | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index c98608d7b5bb..8d60116f7a93 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -547,7 +547,10 @@ cmake_src_configure() { _EOF_ if [[ -n ${_ECM_ECLASS} ]]; then - echo 'set(ECM_DISABLE_QMLPLUGINDUMP ON CACHE BOOL "")' >> "${common_config}" || die + cat >> ${common_config} <<- _EOF_ || die + set(ECM_DISABLE_QMLPLUGINDUMP ON CACHE BOOL "") + set(ECM_DISABLE_APPSTREAMTEST ON CACHE BOOL "") + _EOF_ fi # See bug 689410