mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: xpra: Update to 6.0.
* gnu/packages/xorg.scm (xpra): Update to 6.0. [inputs]: Add xxhash. [native-inputs]: Change python-cython to python-cython-3. * gnu/packages/patches/xpra-6.0-install_libs.patch: New file. * gnu/packages/patches/xpra-6.0-systemd-run.patch: New file. * gnu/packages/patches/xpra-5.0-install_libs.patch: Removed. * gnu/packages/patches/xpra-5.0-systemd-run.patch: Removed. * gnu/local.mk (dist_patch_DATA): Update accordingly Change-Id: Ic8ec98296220aebabb3d94951e11a3c957a8fcbc Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
49ec9f4ba3
commit
61140300c2
4 changed files with 30 additions and 28 deletions
48
gnu/packages/patches/xpra-6.0-systemd-run.patch
Normal file
48
gnu/packages/patches/xpra-6.0-systemd-run.patch
Normal file
|
@ -0,0 +1,48 @@
|
|||
Distriction specific patch, not going upstream
|
||||
|
||||
Disable systemd-run if the command is not found.
|
||||
|
||||
diff --git a/xpra/scripts/main.py b/xpra/scripts/main.py
|
||||
index 1c5e8ddaad..084aabe792 100755
|
||||
--- a/xpra/scripts/main.py
|
||||
+++ b/xpra/scripts/main.py
|
||||
@@ -396,23 +396,26 @@ def use_systemd_run(s) -> bool:
|
||||
cmd = ["systemd-run", "--quiet"]
|
||||
if getuid() != 0:
|
||||
cmd += ["--user"]
|
||||
- cmd += ["--scope", "--", "true"]
|
||||
- proc = Popen(cmd, stdout=PIPE, stderr=PIPE, shell=False)
|
||||
try:
|
||||
- proc.communicate(timeout=2)
|
||||
- r = proc.returncode
|
||||
- except TimeoutExpired: # pragma: no cover
|
||||
- r = None
|
||||
- if r is None:
|
||||
- try:
|
||||
- proc.terminate()
|
||||
- except Exception:
|
||||
- pass
|
||||
+ cmd = ["systemd-run", "--quiet", "--user", "--scope", "--", "true"]
|
||||
+ proc = Popen(cmd, stdout=PIPE, stderr=PIPE, shell=False)
|
||||
try:
|
||||
- proc.communicate(timeout=1)
|
||||
+ proc.communicate(timeout=2)
|
||||
+ r = proc.returncode
|
||||
except TimeoutExpired: # pragma: no cover
|
||||
r = None
|
||||
- return r == 0
|
||||
+ if r is None:
|
||||
+ try:
|
||||
+ proc.terminate()
|
||||
+ except Exception:
|
||||
+ pass
|
||||
+ try:
|
||||
+ proc.communicate(timeout=1)
|
||||
+ except TimeoutExpired: # pragma: no cover
|
||||
+ r = None
|
||||
+ return r==0
|
||||
+ except FileNotFoundError:
|
||||
+ return False
|
||||
|
||||
|
||||
def verify_gir():
|
Loading…
Add table
Add a link
Reference in a new issue