This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository python-x2go. from 789c74b x2go/utils.py: Comment 'dpi' param change above and explain that this might cause problems elsewhere. However, the applied change (setting the 'dpi' default value rather than not setting it if setdpi is False is the currently best thinkable approach). new b75c802 debian/*: Drop Python2 builds. new ce28c92 Rewrite string variables to '' if they are set to None during instance construction. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 4 ++++ debian/control | 40 ---------------------------------------- debian/python-x2go.docs | 3 --- debian/python-x2go.examples | 1 - debian/python-x2go.install | 1 - x2go/backends/terminal/plain.py | 10 ++++++++-- 6 files changed, 12 insertions(+), 47 deletions(-) delete mode 100644 debian/python-x2go.docs delete mode 100644 debian/python-x2go.examples delete mode 100644 debian/python-x2go.install -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository python-x2go. commit ce28c9235a8db51718f6f5e3f7283285250ca060 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Sep 2 16:27:49 2021 +0200 Rewrite string variables to '' if they are set to None during instance construction. --- debian/changelog | 2 ++ x2go/backends/terminal/plain.py | 10 ++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8fe550a..7732f69 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,8 @@ python-x2go (0.6.1.4-0x2go1) UNRELEASED; urgency=medium is the currently best thinkable approach). - x2go/client.py: Catch some (more) x2go_exceptions.X2GoSessionRegistryException occurrences. + - Rewrite string variables to '' if they are set to None during instance + construction. * debian/*: + Drop Python2 builds. diff --git a/x2go/backends/terminal/plain.py b/x2go/backends/terminal/plain.py index fa82de9..76bca92 100644 --- a/x2go/backends/terminal/plain.py +++ b/x2go/backends/terminal/plain.py @@ -361,7 +361,10 @@ class X2GoTerminalSession(object): self.params.geometry = str(geometry) self.params.link = str(link) self.params.pack = str(pack) - self.params.dpi = str(dpi) + if dpi: + self.params.dpi = str(dpi) + else: + self.params.dpi = '' self.params.cache_type = str(cache_type) self.params.session_type = str(session_type) self.params.kbtype = str(kbtype) @@ -396,7 +399,10 @@ class X2GoTerminalSession(object): self.profile_name = profile_name self.set_session_title = set_session_title - self.session_title = session_title + if session_title: + self.session_title = session_title + else: + self.session_title = '' self.session_window = None # auto-detect graphical proxy/kdrive backend? -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository python-x2go. commit b75c802a66dec4c6679f256582cdd98a7ddc393e Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Sep 2 16:25:46 2021 +0200 debian/*: Drop Python2 builds. --- debian/changelog | 2 ++ debian/control | 40 ---------------------------------------- debian/python-x2go.docs | 3 --- debian/python-x2go.examples | 1 - debian/python-x2go.install | 1 - 5 files changed, 2 insertions(+), 45 deletions(-) diff --git a/debian/changelog b/debian/changelog index 4d64b70..8fe550a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,8 @@ python-x2go (0.6.1.4-0x2go1) UNRELEASED; urgency=medium is the currently best thinkable approach). - x2go/client.py: Catch some (more) x2go_exceptions.X2GoSessionRegistryException occurrences. + * debian/*: + + Drop Python2 builds. -- X2Go Release Manager <git-admin@x2go.org> Wed, 01 Jan 2020 20:25:50 +0100 diff --git a/debian/control b/debian/control index d2c78a6..93734c1 100644 --- a/debian/control +++ b/debian/control @@ -8,11 +8,6 @@ Uploaders: Build-Depends: cdbs, debhelper (>= 9~), - python (>= 2.6.6-3~), - python-setuptools, - python-gevent, - python-paramiko, - python-xlib, python3, python3-setuptools, python3-gevent, @@ -27,43 +22,8 @@ Standards-Version: 4.1.0 Homepage: http://code.x2go.org/releases/source/python-x2go Vcs-Git: git://code.x2go.org/python-x2go.git Vcs-Browser: http://code.x2go.org/gitweb?p=python-x2go.git;a=summary -X-Python-Version: >= 2.6 X-Python3-Version: >= 3.4 -Package: python-x2go -Architecture: all -Depends: - ${python:Depends}, - ${misc:Depends}, - python-gevent (>= 0.13.6-0~), - python-paramiko (>= 1.15.1-0~), - python-requests, - python-simplejson, - python-xlib, - python-future, - nxproxy | qvd-nxproxy, - sshfs, -Recommends: - cups-bsd | lpr, - pulseaudio, - x2gokdriveclient, -Suggests: - telekinesis-client, - mteleplayer-clientside, -Description: Python module providing X2Go client API (Python 2) - X2Go is a server based computing environment with - - session resuming - - low bandwidth support - - session brokerage support - - client side mass storage mounting support - - client side printing support - - audio support - - authentication by smartcard and USB stick - . - This Python module allows you to integrate X2Go client - support into your Python applications by providing a - Python-based X2Go client API (for Python 2). - Package: python3-x2go Architecture: all Depends: diff --git a/debian/python-x2go.docs b/debian/python-x2go.docs deleted file mode 100644 index 537aa79..0000000 --- a/debian/python-x2go.docs +++ /dev/null @@ -1,3 +0,0 @@ -README -README.Trinity-Desktop -TODO diff --git a/debian/python-x2go.examples b/debian/python-x2go.examples deleted file mode 100644 index e39721e..0000000 --- a/debian/python-x2go.examples +++ /dev/null @@ -1 +0,0 @@ -examples/* diff --git a/debian/python-x2go.install b/debian/python-x2go.install deleted file mode 100644 index b2cc136..0000000 --- a/debian/python-x2go.install +++ /dev/null @@ -1 +0,0 @@ -usr/lib/python2* -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/python-x2go.git