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 83BBA158041 for ; Thu, 7 Mar 2024 10:55:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3F91E29C9; Thu, 7 Mar 2024 10:55:49 +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 914F7E29C9 for ; Thu, 7 Mar 2024 10:55:49 +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 9A59833BF39 for ; Thu, 7 Mar 2024 10:55:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7C3510B0 for ; Thu, 7 Mar 2024 10:55:46 +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: <1709807977.a6d5d25b4be3369a8c57003157b8c5b34f1ab434.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kfloppy/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kfloppy/kfloppy-9999.ebuild kde-apps/kfloppy/metadata.xml X-VCS-Directories: kde-apps/kfloppy/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a6d5d25b4be3369a8c57003157b8c5b34f1ab434 X-VCS-Branch: master Date: Thu, 7 Mar 2024 10:55:46 +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: 3f03f5b8-9e61-4ed3-b423-4eafdae4eadd X-Archives-Hash: 4e67ab65e1f1f65792b1ff670108f819 commit: a6d5d25b4be3369a8c57003157b8c5b34f1ab434 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Mar 7 10:30:54 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Mar 7 10:39:37 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a6d5d25b kde-apps/kfloppy: Port to KF6, drop back to kde.org.eclass - It was dropped from KDE Gear upstream - Add kde-invent upstream metadata - Fixing remaining hardcoded KF5 in cmake: https://invent.kde.org/utilities/kfloppy/-/merge_requests/6 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/kfloppy/kfloppy-9999.ebuild | 33 +++++++++++++++++---------------- kde-apps/kfloppy/metadata.xml | 1 + 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/kde-apps/kfloppy/kfloppy-9999.ebuild b/kde-apps/kfloppy/kfloppy-9999.ebuild index 6b94c47633..ffce3668c3 100644 --- a/kde-apps/kfloppy/kfloppy-9999.ebuild +++ b/kde-apps/kfloppy/kfloppy-9999.ebuild @@ -4,29 +4,30 @@ EAPI=8 ECM_HANDBOOK="forceoptional" -KFMIN=5.115.0 -QTMIN=5.15.12 -inherit ecm gear.kde.org +KFMIN=6.0.0 +QTMIN=6.6.2 +inherit ecm kde.org DESCRIPTION="Straightforward graphical means to format 3.5\" and 5.25\" floppy disks" HOMEPAGE="https://apps.kde.org/kfloppy/" LICENSE="GPL-2" # TODO: CHECK -SLOT="5" +SLOT="0" KEYWORDS="" IUSE="" DEPEND=" - >=dev-qt/qtdbus-${QTMIN}:5 - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtwidgets-${QTMIN}:5 - >=kde-frameworks/kcompletion-${KFMIN}:5 - >=kde-frameworks/kconfig-${KFMIN}:5 - >=kde-frameworks/kconfigwidgets-${KFMIN}:5 - >=kde-frameworks/kcoreaddons-${KFMIN}:5 - >=kde-frameworks/kcrash-${KFMIN}:5 - >=kde-frameworks/ki18n-${KFMIN}:5 - >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 - >=kde-frameworks/kxmlgui-${KFMIN}:5 + >=dev-qt/qt5compat-${QTMIN}:6 + >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,widgets] + >=kde-frameworks/kcompletion-${KFMIN}:6 + >=kde-frameworks/kconfig-${KFMIN}:6 + >=kde-frameworks/kconfigwidgets-${KFMIN}:6 + >=kde-frameworks/kcoreaddons-${KFMIN}:6 + >=kde-frameworks/kcrash-${KFMIN}:6 + >=kde-frameworks/ki18n-${KFMIN}:6 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:6 + >=kde-frameworks/kxmlgui-${KFMIN}:6 +" +RDEPEND="${DEPEND} + !${CATEGORY}/${PN}:5 " -RDEPEND="${DEPEND}" diff --git a/kde-apps/kfloppy/metadata.xml b/kde-apps/kfloppy/metadata.xml index d925f24397..febef5a49b 100644 --- a/kde-apps/kfloppy/metadata.xml +++ b/kde-apps/kfloppy/metadata.xml @@ -7,5 +7,6 @@ https://bugs.kde.org/ + utilities/kfloppy