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 80F37158534 for ; Wed, 21 Aug 2024 21:51:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82DBB2BC01C; Wed, 21 Aug 2024 21:51:20 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 332C62BC01C for ; Wed, 21 Aug 2024 21:51:20 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 78F9C340CA7 for ; Wed, 21 Aug 2024 21:51:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1C2E1F05 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: <1724274877.0884e8f9b6c9d7c4f8c70016c52380fbca1b3151.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-23.08.5-r1.ebuild X-VCS-Directories: net-misc/kio-zeroconf/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0884e8f9b6c9d7c4f8c70016c52380fbca1b3151 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: 42291bfc-c471-49e7-ac2f-c340ff52f8a8 X-Archives-Hash: 8ac3e76559dbc086ed638161b5abcd7d commit: 0884e8f9b6c9d7c4f8c70016c52380fbca1b3151 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 20 15:34:45 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 21 21:14:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0884e8f9 net-misc/kio-zeroconf: SLOT 5 shall RDEPEND on *-common too Signed-off-by: Andreas Sturmlechner gentoo.org> .../kio-zeroconf/kio-zeroconf-23.08.5-r1.ebuild | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/net-misc/kio-zeroconf/kio-zeroconf-23.08.5-r1.ebuild b/net-misc/kio-zeroconf/kio-zeroconf-23.08.5-r1.ebuild new file mode 100644 index 000000000000..112ea166d0e6 --- /dev/null +++ b/net-misc/kio-zeroconf/kio-zeroconf-23.08.5-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=5.106.0 +QTMIN=5.15.9 +inherit ecm gear.kde.org + +DESCRIPTION="KIO worker to discover file systems by DNS-SD (DNS Service Discovery)" + +LICENSE="GPL-2+" +SLOT="5" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="" + +DEPEND=" + >=dev-qt/qtdbus-${QTMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/kdbusaddons-${KFMIN}:5 + >=kde-frameworks/kdnssd-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 +" +RDEPEND="${DEPEND} + ${CATEGORY}/${PN}-common +" + +# 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 +}