This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from b4151fb setup.py: Don't run setup.py with use_2to3 anymore. new cc1b789 x2gobroker/defaults.py: Gracefully handle API documentation builds during offline builds. new 32e7155 debian/changelog: update from Git log 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 | 8 ++++++-- x2gobroker/defaults.py | 11 +++++++---- 2 files changed, 13 insertions(+), 6 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit 32e7155e34ce63a8078be73ef0bb970653ea676b Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Nov 15 15:34:20 2021 +0100 debian/changelog: update from Git log --- debian/changelog | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8b1e47d..4947dcd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,13 @@ x2gobroker (0.0.4.4-0x2go1) UNRELEASED; urgency=medium [ Mike Gabriel ] - * man/man1/x2gobroker.1: Fix apostrophe usage (drop preceding backslash). + * New upstream version (0.0.4.4): + - man/man1/x2gobroker.1: Fix apostrophe usage (drop preceding backslash). + - setup.py: Don't run setup.py with use_2to3 anymore. + - x2gobroker/defaults.py: Gracefully handle API documentation builds during + offline builds. - -- X2Go Release Manager <git-admin@x2go.org> Sun, 26 Apr 2020 18:08:12 +0200 + -- Mike Gabriel <sunweaver@debian.org> Mon, 15 Nov 2021 15:33:29 +0100 x2gobroker (0.0.4.3-0x2go1) unstable; urgency=medium -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit cc1b789e383dfcb8932daf05f1a22c0a1c998b0d Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Nov 15 15:33:16 2021 +0100 x2gobroker/defaults.py: Gracefully handle API documentation builds during offline builds. --- x2gobroker/defaults.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/x2gobroker/defaults.py b/x2gobroker/defaults.py index ec36301..0b697cc 100644 --- a/x2gobroker/defaults.py +++ b/x2gobroker/defaults.py @@ -204,10 +204,13 @@ elif iniconfig_loaded and iniconfig.has_option('daemon', 'X2GOBROKER_SSL_KEYFILE ### static / hard-coded defaults ### -if socket.gethostname().find('.') >= 0: - X2GOBROKER_HOSTNAME = socket.gethostname() -else: - X2GOBROKER_HOSTNAME = socket.gethostbyaddr(socket.gethostname())[0] +try: + if socket.gethostname().find('.') >= 0: + X2GOBROKER_HOSTNAME = socket.gethostname() + else: + X2GOBROKER_HOSTNAME = socket.gethostbyaddr(socket.gethostname())[0] +except socket.gaierror: + X2GOBROKER_HOSTNAME = 'localhost' # the home directory of the user that the daemon/cgi runs as X2GOBROKER_HOME = os.path.normpath(os.path.expanduser('~{broker_uid}'.format(broker_uid=X2GOBROKER_DAEMON_USER))) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git