summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2022-08-29 15:05:49 +0100
committerJames Le Cuirot <chewi@gentoo.org>2022-08-29 15:05:49 +0100
commitdb75ee79722700299a45b254c89007270d24689b (patch)
tree83ba6a693fcc313c7f0a03c8c15cace17e8a027a /x11-wm/xpra/files/xpra-4.2-no-service.patch
parentapp-portage/mgorny-dev-scripts: Add dep on portage-utils (for qatom) (diff)
downloadgentoo-db75ee79722700299a45b254c89007270d24689b.tar.gz
gentoo-db75ee79722700299a45b254c89007270d24689b.tar.bz2
gentoo-db75ee79722700299a45b254c89007270d24689b.zip
x11-wm/xpra: Drop old 4.2
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'x11-wm/xpra/files/xpra-4.2-no-service.patch')
-rw-r--r--x11-wm/xpra/files/xpra-4.2-no-service.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/x11-wm/xpra/files/xpra-4.2-no-service.patch b/x11-wm/xpra/files/xpra-4.2-no-service.patch
deleted file mode 100644
index dd85370968ba..000000000000
--- a/x11-wm/xpra/files/xpra-4.2-no-service.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Don't install the service files. Auto-detection is used to determine what files
-to install, and where, which can be unpredictable on Gentoo. The init.d script
-is also not suitable for Gentoo.
-
-diff --git a/setup.py b/setup.py
-index 1718b06a9..b24a5bd1e 100755
---- a/setup.py
-+++ b/setup.py
-@@ -139,8 +139,8 @@ from xpra.platform.features import LOCAL_SERVERS_SUPPORTED, SHADOW_SUPPORTED
- shadow_ENABLED = SHADOW_SUPPORTED and DEFAULT
- server_ENABLED = (LOCAL_SERVERS_SUPPORTED or shadow_ENABLED) and DEFAULT
- rfb_ENABLED = server_ENABLED
--service_ENABLED = LINUX and server_ENABLED
--sd_listen_ENABLED = POSIX and pkg_config_ok("--exists", "libsystemd")
-+service_ENABLED = False
-+sd_listen_ENABLED = False
- proxy_ENABLED = DEFAULT
- client_ENABLED = DEFAULT
- scripts_ENABLED = not WIN32