This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-cli. from 275b7f1 pyhoca-cli: Avoid duplicate files in openSUSE/SLES. new b8c600e formalistic code cleanup using pyflakes new 422ea20 release 0.5.0.0 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 | 10 ++-------- pyhoca-cli | 5 ----- pyhoca/cli/frontend.py | 8 +++----- setup.py | 4 +++- 4 files changed, 8 insertions(+), 19 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-cli. commit b8c600e2683e2ac41105d32f41b8114597471daf Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Oct 20 13:08:28 2014 +0200 formalistic code cleanup using pyflakes --- pyhoca-cli | 5 ----- pyhoca/cli/frontend.py | 8 +++----- setup.py | 4 +++- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/pyhoca-cli b/pyhoca-cli index 7ffecc5..5d4eb16 100755 --- a/pyhoca-cli +++ b/pyhoca-cli @@ -90,12 +90,8 @@ if _X2GOCLIENT_OS in ('Linux', 'Mac'): import setproctitle setproctitle.setproctitle("%s %s" % (PROG_NAME, " ".join(PROG_OPTIONS))) -import time -import pprint import argparse -import getpass import paramiko -from types import * # Python X2Go provides the current local username (OS independent) from x2go.defaults import CURRENT_LOCAL_USER as current_user @@ -257,7 +253,6 @@ Possible values for the --pack NX option are: p_compatopts = p.add_argument_group('compatibility options') for (p_group, opts) in ((p_x2goopts, x2go_options), (p_printopts, print_options), (p_brokeropts, broker_options), (p_actionopts, action_options), (p_debugopts, debug_options), (p_nxopts, nx_options), (p_backendopts, backend_options), (p_compatopts, compat_options)): - required = False for opt in opts: args = opt['args'] diff --git a/pyhoca/cli/frontend.py b/pyhoca/cli/frontend.py index 6344bb8..da9fa2f 100644 --- a/pyhoca/cli/frontend.py +++ b/pyhoca/cli/frontend.py @@ -27,15 +27,11 @@ import os import copy import time import getpass -from types import * from gevent import socket # for debugging import pprint -# a list of available X2Go print actions -from x2go.defaults import X2GO_PRINT_ACTIONS - # use current_home as user home dir current_home = os.path.expanduser("~") @@ -379,6 +375,9 @@ class PyHocaCLI(x2go.X2GoClient): _session_params = _session_profiles.to_session_params(_profile_id) print 'Profile ID: %s' % _profile_id print 'Profile Name: %s' % _session_params['profile_name'] + print 'Profile Configuration:' + pprint.pprint(_profile_config) + print 'Derived session parameters:' pprint.pprint(_session_params) print @@ -560,7 +559,6 @@ class PyHocaCLI(x2go.X2GoClient): try: session_duration = 0 - mounted = False while self._X2GoClient__session_ok(self.x2go_session_hash): time.sleep(2) diff --git a/setup.py b/setup.py index 234babb..c70c364 100755 --- a/setup.py +++ b/setup.py @@ -20,8 +20,10 @@ import os -from setuptools import setup, find_packages +from setuptools import setup +# silence pyflakes, __VERSION__ is properly assigned below... +__VERSION__ = '0.0.0.0' for line in file(os.path.join('pyhoca', 'cli', '__init__.py')).readlines(): if (line.startswith('__VERSION__')): exec(line.strip()) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-cli. commit 422ea2015ee9163c32c6673eb8509794f011b82a Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Oct 20 13:08:56 2014 +0200 release 0.5.0.0 --- debian/changelog | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5bc1114..d4c212c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -pyhoca-cli (0.5.0.0-0x2go1) UNRELEASED; urgency=low +pyhoca-cli (0.5.0.0-0x2go1) unstable; urgency=low * New upstream version (0.5.0.0): - Add cmdline option --broker-url. This adds X2Go Session Broker @@ -21,13 +21,7 @@ pyhoca-cli (0.5.0.0-0x2go1) UNRELEASED; urgency=low * pyhoca-cli.spec: + Adapt to building on openSUSE/SLES. - -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Mon, 10 Mar 2014 15:56:42 +0100 - -pyhoca-cli (0.4.0.3-0x2go1) UNRELEASED; urgency=low - - * Continue development... - - -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Wed, 08 Jan 2014 21:27:42 +0100 + -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Mon, 20 Oct 2014 13:08:31 +0200 pyhoca-cli (0.4.0.2-0x2go1) unstable; urgency=low -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git