summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2023-05-16 23:12:08 +0100
committerJames Le Cuirot <chewi@gentoo.org>2023-05-16 23:12:08 +0100
commit3102cd8d6d3e1e22e1f1f2820fef94a0965c7166 (patch)
tree60805c349b1ba1e02e4ce025259e750d57c803a8 /x11-wm/xpra/files/xpra-4.5-no-service.patch
parentx11-wm/xpra: remove unused patch (diff)
downloadgentoo-3102cd8d6d3e1e22e1f1f2820fef94a0965c7166.tar.gz
gentoo-3102cd8d6d3e1e22e1f1f2820fef94a0965c7166.tar.bz2
gentoo-3102cd8d6d3e1e22e1f1f2820fef94a0965c7166.zip
x11-wm/xpra: Use setup.py args to avoid sd_listen/service files
I didn't realise I could have done this without a patch. Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'x11-wm/xpra/files/xpra-4.5-no-service.patch')
-rw-r--r--x11-wm/xpra/files/xpra-4.5-no-service.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/x11-wm/xpra/files/xpra-4.5-no-service.patch b/x11-wm/xpra/files/xpra-4.5-no-service.patch
deleted file mode 100644
index 329c492784ac..000000000000
--- a/x11-wm/xpra/files/xpra-4.5-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 529b591b1..ad23d6ecc 100755
---- a/setup.py
-+++ b/setup.py
-@@ -187,8 +187,8 @@ rfb_ENABLED = DEFAULT
- quic_ENABLED = DEFAULT
- ssh_ENABLED = DEFAULT
- http_ENABLED = DEFAULT
--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