public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: kde-plasma/krdp/
@ 2024-09-07 17:14 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2024-09-07 17:14 UTC (permalink / raw
  To: gentoo-commits

commit:     ded4642751aa855d3f0bfc2efae11bbfdc3b0be5
Author:     bivsk <bivsk <AT> tutanota <DOT> com>
AuthorDate: Mon Aug 19 02:31:51 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Sep  7 17:13:01 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=ded46427

kde-plasma/krdp: fix libc++ builds

libc++ marks the implementations of jthread and stop_token as
experimental.
Explicitly enable these libraries on libc++ systems
See: https://libcxx.llvm.org/Status/Cxx20.html#note-p0660

Signed-off-by: bivsk <bivsk <AT> tutanota.com>
Closes: https://github.com/gentoo/gentoo/pull/38197
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-plasma/krdp/krdp-6.1.49.9999.ebuild | 10 +++++++++-
 kde-plasma/krdp/krdp-9999.ebuild        | 10 +++++++++-
 2 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/kde-plasma/krdp/krdp-6.1.49.9999.ebuild b/kde-plasma/krdp/krdp-6.1.49.9999.ebuild
index 136a3b0ac7..d637f56bf4 100644
--- a/kde-plasma/krdp/krdp-6.1.49.9999.ebuild
+++ b/kde-plasma/krdp/krdp-6.1.49.9999.ebuild
@@ -8,7 +8,7 @@ ECM_TEST="true"
 KFMIN=6.5.0
 PVCUT=$(ver_cut 1-3)
 QTMIN=6.7.2
-inherit ecm plasma.kde.org
+inherit ecm flag-o-matic plasma.kde.org toolchain-funcs
 
 DESCRIPTION="Library and examples for creating an RDP server"
 HOMEPAGE+=" https://quantumproductions.info/articles/2023-08/remote-desktop-using-rdp-protocol-plasma-wayland"
@@ -40,3 +40,11 @@ RDEPEND="${COMMON_DEPEND}
 	>=kde-frameworks/kirigami-${KFMIN}:6
 "
 BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:6"
+
+src_configure() {
+	# std::jthread and std::stop_token are implemented as experimental in libcxx
+	# enable these experimental libraries on clang systems
+	# https://libcxx.llvm.org/Status/Cxx20.html#note-p0660
+	[[ $(tc-get-cxx-stdlib) == 'libc++' ]] && append-cxxflags -fexperimental-library
+	ecm_src_configure
+}

diff --git a/kde-plasma/krdp/krdp-9999.ebuild b/kde-plasma/krdp/krdp-9999.ebuild
index 3e9028a0be..42362aa691 100644
--- a/kde-plasma/krdp/krdp-9999.ebuild
+++ b/kde-plasma/krdp/krdp-9999.ebuild
@@ -8,7 +8,7 @@ ECM_TEST="true"
 KFMIN=9999
 PVCUT=$(ver_cut 1-3)
 QTMIN=6.7.2
-inherit ecm plasma.kde.org
+inherit ecm flag-o-matic plasma.kde.org toolchain-funcs
 
 DESCRIPTION="Library and examples for creating an RDP server"
 HOMEPAGE+=" https://quantumproductions.info/articles/2023-08/remote-desktop-using-rdp-protocol-plasma-wayland"
@@ -40,3 +40,11 @@ RDEPEND="${COMMON_DEPEND}
 	>=kde-frameworks/kirigami-${KFMIN}:6
 "
 BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:6"
+
+src_configure() {
+	# std::jthread and std::stop_token are implemented as experimental in libcxx
+	# enable these experimental libraries on clang systems
+	# https://libcxx.llvm.org/Status/Cxx20.html#note-p0660
+	[[ $(tc-get-cxx-stdlib) == 'libc++' ]] && append-cxxflags -fexperimental-library
+	ecm_src_configure
+}


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

* [gentoo-commits] proj/kde:master commit in: kde-plasma/krdp/
@ 2024-09-14 15:16 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2024-09-14 15:16 UTC (permalink / raw
  To: gentoo-commits

commit:     dfff6554f7e124e31806782148c690179e4c8275
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 14 14:24:53 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Sep 14 14:24:53 2024 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=dfff6554

kde-plasma/krdp: Add new dependency

Upstream commit c0a5761b2c5e05d6fb835487a43566e5e60ef527

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

 kde-plasma/krdp/krdp-9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-plasma/krdp/krdp-9999.ebuild b/kde-plasma/krdp/krdp-9999.ebuild
index 42362aa691..d5dd31c22e 100644
--- a/kde-plasma/krdp/krdp-9999.ebuild
+++ b/kde-plasma/krdp/krdp-9999.ebuild
@@ -26,6 +26,7 @@ COMMON_DEPEND="
 	>=kde-frameworks/kcmutils-${KFMIN}:6
 	>=kde-frameworks/kconfig-${KFMIN}:6
 	>=kde-frameworks/kcoreaddons-${KFMIN}:6
+	>=kde-frameworks/kcrash-${KFMIN}:6
 	>=kde-frameworks/kdbusaddons-${KFMIN}:6
 	>=kde-frameworks/ki18n-${KFMIN}:6
 	>=kde-frameworks/kstatusnotifieritem-${KFMIN}:6


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

* [gentoo-commits] proj/kde:master commit in: kde-plasma/krdp/
@ 2025-02-02 21:38 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2025-02-02 21:38 UTC (permalink / raw
  To: gentoo-commits

commit:     6a4582c110c479ff2e47a1c47330b8e5dbb20837
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Jan 30 19:56:49 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Feb  2 19:51:59 2025 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=6a4582c1

kde-plasma/krdp: update to freerdp:3

Upstream commit: https://invent.kde.org/plasma/krdp/-/commit/0fcf4e51e4683d9253ad226c3d8b663651cec9e0

Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-plasma/krdp/krdp-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-plasma/krdp/krdp-9999.ebuild b/kde-plasma/krdp/krdp-9999.ebuild
index 20f2aecfca..bfe3cc0982 100644
--- a/kde-plasma/krdp/krdp-9999.ebuild
+++ b/kde-plasma/krdp/krdp-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -30,7 +30,7 @@ COMMON_DEPEND="
 	>=kde-frameworks/ki18n-${KFMIN}:6
 	>=kde-frameworks/kstatusnotifieritem-${KFMIN}:6
 	>=kde-plasma/kpipewire-${KDE_CATV}:6
-	>=net-misc/freerdp-2.10:2[server]
+	>=net-misc/freerdp-3.1:3[server]
 	x11-libs/libxkbcommon
 "
 DEPEND="${COMMON_DEPEND}


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

* [gentoo-commits] proj/kde:master commit in: kde-plasma/krdp/
@ 2025-04-27 21:18 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2025-04-27 21:18 UTC (permalink / raw
  To: gentoo-commits

commit:     2a3650e5197f8381f139e11dc676d6994dfc879a
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 26 19:27:04 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Apr 27 21:14:43 2025 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=2a3650e5

kde-plasma/krdp: Backport port to FreeRDP3

(cherry-picked upstream commit 0fcf4e51e4683d9253ad226c3d8b663651cec9e0)

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

 kde-plasma/krdp/krdp-6.3.49.9999.ebuild | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/kde-plasma/krdp/krdp-6.3.49.9999.ebuild b/kde-plasma/krdp/krdp-6.3.49.9999.ebuild
index 047f2be7ab..25910da280 100644
--- a/kde-plasma/krdp/krdp-6.3.49.9999.ebuild
+++ b/kde-plasma/krdp/krdp-6.3.49.9999.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=8
 
+PATCHSET="${PN}-6.3.4-patchset"
 ECM_EXAMPLES="true"
 ECM_TEST="true"
 KFMIN=6.10.0
@@ -11,6 +12,7 @@ inherit ecm flag-o-matic plasma.kde.org toolchain-funcs xdg
 
 DESCRIPTION="Library and examples for creating an RDP server"
 HOMEPAGE+=" https://quantumproductions.info/articles/2023-08/remote-desktop-using-rdp-protocol-plasma-wayland"
+SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}.tar.xz"
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="6"
@@ -30,7 +32,7 @@ COMMON_DEPEND="
 	>=kde-frameworks/ki18n-${KFMIN}:6
 	>=kde-frameworks/kstatusnotifieritem-${KFMIN}:6
 	>=kde-plasma/kpipewire-${KDE_CATV}:6
-	>=net-misc/freerdp-2.10:2[server]
+	>=net-misc/freerdp-3.1:3[server]
 	x11-libs/libxkbcommon
 "
 DEPEND="${COMMON_DEPEND}
@@ -41,6 +43,8 @@ RDEPEND="${COMMON_DEPEND}
 "
 BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:6"
 
+PATCHES=( "${WORKDIR}/${PATCHSET}" )
+
 src_configure() {
 	# std::jthread and std::stop_token are implemented as experimental in libcxx
 	# enable these experimental libraries on clang systems


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

* [gentoo-commits] proj/kde:master commit in: kde-plasma/krdp/
@ 2025-07-17 15:51 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2025-07-17 15:51 UTC (permalink / raw
  To: gentoo-commits

commit:     3295f4edc23bbcff61d8366a3ab4f589ebb91f2a
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Jul 17 11:25:11 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jul 17 15:42:54 2025 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=3295f4ed

kde-plasma/krdp: new dependency kguiaddons

Upstream commit: 30fe113e0234b1b453750a7c531c15d07e2e05a6

Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Part-of: https://github.com/gentoo/kde/pull/1057
Closes: https://github.com/gentoo/kde/pull/1057
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-plasma/krdp/krdp-9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-plasma/krdp/krdp-9999.ebuild b/kde-plasma/krdp/krdp-9999.ebuild
index 82ba3da0ec..28731f6b6e 100644
--- a/kde-plasma/krdp/krdp-9999.ebuild
+++ b/kde-plasma/krdp/krdp-9999.ebuild
@@ -26,6 +26,7 @@ COMMON_DEPEND="
 	>=kde-frameworks/kcoreaddons-${KFMIN}:6
 	>=kde-frameworks/kcrash-${KFMIN}:6
 	>=kde-frameworks/kdbusaddons-${KFMIN}:6
+	>=kde-frameworks/kguiaddons-${KFMIN}:6
 	>=kde-frameworks/ki18n-${KFMIN}:6
 	>=kde-frameworks/kstatusnotifieritem-${KFMIN}:6
 	>=kde-plasma/kpipewire-${KDE_CATV}:6


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

end of thread, other threads:[~2025-07-17 15:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-27 21:18 [gentoo-commits] proj/kde:master commit in: kde-plasma/krdp/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2025-07-17 15:51 Andreas Sturmlechner
2025-02-02 21:38 Andreas Sturmlechner
2024-09-14 15:16 Andreas Sturmlechner
2024-09-07 17:14 Andreas Sturmlechner

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