Luigi Baldoni
4f1a46472c
- Update to version 4.0 * Drop support for: + Python 2, GTK2 + legacy versions (pre 1.0) + weak authentication * Network, per socket options: + authentication and encryption + ssl + ssh + bind options for client * make it easier to send files from the server * xpra toolbox subcommand * xpra help subcommand * xpra top new features * faster startup * signal handling fixes * smoother window resizing * refactoring and testing + unit tests coverage and fixes + completely skip loading unused features at runtime + get rid of capabilities data after parsing it + better module dependency separation + don't convert to a string before we need it * more useful window and tray title * make it easier to source environment * disable desktop animations in desktop mode * automatic start-or-upgrade, automatic X11 display rescue * support MS Windows OpenSSH server to start shadow * more selective use of OpenGL acceleration in client * expose server OpenGL capabilities * cleaner HTML5 syntax - Refresh xpra-paths.patch OBS-URL: https://build.opensuse.org/request/show/802531 OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/xpra?expand=0&rev=45
46 lines
2.3 KiB
Diff
46 lines
2.3 KiB
Diff
Index: xpra-4.0/setup.py
|
|
===================================================================
|
|
--- xpra-4.0.orig/setup.py
|
|
+++ xpra-4.0/setup.py
|
|
@@ -1477,7 +1477,7 @@ else:
|
|
add_data_files("%s/man1" % man_path, ["man/xpra.1", "man/xpra_launcher.1"])
|
|
add_data_files("share/applications", glob.glob("xdg/*.desktop"))
|
|
add_data_files("share/mime/packages", ["xdg/application-x-xpraconfig.xml"])
|
|
- add_data_files("share/icons", ["xdg/xpra.png", "xdg/xpra-mdns.png", "xdg/xpra-shadow.png"])
|
|
+ add_data_files("share/pixmaps", ["xdg/xpra.png", "xdg/xpra-mdns.png", "xdg/xpra-shadow.png"])
|
|
add_data_files("share/metainfo", ["xdg/xpra.appdata.xml"])
|
|
|
|
#here, we override build and install so we can
|
|
@@ -1553,10 +1553,10 @@ else:
|
|
if pam_ENABLED:
|
|
copytodir("etc/pam.d/xpra", "/etc/pam.d")
|
|
|
|
- systemd_dir = "/lib/systemd/system"
|
|
+ systemd_dir = "__UNITDIR__"
|
|
if service_ENABLED:
|
|
#Linux init service:
|
|
- if os.path.exists("/bin/systemctl"):
|
|
+ if os.path.exists("/usr/bin/systemctl"):
|
|
if sd_listen_ENABLED:
|
|
copytodir("service/xpra.service", systemd_dir)
|
|
else:
|
|
@@ -1564,7 +1564,9 @@ else:
|
|
else:
|
|
copytodir("service/xpra", "/etc/init.d")
|
|
if os.path.exists("/etc/sysconfig"):
|
|
- copytodir("etc/sysconfig/xpra", "/etc/sysconfig")
|
|
+ shutil.copy("etc/sysconfig/xpra", "etc/sysconfig/sysconfig.xpra")
|
|
+ os.chmod("etc/sysconfig/sysconfig.xpra", 0o644)
|
|
+ copytodir("etc/sysconfig/sysconfig.xpra", "__FILLUPDIR__")
|
|
elif os.path.exists("/etc/default"):
|
|
copytodir("etc/sysconfig/xpra", "/etc/default")
|
|
if sd_listen_ENABLED:
|
|
@@ -1676,7 +1678,6 @@ if scripts_ENABLED:
|
|
toggle_modules(WIN32, "xpra/scripts/win32_service")
|
|
|
|
if data_ENABLED:
|
|
- add_data_files(share_xpra, ["README", "COPYING"])
|
|
add_data_files(share_xpra, ["bell.wav"])
|
|
add_data_files("%s/http-headers" % share_xpra, glob.glob("http-headers/*"))
|
|
add_data_files("%s/icons" % share_xpra, glob.glob("icons/*png"))
|