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 7F13A158042 for ; Mon, 21 Oct 2024 19:23:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5A68E09DE; Mon, 21 Oct 2024 19:23:13 +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 9D990E09DE for ; Mon, 21 Oct 2024 19:23:13 +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 D37FC342FA9 for ; Mon, 21 Oct 2024 19:23:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 433E41860 for ; Mon, 21 Oct 2024 19:23:11 +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: <1729538568.7661f2ac52395619f86b9c7aa4a14f66ef808699.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: media-gfx/kgeotag/ X-VCS-Repository: proj/kde X-VCS-Files: media-gfx/kgeotag/kgeotag-9999.ebuild X-VCS-Directories: media-gfx/kgeotag/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7661f2ac52395619f86b9c7aa4a14f66ef808699 X-VCS-Branch: master Date: Mon, 21 Oct 2024 19:23:11 +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: 583f5453-3398-49d2-a4f5-11210d62cf56 X-Archives-Hash: 6e190e2faf84f10d4f356957d01b460c commit: 7661f2ac52395619f86b9c7aa4a14f66ef808699 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Oct 21 19:22:48 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Oct 21 19:22:48 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=7661f2ac media-gfx/kgeotag: Port to KF6 Signed-off-by: Andreas Sturmlechner gentoo.org> media-gfx/kgeotag/kgeotag-9999.ebuild | 37 +++++++++++++++++++++-------------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/media-gfx/kgeotag/kgeotag-9999.ebuild b/media-gfx/kgeotag/kgeotag-9999.ebuild index 2a31f1806c..17c7be8efa 100644 --- a/media-gfx/kgeotag/kgeotag-9999.ebuild +++ b/media-gfx/kgeotag/kgeotag-9999.ebuild @@ -4,8 +4,8 @@ EAPI=8 ECM_HANDBOOK="forceoptional" -KFMIN=5.115.0 -QTMIN=5.15.12 +KFMIN=6.5.0 +QTMIN=6.7.2 inherit ecm kde.org DESCRIPTION="Photo geotagging program" @@ -17,21 +17,28 @@ if [[ ${KDE_BUILD_TYPE} != live ]]; then fi LICENSE="GPL-3+" -SLOT="5" +SLOT="0" DEPEND=" - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtnetwork-${QTMIN}:5 - >=dev-qt/qtwidgets-${QTMIN}:5 - kde-apps/libkexiv2:5 - kde-apps/marble: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/kxmlgui-${KFMIN}:5 + >=dev-qt/qtbase-${QTMIN}:6[gui,network,widgets] + kde-apps/libkexiv2:6 + kde-apps/marble: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/kxmlgui-${KFMIN}:6 +" +RDEPEND="${DEPEND} + !${CATEGORY}/${PN}:5 " -RDEPEND="${DEPEND}" DOCS=( CHANGELOG.rst README.md ) + +src_configure() { + local mycmakeargs=( + -DUSE_QT6=ON + ) + ecm_src_configure +}