Accepting request 802531 from home:alois:branches:X11:Utilities
- 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
This commit is contained in:
parent
e86808f069
commit
4f1a46472c
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:277e6a03fd5b81a966cb0227c39ab1c159d7464365f69ba36b6bdfd0c39f1a13
|
|
||||||
size 2760888
|
|
3
xpra-4.0.tar.xz
Normal file
3
xpra-4.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:51ae2450518543eb7e135add94fd65dffd03052a0e8815f7058b5a45f4b67360
|
||||||
|
size 2787096
|
@ -1,8 +1,8 @@
|
|||||||
Index: xpra-3.0.6/setup.py
|
Index: xpra-4.0/setup.py
|
||||||
===================================================================
|
===================================================================
|
||||||
--- xpra-3.0.6.orig/setup.py
|
--- xpra-4.0.orig/setup.py
|
||||||
+++ xpra-3.0.6/setup.py
|
+++ xpra-4.0/setup.py
|
||||||
@@ -1502,7 +1502,7 @@ else:
|
@@ -1477,7 +1477,7 @@ else:
|
||||||
add_data_files("%s/man1" % man_path, ["man/xpra.1", "man/xpra_launcher.1"])
|
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/applications", glob.glob("xdg/*.desktop"))
|
||||||
add_data_files("share/mime/packages", ["xdg/application-x-xpraconfig.xml"])
|
add_data_files("share/mime/packages", ["xdg/application-x-xpraconfig.xml"])
|
||||||
@ -11,7 +11,7 @@ Index: xpra-3.0.6/setup.py
|
|||||||
add_data_files("share/metainfo", ["xdg/xpra.appdata.xml"])
|
add_data_files("share/metainfo", ["xdg/xpra.appdata.xml"])
|
||||||
|
|
||||||
#here, we override build and install so we can
|
#here, we override build and install so we can
|
||||||
@@ -1575,10 +1575,10 @@ else:
|
@@ -1553,10 +1553,10 @@ else:
|
||||||
if pam_ENABLED:
|
if pam_ENABLED:
|
||||||
copytodir("etc/pam.d/xpra", "/etc/pam.d")
|
copytodir("etc/pam.d/xpra", "/etc/pam.d")
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ Index: xpra-3.0.6/setup.py
|
|||||||
if sd_listen_ENABLED:
|
if sd_listen_ENABLED:
|
||||||
copytodir("service/xpra.service", systemd_dir)
|
copytodir("service/xpra.service", systemd_dir)
|
||||||
else:
|
else:
|
||||||
@@ -1586,7 +1586,9 @@ else:
|
@@ -1564,7 +1564,9 @@ else:
|
||||||
else:
|
else:
|
||||||
copytodir("service/xpra", "/etc/init.d")
|
copytodir("service/xpra", "/etc/init.d")
|
||||||
if os.path.exists("/etc/sysconfig"):
|
if os.path.exists("/etc/sysconfig"):
|
||||||
@ -35,8 +35,8 @@ Index: xpra-3.0.6/setup.py
|
|||||||
elif os.path.exists("/etc/default"):
|
elif os.path.exists("/etc/default"):
|
||||||
copytodir("etc/sysconfig/xpra", "/etc/default")
|
copytodir("etc/sysconfig/xpra", "/etc/default")
|
||||||
if sd_listen_ENABLED:
|
if sd_listen_ENABLED:
|
||||||
@@ -1704,7 +1706,6 @@ if scripts_ENABLED:
|
@@ -1676,7 +1678,6 @@ if scripts_ENABLED:
|
||||||
toggle_modules(WIN32, "xpra/scripts/win32_proxy_service")
|
toggle_modules(WIN32, "xpra/scripts/win32_service")
|
||||||
|
|
||||||
if data_ENABLED:
|
if data_ENABLED:
|
||||||
- add_data_files(share_xpra, ["README", "COPYING"])
|
- add_data_files(share_xpra, ["README", "COPYING"])
|
||||||
|
37
xpra.changes
37
xpra.changes
@ -1,3 +1,40 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun May 10 18:10:53 UTC 2020 - Luigi Baldoni <aloisio@gmx.com>
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 14 16:14:15 UTC 2020 - Luigi Baldoni <aloisio@gmx.com>
|
Tue Apr 14 16:14:15 UTC 2020 - Luigi Baldoni <aloisio@gmx.com>
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
%global __requires_exclude ^typelib\\(GtkosxApplication\\)|typelib\\(GdkGLExt\\)|typelib\\(GtkGLExt\\).*$
|
%global __requires_exclude ^typelib\\(GtkosxApplication\\)|typelib\\(GdkGLExt\\)|typelib\\(GtkGLExt\\).*$
|
||||||
Name: xpra
|
Name: xpra
|
||||||
Version: 3.0.9
|
Version: 4.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Remote display server for applications and desktops
|
Summary: Remote display server for applications and desktops
|
||||||
License: GPL-2.0-or-later AND BSD-3-Clause AND LGPL-3.0-or-later AND MIT
|
License: GPL-2.0-or-later AND BSD-3-Clause AND LGPL-3.0-or-later AND MIT
|
||||||
@ -122,8 +122,6 @@ install -m0644 %{SOURCE1} -t xdg
|
|||||||
sed -e 's|__FILLUPDIR__|%{_fillupdir}|' \
|
sed -e 's|__FILLUPDIR__|%{_fillupdir}|' \
|
||||||
-e 's|__UNITDIR__|%{_unitdir}|' \
|
-e 's|__UNITDIR__|%{_unitdir}|' \
|
||||||
-i setup.py
|
-i setup.py
|
||||||
# fix shebang
|
|
||||||
sed -i 's|^#!.*|#!%__python3|' scripts/auth_dialog scripts/xdg-open
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
python3 setup.py build \
|
python3 setup.py build \
|
||||||
|
Loading…
Reference in New Issue
Block a user