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 CE79515852A for ; Wed, 21 Aug 2024 21:51:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8E7AE2A63; Wed, 21 Aug 2024 21:51:18 +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 C34D8E2A42 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 BBF63340C37 for ; Wed, 21 Aug 2024 21:51:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C978F42 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.f24144665fcdbe753f91e30b9d356919cd9de3f3.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/kio-zeroconf/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/kio-zeroconf/kio-zeroconf-24.05.2-r1.ebuild X-VCS-Directories: net-misc/kio-zeroconf/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f24144665fcdbe753f91e30b9d356919cd9de3f3 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: 39830ff6-616d-4c2f-8150-75fd03cabbe1 X-Archives-Hash: 6c288593ce58e076b3d03d060244a475 commit: f24144665fcdbe753f91e30b9d356919cd9de3f3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 20 15:34:39 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=f2414466 net-misc/kio-zeroconf: RDEPEND on net-misc/kio-zeroconf-common Signed-off-by: Andreas Sturmlechner gentoo.org> .../kio-zeroconf/kio-zeroconf-24.05.2-r1.ebuild | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/net-misc/kio-zeroconf/kio-zeroconf-24.05.2-r1.ebuild b/net-misc/kio-zeroconf/kio-zeroconf-24.05.2-r1.ebuild new file mode 100644 index 000000000000..d3debd68feae --- /dev/null +++ b/net-misc/kio-zeroconf/kio-zeroconf-24.05.2-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KFMIN=6.3.0 +QTMIN=6.6.2 +inherit ecm gear.kde.org + +DESCRIPTION="KIO worker to discover file systems by DNS-SD (DNS Service Discovery)" + +LICENSE="GPL-2+" +SLOT="6" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="" + +DEPEND=" + >=dev-qt/qtbase-${QTMIN}:6[dbus] + >=kde-frameworks/kcoreaddons-${KFMIN}:6 + >=kde-frameworks/kdbusaddons-${KFMIN}:6 + >=kde-frameworks/kdnssd-${KFMIN}:6 + >=kde-frameworks/ki18n-${KFMIN}:6 + >=kde-frameworks/kio-${KFMIN}:6 +" +RDEPEND="${DEPEND} + >=net-misc/${PN}-common-${PV} +" + +# Shipped by net-misc/kio-zeroconf-common package for shared use w/ SLOT 5 +ECM_REMOVE_FROM_INSTALL=( + /usr/share/dbus-1/interfaces/org.kde.kdnssd.xml +) + +src_prepare() { + ecm_src_prepare + ecm_punt_po_install +}