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 EF0AE158041 for ; Sun, 25 Feb 2024 21:50:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1EBEFE29C8; Sun, 25 Feb 2024 21:50:42 +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 010C7E29C8 for ; Sun, 25 Feb 2024 21:50:41 +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 EF49333BF41 for ; Sun, 25 Feb 2024 21:50:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59ACEB2F for ; Sun, 25 Feb 2024 21:50:39 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1708897222.cf7a72bcac4f7e82fa7da01df0a9b6e20d419cd5.sam@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/kosmindoormap/ X-VCS-Repository: proj/kde X-VCS-Files: dev-libs/kosmindoormap/kosmindoormap-9999.ebuild X-VCS-Directories: dev-libs/kosmindoormap/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cf7a72bcac4f7e82fa7da01df0a9b6e20d419cd5 X-VCS-Branch: master Date: Sun, 25 Feb 2024 21:50:39 +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: 9a252758-e7d5-40ef-93e8-438299b3d0df X-Archives-Hash: df2d4800a10ec4f96d86f90ec8851363 commit: cf7a72bcac4f7e82fa7da01df0a9b6e20d419cd5 Author: Sam James gentoo org> AuthorDate: Sun Feb 25 21:35:46 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 25 21:40:22 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=cf7a72bc dev-libs/kosmindoormap: refresh deps * kopeninghours is now required (upstream commit 640b59c04ef1b1419f6026140c91851dc4fe2edd) * Make GUI optional (upstream commit b65d4879be83085d1771c367dc756274e3e03f3c) * Wire up kservice (upstream commit 6091fb3afd20f1e086ebba7772d165fdd6ceb797 and upstream commit bb4ccc4d5b302bb97a7369fc27ab55a60aee7b13). Signed-off-by: Sam James gentoo.org> dev-libs/kosmindoormap/kosmindoormap-9999.ebuild | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/dev-libs/kosmindoormap/kosmindoormap-9999.ebuild b/dev-libs/kosmindoormap/kosmindoormap-9999.ebuild index 4a45936be6..f8533bb17b 100644 --- a/dev-libs/kosmindoormap/kosmindoormap-9999.ebuild +++ b/dev-libs/kosmindoormap/kosmindoormap-9999.ebuild @@ -15,16 +15,21 @@ HOMEPAGE="https://invent.kde.org/libraries/kosmindoormap" LICENSE="LGPL-2+" SLOT="6" KEYWORDS="" -IUSE="+openinghours" +IUSE="+gui" +# kservice is optional and only used to find and open josm RDEPEND=" - >=dev-libs/kpublictransport-${PVCUT}:6 dev-libs/protobuf:= - >=dev-qt/qtbase-${QTMIN}:6[gui,network] - >=dev-qt/qtdeclarative-${QTMIN}:6 - >=kde-frameworks/ki18n-${KFMIN}:6 + >=dev-qt/qtbase-${QTMIN}:6[gui?,network] sys-libs/zlib - openinghours? ( >=dev-libs/kopeninghours-${PVCUT}:6 ) + gui? ( + >=dev-libs/kopeninghours-${PVCUT}:6 + >=dev-libs/kpublictransport-${PVCUT}:6 + >=dev-qt/qtdeclarative-${QTMIN}:6 + >=kde-frameworks/kcoreaddons-${KFMIN}:6 + >=kde-frameworks/ki18n-${KFMIN}:6 + >=kde-frameworks/kservice-${KFMIN}:6 + ) " DEPEND="${RDEPEND} test? ( >=dev-qt/qtbase-${QTMIN}:6[widgets] ) @@ -36,8 +41,8 @@ BDEPEND=" src_configure() { local mycmakeargs=( + -DBUILD_TOOLS_ONLY=$(usex !gui) -DCMAKE_DISABLE_FIND_PACKAGE_OsmTools=ON # we have no use for it - $(cmake_use_find_package openinghours KOpeningHours) ) ecm_src_configure }