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; 3+ 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] 3+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-plasma/krdp/
@ 2024-09-14 15:16 Andreas Sturmlechner
  0 siblings, 0 replies; 3+ 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] 3+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-plasma/krdp/
@ 2025-02-02 21:38 Andreas Sturmlechner
  0 siblings, 0 replies; 3+ 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] 3+ messages in thread

end of thread, other threads:[~2025-02-02 21:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-14 15:16 [gentoo-commits] proj/kde:master commit in: kde-plasma/krdp/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2025-02-02 21:38 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