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 A619915852A for ; Wed, 21 Aug 2024 21:51:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F4190E2A60; Wed, 21 Aug 2024 21:51:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 DA1E0E2A60 for ; Wed, 21 Aug 2024 21:51:18 +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 16199340CB1 for ; Wed, 21 Aug 2024 21:51:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7750F1F01 for ; Wed, 21 Aug 2024 21:51:16 +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: <1724274876.ac91da4aa585cddc54332b4d3d9913c15e7411db.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/libkcddb/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/libkcddb/libkcddb-23.08.5-r1.ebuild X-VCS-Directories: kde-apps/libkcddb/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ac91da4aa585cddc54332b4d3d9913c15e7411db X-VCS-Branch: master Date: Wed, 21 Aug 2024 21:51:16 +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: 19feafea-d822-4d87-8c4f-9e633762a0d1 X-Archives-Hash: e60a2eb9da49588f6b323d0a0520dd21 commit: ac91da4aa585cddc54332b4d3d9913c15e7411db Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 20 15:34:42 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 21 21:14:36 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac91da4a kde-apps/libkcddb: SLOT 5 shall RDEPEND on *-common too Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/libkcddb/libkcddb-23.08.5-r1.ebuild | 57 ++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/kde-apps/libkcddb/libkcddb-23.08.5-r1.ebuild b/kde-apps/libkcddb/libkcddb-23.08.5-r1.ebuild new file mode 100644 index 000000000000..d1d02a33c320 --- /dev/null +++ b/kde-apps/libkcddb/libkcddb-23.08.5-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_HANDBOOK="forceoff" +ECM_TEST="true" +KFMIN=5.106.0 +QTMIN=5.15.9 +inherit ecm gear.kde.org + +DESCRIPTION="KDE library for CDDB" + +LICENSE="GPL-2+" +SLOT="5" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" +IUSE="musicbrainz" + +# tests require network access and compare static data with online data +# bug 280996 +RESTRICT="test" + +DEPEND=" + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/kconfigwidgets-${KFMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 + musicbrainz? ( media-libs/musicbrainz:5 ) +" +RDEPEND="${DEPEND} + >=kde-apps/libkcddb-common-${PV} +" +BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:5" + +# Shipped by kde-apps/libkcddb-common package for shared use w/ SLOT 5 +ECM_REMOVE_FROM_INSTALL=( + /usr/share/applications/kcm_cddb.desktop + /usr/share/config.kcfg/libkcddb5.kcfg +) + +src_prepare() { + ecm_src_prepare + ecm_punt_po_install + cmake_run_in kcmcddb cmake_comment_add_subdirectory doc +} + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package musicbrainz MusicBrainz5) + ) + ecm_src_configure +}