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 EFEFD158041 for ; Fri, 15 Mar 2024 14:30:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 194F4E29E9; Fri, 15 Mar 2024 14:30:25 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E6040E29E9 for ; Fri, 15 Mar 2024 14:30:24 +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 89A74335DC8 for ; Fri, 15 Mar 2024 14:30:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E40CF7E7 for ; Fri, 15 Mar 2024 14:30:21 +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: <1710513000.b78cd89d33757c65ad7b736160c36630d15afa9d.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/akonadi-search/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/akonadi-search/akonadi-search-24.02.49.9999.ebuild kde-apps/akonadi-search/akonadi-search-9999.ebuild X-VCS-Directories: kde-apps/akonadi-search/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b78cd89d33757c65ad7b736160c36630d15afa9d X-VCS-Branch: master Date: Fri, 15 Mar 2024 14:30:21 +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: 65170469-22e7-4ae7-8733-ec3aa8c36c4b X-Archives-Hash: 2981cbaaece66653bb1e677d9ada2aa8 commit: b78cd89d33757c65ad7b736160c36630d15afa9d Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Mar 15 14:29:39 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Mar 15 14:30:00 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=b78cd89d kde-apps/akonadi-search: Corrosion prevention Bug: https://bugs.gentoo.org/927072 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/akonadi-search/akonadi-search-24.02.49.9999.ebuild | 6 ++++++ kde-apps/akonadi-search/akonadi-search-9999.ebuild | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/kde-apps/akonadi-search/akonadi-search-24.02.49.9999.ebuild b/kde-apps/akonadi-search/akonadi-search-24.02.49.9999.ebuild index 99349cd049..c747b6b3f5 100644 --- a/kde-apps/akonadi-search/akonadi-search-24.02.49.9999.ebuild +++ b/kde-apps/akonadi-search/akonadi-search-24.02.49.9999.ebuild @@ -46,3 +46,9 @@ DEPEND="${RDEPEND} BDEPEND=" test? ( >=kde-apps/akonadi-${PVCUT}:6[tools] ) " + +src_configure() { + # not packaged (bug 911819), but if present leads to rust shenanigans (bug 927072) + local mycmakeargs=( -DCMAKE_DISABLE_FIND_PACKAGE_Corrosion=ON ) + ecm_src_configure +} diff --git a/kde-apps/akonadi-search/akonadi-search-9999.ebuild b/kde-apps/akonadi-search/akonadi-search-9999.ebuild index f06e45d4fa..a0e0629249 100644 --- a/kde-apps/akonadi-search/akonadi-search-9999.ebuild +++ b/kde-apps/akonadi-search/akonadi-search-9999.ebuild @@ -46,3 +46,9 @@ DEPEND="${RDEPEND} BDEPEND=" test? ( >=kde-apps/akonadi-${PVCUT}:6[tools] ) " + +src_configure() { + # not packaged (bug 911819), but if present leads to rust shenanigans (bug 927072) + local mycmakeargs=( -DCMAKE_DISABLE_FIND_PACKAGE_Corrosion=ON ) + ecm_src_configure +}