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 E04241581FB for ; Wed, 28 Aug 2024 18:48:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32444E2A04; Wed, 28 Aug 2024 18:48:49 +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 142A1E2A04 for ; Wed, 28 Aug 2024 18:48:49 +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 1DE88341214 for ; Wed, 28 Aug 2024 18:48:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 610FF11CF for ; Wed, 28 Aug 2024 18:48:46 +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: <1724870916.0851e4465cebef93148daf64e9ae3823b1de0850.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kalarm/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/kalarm/kalarm-24.05.2.ebuild kde-apps/kalarm/kalarm-24.08.0.ebuild X-VCS-Directories: kde-apps/kalarm/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0851e4465cebef93148daf64e9ae3823b1de0850 X-VCS-Branch: master Date: Wed, 28 Aug 2024 18:48:46 +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: 62985782-cf09-4bec-b0c0-35a499539493 X-Archives-Hash: 2fb9d2c2270780603c9612cfa130bb3a commit: 0851e4465cebef93148daf64e9ae3823b1de0850 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Aug 28 18:42:45 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 28 18:48:36 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0851e446 kde-apps/kalarm: Workaround implicit CMake dependency chain issue - USE=-speech sets -DCMAKE_DISABLE_FIND_PACKAGE_KF6TextEditTextToSpeech=ON - kde-apps/kidentitymanagement depends on kde-apps/kpimtextedit - If kde-apps/kpimtextedit was built with USE=speech, its cmake config file depends on KF6TextEditTextToSpeech which then fails to be found when disabled by the kde-apps/kalarm[-speech] cmake arg. Bug: https://bugs.gentoo.org/934478 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/kalarm/kalarm-24.05.2.ebuild | 1 + kde-apps/kalarm/kalarm-24.08.0.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/kde-apps/kalarm/kalarm-24.05.2.ebuild b/kde-apps/kalarm/kalarm-24.05.2.ebuild index bb57bf884c71..3a10f6b6ef49 100644 --- a/kde-apps/kalarm/kalarm-24.05.2.ebuild +++ b/kde-apps/kalarm/kalarm-24.05.2.ebuild @@ -62,6 +62,7 @@ RDEPEND="${COMMON_DEPEND} pim? ( >=kde-apps/kdepim-runtime-${PVCUT}:6 ) " DEPEND="${COMMON_DEPEND} + speech? ( kde-apps/kpimtextedit[speech] ) X? ( x11-base/xorg-proto ) " diff --git a/kde-apps/kalarm/kalarm-24.08.0.ebuild b/kde-apps/kalarm/kalarm-24.08.0.ebuild index 67f90bb19c74..89871c3e5c28 100644 --- a/kde-apps/kalarm/kalarm-24.08.0.ebuild +++ b/kde-apps/kalarm/kalarm-24.08.0.ebuild @@ -63,6 +63,7 @@ RDEPEND="${COMMON_DEPEND} pim? ( >=kde-apps/kdepim-runtime-${PVCUT}:6 ) " DEPEND="${COMMON_DEPEND} + speech? ( kde-apps/kpimtextedit[speech] ) X? ( x11-base/xorg-proto ) "