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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4762915813A for ; Fri, 10 Jan 2025 21:08:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D0AFE0802; Fri, 10 Jan 2025 21:08:34 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 58AA1E07FA for ; Fri, 10 Jan 2025 21:08:34 +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 6DB84342FDB for ; Fri, 10 Jan 2025 21:08:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07CB6AED for ; Fri, 10 Jan 2025 21:08:32 +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: <1736543293.c0bcd73670383b192e589c2a3fa464e122f5bb50.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/kuroo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/kuroo/kuroo-9999.ebuild X-VCS-Directories: app-portage/kuroo/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c0bcd73670383b192e589c2a3fa464e122f5bb50 X-VCS-Branch: master Date: Fri, 10 Jan 2025 21:08:32 +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: 013006ff-7b00-40ae-b31e-931327bdfea5 X-Archives-Hash: 727d34d506d6055c084bb45326056e1d commit: c0bcd73670383b192e589c2a3fa464e122f5bb50 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Jan 10 17:25:41 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jan 10 21:08:13 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0bcd736 app-portage/kuroo: Update deps, add optfeature, set ECM_TEST=true Fix BDEPEND typo. Thanks-to: Andrew Schenck users.sourceforge.net> Closes: https://bugs.gentoo.org/947748 Signed-off-by: Andreas Sturmlechner gentoo.org> app-portage/kuroo/kuroo-9999.ebuild | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/app-portage/kuroo/kuroo-9999.ebuild b/app-portage/kuroo/kuroo-9999.ebuild index 2e6c55447465..6e7198c1e81c 100644 --- a/app-portage/kuroo/kuroo-9999.ebuild +++ b/app-portage/kuroo/kuroo-9999.ebuild @@ -1,19 +1,26 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +ECM_TEST="true" KFMIN=6.6.0 QTMIN=6.7.2 -ESVN_REPO_URI="https://svn.code.sf.net/p/kuroo/code/kuroo4/trunk" -inherit ecm subversion +inherit ecm optfeature + +if [[ ${PV} == *9999* ]] ; then + ESVN_REPO_URI="https://svn.code.sf.net/p/kuroo/code/kuroo4/trunk" + inherit subversion +else + SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi DESCRIPTION="Graphical Portage frontend based on KDE Frameworks" HOMEPAGE="https://sourceforge.net/projects/kuroo/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="" IUSE="" DEPEND=" @@ -28,7 +35,6 @@ DEPEND=" >=kde-frameworks/ki18n-${KFMIN}:6 >=kde-frameworks/kio-${KFMIN}:6 >=kde-frameworks/kitemviews-${KFMIN}:6 - >=kde-frameworks/knotifications-${KFMIN}:6 >=kde-frameworks/kstatusnotifieritem-${KFMIN}:6 >=kde-frameworks/ktextwidgets-${KFMIN}:6 >=kde-frameworks/kwidgetsaddons-${KFMIN}:6 @@ -37,15 +43,15 @@ DEPEND=" " RDEPEND="${DEPEND} app-portage/gentoolkit - kde-misc/kdiff3 " -BEDEPEND=">=dev-build/cmake-3.30.2" +BDEPEND=">=dev-build/cmake-3.30.2" pkg_postinst() { if ! has_version app-admin/logrotate ; then elog "Installing app-admin/logrotate is recommended to keep" elog "portage's summary.log size reasonable to view in the history page." fi + optfeature "graphical configuration merging (when run as root)" "kde-misc/kdiff3" ecm_pkg_postinst }