public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/xpra] f43: Fix rhbz#2496082
@ 2026-07-01 20:52 Antonio Trande
0 siblings, 0 replies; only message in thread
From: Antonio Trande @ 2026-07-01 20:52 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/xpra
Branch : f43
Commit : 11cfad714133a0cd1a84585de49cf1371fb13c99
Author : Antonio Trande <sagitter@fedoraproject.org>
Date : 2026-07-01T22:37:58+02:00
Stats : +32/-0 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/xpra/c/11cfad714133a0cd1a84585de49cf1371fb13c99?branch=f43
Log:
Fix rhbz#2496082
---
diff --git a/xpra-6.5-rhbz2496082.patch b/xpra-6.5-rhbz2496082.patch
new file mode 100644
index 0000000..4e75635
--- /dev/null
+++ b/xpra-6.5-rhbz2496082.patch
@@ -0,0 +1,27 @@
+From da3fa8745e7e67845e63cf6d80ed31c768f97138 Mon Sep 17 00:00:00 2001
+From: Antoine Martin <antoine@xpra.org>
+Date: Thu, 25 Jun 2026 00:36:32 +0700
+Subject: [PATCH] #4938 always start the protocol, even with remote starts
+
+---
+ xpra/scripts/main.py | 7 ++++++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/xpra/scripts/main.py b/xpra/scripts/main.py
+index ba06004fac..5f17508af4 100755
+--- a/xpra/scripts/main.py
++++ b/xpra/scripts/main.py
+@@ -2075,7 +2075,12 @@ def handshake_complete(*_args) -> None:
+ while True:
+ try:
+ conn = connect_or_fail(params, opts)
+- app.make_protocol(conn)
++ protocol = app.make_protocol(conn)
++ if opts.attach is not False:
++ # the command clients (attach=False) start the protocol from their own `run()` method,
++ # but the regular client relies on the caller to start it
++ # (just like `do_setup_connection` does for the normal attach path):
++ protocol.start()
+ may_show_progress(app, 80, "connecting to server")
+ break
+ except InitExit as e:
diff --git a/xpra.spec b/xpra.spec
index d01942d..68d9ebd 100644
--- a/xpra.spec
+++ b/xpra.spec
@@ -39,6 +39,9 @@ Source1: %{name}.appdata.xml
# https://bodhi.fedoraproject.org/updates/FEDORA-2025-0882918c25#comment-4407961
Patch0: %{name}-fix_audio.patch
+# https://bugzilla.redhat.com/show_bug.cgi?id=2496082
+Patch1: %{name}-6.5-rhbz2496082.patch
+
BuildRequires: python3-devel
BuildRequires: gtk3-devel
BuildRequires: libXtst-devel
@@ -161,6 +164,8 @@ Use Decode As → Xpra to force it on a different port.
%patch -P 0 -p1 -b .backup
%endif
+%patch -P 1 -p1 -b .backup
+
rm -rf *.egg-info
# cc1: error: unrecognized compiler option ‘-mfpmath=387’
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-07-01 20:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-01 20:52 [rpms/xpra] f43: Fix rhbz#2496082 Antonio Trande
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox