summaryrefslogtreecommitdiff
path: root/x11-wm/xpra/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-05-01 11:19:44 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-05-01 11:19:44 +0100
commitc3d14fe9accdf0b091e42f26a66ed7626ba8c24b (patch)
tree354e4022d98ceadbdf02f98879cc8b1feb4d61b1 /x11-wm/xpra/files
parent149480f9f5548b5a0fdb457abd473f8d10f60f51 (diff)
gentoo auto-resync : 01:05:2023 - 11:19:44
Diffstat (limited to 'x11-wm/xpra/files')
-rw-r--r--x11-wm/xpra/files/xpra-4.2-suid-warning.patch12
-rw-r--r--x11-wm/xpra/files/xpra-4.3-cpp.patch34
2 files changed, 0 insertions, 46 deletions
diff --git a/x11-wm/xpra/files/xpra-4.2-suid-warning.patch b/x11-wm/xpra/files/xpra-4.2-suid-warning.patch
deleted file mode 100644
index b1b2afb4e18b..000000000000
--- a/x11-wm/xpra/files/xpra-4.2-suid-warning.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --color -Naur a/xpra/scripts/config.py b/xpra/scripts/config.py
---- a/xpra/scripts/config.py 2021-05-19 16:18:30.475153200 +0100
-+++ b/xpra/scripts/config.py 2021-05-30 08:50:42.326953006 +0100
-@@ -159,7 +159,7 @@
- if (xorg_stat.st_mode & stat.S_ISUID)!=0:
- if (xorg_stat.st_mode & stat.S_IROTH)==0:
- if warn_fn:
-- warn_fn("%s is suid and not readable, Xdummy support unavailable" % xorg_bin)
-+ debug("%s is suid and not readable, Xdummy support unavailable" % xorg_bin)
- return get_Xvfb_command()
- debug("%s is suid and readable, using the xpra_Xdummy wrapper" % xorg_bin)
- use_wrapper = True
diff --git a/x11-wm/xpra/files/xpra-4.3-cpp.patch b/x11-wm/xpra/files/xpra-4.3-cpp.patch
deleted file mode 100644
index 41f1263e3465..000000000000
--- a/x11-wm/xpra/files/xpra-4.3-cpp.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From c80d18b41701082e60ce6bfa5bd6a274affaff96 Mon Sep 17 00:00:00 2001
-From: James Le Cuirot <chewi@gentoo.org>
-Date: Sun, 22 May 2022 12:00:01 +0100
-Subject: [PATCH] Most build systems respect the CPP env var instead of just
- calling cpp
-
----
- setup.py | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index f84d56c6d..7f0db3b69 100755
---- a/setup.py
-+++ b/setup.py
-@@ -149,6 +149,7 @@ ARM = ARCH.startswith("arm") or ARCH.startswith("aarch")
- print("ARCH=%s" % (ARCH,))
-
- INCLUDE_DIRS = os.environ.get("INCLUDE_DIRS", os.path.join(sys.prefix, "include")).split(os.pathsep)
-+CPP = os.environ.get("CPP", "cpp")
-
- from xpra.platform.features import LOCAL_SERVERS_SUPPORTED, SHADOW_SUPPORTED
- shadow_ENABLED = SHADOW_SUPPORTED and DEFAULT
-@@ -2423,7 +2424,7 @@ if v4l2_ENABLED:
- ENABLE_DEVICE_CAPS = 0
- if os.path.exists(videodev2_h):
- try:
-- with subprocess.Popen("cpp -fpreprocessed %s | grep -q device_caps" % videodev2_h,
-+ with subprocess.Popen("%s -fpreprocessed %s | grep -q device_caps" % (CPP, videodev2_h),
- shell=True) as proc:
- ENABLE_DEVICE_CAPS = proc.wait()==0
- except OSError:
---
-2.35.1
-