public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/
@ 2023-12-14 21:24 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2023-12-14 21:24 UTC (permalink / raw
  To: gentoo-commits

commit:     ef1ac28591e18c9620612e0833d85db29549695c
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 12 23:25:19 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Dec 12 23:31:15 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=ef1ac285

kde-apps/kio-extras-kf5: New package for KF5-based KDE apps compat

Dependency changes by upstream commits:
1a98236939072fd3143262e74c528baf0e521d67
f220e0ebf670e64f3e7dc4d8a75c3b5dd00bfe2c
1571e95afd0c8e38de5c45e0121d5d9a36d30957

See also:
https://community.kde.org/KDE_Gear/24.02_Release_notes#Tarballs_which_are_needed_as_Qt_5_and_Qt_6_Builds

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild | 96 ++++++++++++++++++++++
 kde-apps/kio-extras-kf5/metadata.xml               | 23 ++++++
 2 files changed, 119 insertions(+)

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
new file mode 100644
index 0000000000..3001cce90e
--- /dev/null
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_HANDBOOK="forceoptional"
+ECM_TEST="optional"
+KDE_ORG_NAME="kio-extras"
+KFMIN=5.106.0
+QTMIN=5.15.9
+inherit ecm gear.kde.org
+
+DESCRIPTION="KIO plugins present a filesystem-like view of arbitrary data"
+HOMEPAGE="https://invent.kde.org/network/kio-extras"
+EGIT_BRANCH="kf5"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="5"
+KEYWORDS=""
+IUSE="ios kf6compat +man mtp nfs openexr phonon samba +sftp taglib X"
+
+# requires running Plasma environment
+RESTRICT="test"
+
+DEPEND="
+	>=dev-qt/qtdbus-${QTMIN}:5
+	>=dev-qt/qtgui-${QTMIN}:5
+	>=dev-qt/qtnetwork-${QTMIN}:5
+	>=dev-qt/qtsql-${QTMIN}:5
+	>=dev-qt/qtsvg-${QTMIN}:5
+	>=dev-qt/qtwidgets-${QTMIN}:5
+	>=dev-qt/qtxml-${QTMIN}:5
+	kde-apps/libkexiv2:5
+	>=kde-frameworks/karchive-${KFMIN}:5
+	>=kde-frameworks/kcodecs-${KFMIN}:5
+	>=kde-frameworks/kconfig-${KFMIN}:5
+	>=kde-frameworks/kconfigwidgets-${KFMIN}:5
+	>=kde-frameworks/kcoreaddons-${KFMIN}:5
+	>=kde-frameworks/kdbusaddons-${KFMIN}:5
+	>=kde-frameworks/kdnssd-${KFMIN}:5
+	>=kde-frameworks/kguiaddons-${KFMIN}:5
+	>=kde-frameworks/ki18n-${KFMIN}:5
+	>=kde-frameworks/kio-${KFMIN}:5
+	>=kde-frameworks/kparts-${KFMIN}:5
+	>=kde-frameworks/kservice-${KFMIN}:5
+	>=kde-frameworks/kxmlgui-${KFMIN}:5
+	>=kde-frameworks/solid-${KFMIN}:5
+	>=kde-frameworks/syntax-highlighting-${KFMIN}:5
+	>=kde-plasma/plasma-activities-${KFMIN}:5
+	>=kde-plasma/plasma-activities-stats-${KFMIN}:5
+	ios? (
+		app-pda/libimobiledevice:=
+		app-pda/libplist:=
+	)
+	mtp? ( >=media-libs/libmtp-1.1.16:= )
+	nfs? ( net-libs/libtirpc:= )
+	openexr? ( media-libs/openexr:= )
+	phonon? ( >=media-libs/phonon-4.11.0[qt5(+)] )
+	samba? ( net-fs/samba[client] )
+	sftp? ( net-libs/libssh:=[sftp] )
+	taglib? ( >=media-libs/taglib-1.11.1 )
+	X? (
+		x11-libs/libX11
+		x11-libs/libXcursor
+	)
+"
+RDEPEND="${DEPEND}
+	!kde-apps/kio-extras:5
+	>=kde-frameworks/kded-${KFMIN}:5
+	kf6compat? ( kde-apps/kio-extras:6 )
+"
+BDEPEND="man? ( dev-util/gperf )"
+
+src_configure() {
+	local mycmakeargs=(
+		$(cmake_use_find_package ios IMobileDevice)
+		$(cmake_use_find_package ios PList)
+		$(cmake_use_find_package man Gperf)
+		$(cmake_use_find_package mtp Libmtp)
+		$(cmake_use_find_package nfs TIRPC)
+		-DKF6_COMPAT_BUILD=$(usex kf6compat)
+		$(cmake_use_find_package openexr OpenEXR)
+		$(cmake_use_find_package phonon Phonon4Qt5)
+		$(cmake_use_find_package samba Samba)
+		$(cmake_use_find_package sftp libssh)
+		$(cmake_use_find_package taglib Taglib)
+		-DWITHOUT_X11=$(usex !X)
+	)
+
+	use samba && mycmakeargs+=(
+		# do not attempt to find now Qt6-based system version
+		-DCMAKE_DISABLE_FIND_PACKAGE_KDSoapWSDiscoveryClient=ON
+	)
+
+	ecm_src_configure
+}

diff --git a/kde-apps/kio-extras-kf5/metadata.xml b/kde-apps/kio-extras-kf5/metadata.xml
new file mode 100644
index 0000000000..72853d9bad
--- /dev/null
+++ b/kde-apps/kio-extras-kf5/metadata.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>kde@gentoo.org</email>
+		<name>Gentoo KDE Project</name>
+	</maintainer>
+	<upstream>
+		<bugs-to>https://bugs.kde.org/</bugs-to>
+		<remote-id type="cpe">cpe:/a:kde:kio-extras</remote-id>
+		<remote-id type="kde-invent">network/kio-extras</remote-id>
+	</upstream>
+	<use>
+		<flag name="ios">Enable AFC (Apple File Conduit) KIO worker for iOS devices support</flag>
+		<flag name="kf6compat">Disable components colliding with KF6, depend on KF6 components instead</flag>
+		<flag name="man">Enable manpages KIO worker</flag>
+		<flag name="nfs">Enable NFS support using <pkg>net-libs/libtirpc</pkg></flag>
+		<flag name="phonon">Enable file audio preview plugin using <pkg>media-libs/phonon</pkg></flag>
+		<flag name="sftp">Enable SFTP protocol support using <pkg>net-libs/libssh</pkg></flag>
+		<flag name="taglib">Enable audio thumbnails via <pkg>media-libs/taglib</pkg></flag>
+		<flag name="X">Enable support for XCursor thumbnails via <pkg>x11-libs/libX11</pkg></flag>
+	</use>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/
@ 2023-12-22  8:47 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2023-12-22  8:47 UTC (permalink / raw
  To: gentoo-commits

commit:     07f4dbc2f934b6fb57e2dadd41ee88d180f96343
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 22 08:43:58 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Dec 22 08:47:07 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=07f4dbc2

kde-apps/kio-extras-kf5: Set missing KDE_ORG_TAR_PN=kio-extras-kf5

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
index 3001cce90e..a53a1131d0 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
@@ -6,6 +6,7 @@ EAPI=8
 ECM_HANDBOOK="forceoptional"
 ECM_TEST="optional"
 KDE_ORG_NAME="kio-extras"
+KDE_ORG_TAR_PN="kio-extras-kf5"
 KFMIN=5.106.0
 QTMIN=5.15.9
 inherit ecm gear.kde.org


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/
@ 2023-12-22 19:16 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2023-12-22 19:16 UTC (permalink / raw
  To: gentoo-commits

commit:     1a80d6047474da8ec6dc6b337635d4de39b54d82
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 22 18:53:56 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Dec 22 19:15:48 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=1a80d604

kde-apps/kio-extras-kf5: update HOMEPAGE

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
index a53a1131d0..a789626c14 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
@@ -12,7 +12,7 @@ QTMIN=5.15.9
 inherit ecm gear.kde.org
 
 DESCRIPTION="KIO plugins present a filesystem-like view of arbitrary data"
-HOMEPAGE="https://invent.kde.org/network/kio-extras"
+HOMEPAGE="https://invent.kde.org/network/kio-extras/-/tree/kf5"
 EGIT_BRANCH="kf5"
 
 LICENSE="GPL-2" # TODO: CHECK


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/
@ 2023-12-23 16:00 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2023-12-23 16:00 UTC (permalink / raw
  To: gentoo-commits

commit:     53083eff3f8181ed721754c8b808b7cdf89218db
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 22 19:20:29 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 15:59:00 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=53083eff

kde-apps/kio-extras-kf5: Relax slot 5 blocker to <23.08.5-r100:5

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
index a789626c14..4faf062cf4 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
@@ -66,7 +66,7 @@ DEPEND="
 	)
 "
 RDEPEND="${DEPEND}
-	!kde-apps/kio-extras:5
+	!<kde-apps/kio-extras-23.08.5-r100:5
 	>=kde-frameworks/kded-${KFMIN}:5
 	kf6compat? ( kde-apps/kio-extras:6 )
 "


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/
@ 2023-12-23 16:08 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2023-12-23 16:08 UTC (permalink / raw
  To: gentoo-commits

commit:     bd0117b0fb0ffa61adb0ddf319a7b47a4e138a75
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 22 17:59:28 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 16:08:28 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=bd0117b0

kde-apps/kio-extras-kf5: Re-add IUSE activities

Upstream commit d6db8756c906db73b22faf83a3bb5d2884342ba8

Bug: https://bugs.gentoo.org/917101
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild | 11 +++++++----
 kde-apps/kio-extras-kf5/metadata.xml               |  1 +
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
index 4faf062cf4..32e344f2f8 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
@@ -18,7 +18,7 @@ EGIT_BRANCH="kf5"
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
 KEYWORDS=""
-IUSE="ios kf6compat +man mtp nfs openexr phonon samba +sftp taglib X"
+IUSE="activities ios kf6compat +man mtp nfs openexr phonon samba +sftp taglib X"
 
 # requires running Plasma environment
 RESTRICT="test"
@@ -27,7 +27,6 @@ DEPEND="
 	>=dev-qt/qtdbus-${QTMIN}:5
 	>=dev-qt/qtgui-${QTMIN}:5
 	>=dev-qt/qtnetwork-${QTMIN}:5
-	>=dev-qt/qtsql-${QTMIN}:5
 	>=dev-qt/qtsvg-${QTMIN}:5
 	>=dev-qt/qtwidgets-${QTMIN}:5
 	>=dev-qt/qtxml-${QTMIN}:5
@@ -47,8 +46,11 @@ DEPEND="
 	>=kde-frameworks/kxmlgui-${KFMIN}:5
 	>=kde-frameworks/solid-${KFMIN}:5
 	>=kde-frameworks/syntax-highlighting-${KFMIN}:5
-	>=kde-plasma/plasma-activities-${KFMIN}:5
-	>=kde-plasma/plasma-activities-stats-${KFMIN}:5
+	activities? (
+		>=dev-qt/qtbase-${QTMIN}:6[sql]
+		kde-plasma/plasma-activities:6
+		kde-plasma/plasma-activities-stats:6
+	)
 	ios? (
 		app-pda/libimobiledevice:=
 		app-pda/libplist:=
@@ -74,6 +76,7 @@ BDEPEND="man? ( dev-util/gperf )"
 
 src_configure() {
 	local mycmakeargs=(
+		-DBUILD_ACTIVITIES=$(usex activities)
 		$(cmake_use_find_package ios IMobileDevice)
 		$(cmake_use_find_package ios PList)
 		$(cmake_use_find_package man Gperf)

diff --git a/kde-apps/kio-extras-kf5/metadata.xml b/kde-apps/kio-extras-kf5/metadata.xml
index 72853d9bad..f55e3c5c8b 100644
--- a/kde-apps/kio-extras-kf5/metadata.xml
+++ b/kde-apps/kio-extras-kf5/metadata.xml
@@ -11,6 +11,7 @@
 		<remote-id type="kde-invent">network/kio-extras</remote-id>
 	</upstream>
 	<use>
+		<flag name="activities">Enable activities KIO worker and fileitem plugin</flag>
 		<flag name="ios">Enable AFC (Apple File Conduit) KIO worker for iOS devices support</flag>
 		<flag name="kf6compat">Disable components colliding with KF6, depend on KF6 components instead</flag>
 		<flag name="man">Enable manpages KIO worker</flag>


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/
@ 2024-01-01 16:34 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2024-01-01 16:34 UTC (permalink / raw
  To: gentoo-commits

commit:     674cb30ead6b7e864d807c622fe146d64a7b738c
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  1 16:26:28 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jan  1 16:34:16 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=674cb30e

kde-apps/kio-extras-kf5: Fix wrong slot deps for IUSE activities

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
index 76e894be46..eb1d951040 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
@@ -47,9 +47,9 @@ DEPEND="
 	>=kde-frameworks/solid-${KFMIN}:5
 	>=kde-frameworks/syntax-highlighting-${KFMIN}:5
 	activities? (
-		>=dev-qt/qtbase-${QTMIN}:6[sql]
-		kde-plasma/plasma-activities:6
-		kde-plasma/plasma-activities-stats:6
+		>=dev-qt/qtsql-${QTMIN}:5
+		>=kde-plasma/plasma-activities-${KFMIN}:5
+		>=kde-plasma/plasma-activities-stats-${KFMIN}:5
 	)
 	ios? (
 		app-pda/libimobiledevice:=


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/
@ 2024-01-11 18:27 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2024-01-11 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     246726bfdc70d403680c1beef99657176352101e
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 11 18:26:04 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jan 11 18:27:03 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=246726bf

kde-apps/kio-extras-kf5: Create 24.02 stable branch, add 24.01.90

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 .../{kio-extras-kf5-9999.ebuild => kio-extras-kf5-24.01.90.ebuild}  | 6 +++---
 ...o-extras-kf5-9999.ebuild => kio-extras-kf5-24.02.49.9999.ebuild} | 4 ++--
 kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild                  | 4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild
similarity index 95%
copy from kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
copy to kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild
index a8814be9c8..aa0512221c 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild
@@ -17,7 +17,7 @@ EGIT_BRANCH="kf5"
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS=""
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="activities ios kf6compat +man mtp nfs openexr phonon samba +sftp taglib X"
 
 # requires running Plasma environment
@@ -48,8 +48,8 @@ DEPEND="
 	>=kde-frameworks/syntax-highlighting-${KFMIN}:5
 	activities? (
 		>=dev-qt/qtsql-${QTMIN}:5
-		>=kde-plasma/plasma-activities-${KFMIN}:5
-		>=kde-plasma/plasma-activities-stats-${KFMIN}:5
+		kde-plasma/plasma-activities:5
+		kde-plasma/plasma-activities-stats:5
 	)
 	ios? (
 		app-pda/libimobiledevice:=

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild
similarity index 96%
copy from kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
copy to kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild
index a8814be9c8..774756565e 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild
@@ -48,8 +48,8 @@ DEPEND="
 	>=kde-frameworks/syntax-highlighting-${KFMIN}:5
 	activities? (
 		>=dev-qt/qtsql-${QTMIN}:5
-		>=kde-plasma/plasma-activities-${KFMIN}:5
-		>=kde-plasma/plasma-activities-stats-${KFMIN}:5
+		kde-plasma/plasma-activities:5
+		kde-plasma/plasma-activities-stats:5
 	)
 	ios? (
 		app-pda/libimobiledevice:=

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
index a8814be9c8..774756565e 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
@@ -48,8 +48,8 @@ DEPEND="
 	>=kde-frameworks/syntax-highlighting-${KFMIN}:5
 	activities? (
 		>=dev-qt/qtsql-${QTMIN}:5
-		>=kde-plasma/plasma-activities-${KFMIN}:5
-		>=kde-plasma/plasma-activities-stats-${KFMIN}:5
+		kde-plasma/plasma-activities:5
+		kde-plasma/plasma-activities-stats:5
 	)
 	ios? (
 		app-pda/libimobiledevice:=


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/
@ 2024-01-11 18:45 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2024-01-11 18:45 UTC (permalink / raw
  To: gentoo-commits

commit:     18f3da20eed9c9daa239e4108831189e6534030e
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 11 18:42:11 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jan 11 18:43:12 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=18f3da20

kde-apps/kio-extras-kf5: Re-add KFMIN to kde-plasma/plasma-activities*

Still Frameworks in SLOT 5, was getting confused for a moment.

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild      | 4 ++--
 kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild | 4 ++--
 kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild          | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild
index aa0512221c..44654ee4e5 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild
@@ -48,8 +48,8 @@ DEPEND="
 	>=kde-frameworks/syntax-highlighting-${KFMIN}:5
 	activities? (
 		>=dev-qt/qtsql-${QTMIN}:5
-		kde-plasma/plasma-activities:5
-		kde-plasma/plasma-activities-stats:5
+		>=kde-plasma/plasma-activities-${KFMIN}:5
+		>=kde-plasma/plasma-activities-stats-${KFMIN}:5
 	)
 	ios? (
 		app-pda/libimobiledevice:=

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild
index 774756565e..a8814be9c8 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild
@@ -48,8 +48,8 @@ DEPEND="
 	>=kde-frameworks/syntax-highlighting-${KFMIN}:5
 	activities? (
 		>=dev-qt/qtsql-${QTMIN}:5
-		kde-plasma/plasma-activities:5
-		kde-plasma/plasma-activities-stats:5
+		>=kde-plasma/plasma-activities-${KFMIN}:5
+		>=kde-plasma/plasma-activities-stats-${KFMIN}:5
 	)
 	ios? (
 		app-pda/libimobiledevice:=

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
index 774756565e..a8814be9c8 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
@@ -48,8 +48,8 @@ DEPEND="
 	>=kde-frameworks/syntax-highlighting-${KFMIN}:5
 	activities? (
 		>=dev-qt/qtsql-${QTMIN}:5
-		kde-plasma/plasma-activities:5
-		kde-plasma/plasma-activities-stats:5
+		>=kde-plasma/plasma-activities-${KFMIN}:5
+		>=kde-plasma/plasma-activities-stats-${KFMIN}:5
 	)
 	ios? (
 		app-pda/libimobiledevice:=


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/
@ 2024-01-11 22:49 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2024-01-11 22:49 UTC (permalink / raw
  To: gentoo-commits

commit:     4141871789b299b6f93a533845a6bf954513ea7f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 11 22:40:45 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jan 11 22:47:52 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=41418717

kde-apps/kio-extras-kf5: Depend on net-libs/kdsoap[qt5]

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild      | 5 ++++-
 kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild | 5 ++++-
 kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild          | 5 ++++-
 3 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild
index 44654ee4e5..4c1da5d474 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.01.90.ebuild
@@ -59,7 +59,10 @@ DEPEND="
 	nfs? ( net-libs/libtirpc:= )
 	openexr? ( media-libs/openexr:= )
 	phonon? ( >=media-libs/phonon-4.11.0[qt5(+)] )
-	samba? ( net-fs/samba[client] )
+	samba? (
+		net-fs/samba[client]
+		net-libs/kdsoap:=[qt5(+)]
+	)
 	sftp? ( net-libs/libssh:=[sftp] )
 	taglib? ( >=media-libs/taglib-1.11.1 )
 	X? (

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild
index a8814be9c8..958dcd31ef 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.49.9999.ebuild
@@ -59,7 +59,10 @@ DEPEND="
 	nfs? ( net-libs/libtirpc:= )
 	openexr? ( media-libs/openexr:= )
 	phonon? ( >=media-libs/phonon-4.11.0[qt5(+)] )
-	samba? ( net-fs/samba[client] )
+	samba? (
+		net-fs/samba[client]
+		net-libs/kdsoap:=[qt5(+)]
+	)
 	sftp? ( net-libs/libssh:=[sftp] )
 	taglib? ( >=media-libs/taglib-1.11.1 )
 	X? (

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
index a8814be9c8..958dcd31ef 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-9999.ebuild
@@ -59,7 +59,10 @@ DEPEND="
 	nfs? ( net-libs/libtirpc:= )
 	openexr? ( media-libs/openexr:= )
 	phonon? ( >=media-libs/phonon-4.11.0[qt5(+)] )
-	samba? ( net-fs/samba[client] )
+	samba? (
+		net-fs/samba[client]
+		net-libs/kdsoap:=[qt5(+)]
+	)
 	sftp? ( net-libs/libssh:=[sftp] )
 	taglib? ( >=media-libs/taglib-1.11.1 )
 	X? (


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/
@ 2024-02-26 19:59 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2024-02-26 19:59 UTC (permalink / raw
  To: gentoo-commits

commit:     2f2847f9c05bdc62e9fcd5186cb7461f7295fe22
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 26 18:44:04 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Feb 26 19:58:40 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=2f2847f9

kde-apps/kio-extras-kf5: Re-add 24.02.0:5 KEYWORDS

Only Qt6 revdeps will need to undergo re-keywording.

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.0.ebuild b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.0.ebuild
index 4d449a001f..087fa7d873 100644
--- a/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.0.ebuild
+++ b/kde-apps/kio-extras-kf5/kio-extras-kf5-24.02.0.ebuild
@@ -17,7 +17,7 @@ EGIT_BRANCH="kf5"
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="activities ios kf6compat +man mtp nfs openexr phonon samba +sftp taglib X"
 
 # requires running Plasma environment


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2024-02-26 19:59 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-11 22:49 [gentoo-commits] proj/kde:master commit in: kde-apps/kio-extras-kf5/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2024-02-26 19:59 Andreas Sturmlechner
2024-01-11 18:45 Andreas Sturmlechner
2024-01-11 18:27 Andreas Sturmlechner
2024-01-01 16:34 Andreas Sturmlechner
2023-12-23 16:08 Andreas Sturmlechner
2023-12-23 16:00 Andreas Sturmlechner
2023-12-22 19:16 Andreas Sturmlechner
2023-12-22  8:47 Andreas Sturmlechner
2023-12-14 21:24 Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox