This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-cli. from 20a1cc9 Catch HOOK_no_such_command and bail out if the server does not know how to execute the given session command. new d398725 misc: copyright update. new 755ae8f man/man1/pyhoca-cli.1: pre-release date update. 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: Makefile.docupload | 2 +- README | 2 +- TODO | 2 +- debian/changelog | 2 ++ debian/copyright | 4 ++-- debian/rules | 2 +- man/man1/pyhoca-cli.1 | 2 +- pyhoca-cli | 2 +- pyhoca/__init__.py | 2 +- pyhoca/cli/frontend.py | 2 +- setup.py | 2 +- 11 files changed, 13 insertions(+), 11 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/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 d3987254e484d82fb2c7e8274dc8c1c26e4b51d7 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Dec 3 01:19:14 2018 +0100 misc: copyright update. --- Makefile.docupload | 2 +- README | 2 +- TODO | 2 +- debian/changelog | 1 + debian/copyright | 4 ++-- debian/rules | 2 +- pyhoca-cli | 2 +- pyhoca/__init__.py | 2 +- pyhoca/cli/frontend.py | 2 +- setup.py | 2 +- 10 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Makefile.docupload b/Makefile.docupload index 3085776..cfb120e 100644 --- a/Makefile.docupload +++ b/Makefile.docupload @@ -1,6 +1,6 @@ #!/usr/bin/make -f # Makefile.docupload file - for pyhoca-cli -# Copyright 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, AGPLv3+ applies to this file +# Copyright 2010-2018 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, AGPLv3+ applies to this file VERSION=`head -n1 debian/changelog | sed 's,.*(\(.*\)).*,\1,' | cut -d"-" -f1` DOC_HOST=code.x2go.org diff --git a/README b/README index 9c1b0e5..7db850e 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -pyhoca-cli - Copyright (C) 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +pyhoca-cli - Copyright (C) 2010-2018 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Contributors: 2010, Jörg Sawatzki <joerg.sawatzki@web.de> diff --git a/TODO b/TODO index 616f738..5c729bd 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,4 @@ -pyhoca-cli - Copyright (C) 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +pyhoca-cli - Copyright (C) 2010-2018 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Contributors: 2010, Jörg Sawatzki <joerg.sawatzki@web.de> diff --git a/debian/changelog b/debian/changelog index 0141ac6..cb660b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,6 +20,7 @@ pyhoca-cli (0.6.0.1-0x2go1) UNRELEASED; urgency=medium - setup.py: we actually also need the version information, so import it. - setup.py: need to import the sys module, not just version_info into global namespace. + - misc: copyright update. * pyhoca-cli.spec: - Build with Python 2 on CentOS, drop python3-argparse dependency (part of stdlib). diff --git a/debian/copyright b/debian/copyright index 17c2542..fed6178 100644 --- a/debian/copyright +++ b/debian/copyright @@ -4,11 +4,11 @@ Upstream-Contact: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Source: http://wiki.x2go.org Files: * -Copyright: 2010-2016, Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +Copyright: 2010-2018, Mike Gabriel <mike.gabriel@das-netzwerkteam.de> License: AGPL-3+ Files: debian/* -Copyright: 2010-2016, Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +Copyright: 2010-2018, Mike Gabriel <mike.gabriel@das-netzwerkteam.de> License: AGPL-3+ License: AGPL-3+ diff --git a/debian/rules b/debian/rules index e03da22..41fa4ee 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f # debian/rules file - for pyhoca-cli # Based on sample debian/rules file - for GNU Hello (1.3). -# Copyright 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright 2010-2018 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> %: dh ${@} --with=python3 --buildsystem=pybuild diff --git a/pyhoca-cli b/pyhoca-cli index b5256fe..a097ae5 100755 --- a/pyhoca-cli +++ b/pyhoca-cli @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- coding: utf-8 -*- -# Copyright (C) 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2018 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # PyHoca CLI is free software; you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/pyhoca/__init__.py b/pyhoca/__init__.py index d0af13d..3576f8d 100644 --- a/pyhoca/__init__.py +++ b/pyhoca/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2018 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # PyHoca CLI is free software; you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/pyhoca/cli/frontend.py b/pyhoca/cli/frontend.py index 072c915..fb68379 100644 --- a/pyhoca/cli/frontend.py +++ b/pyhoca/cli/frontend.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2018 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # PyHoca CLI is free software; you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/setup.py b/setup.py index b30d8e6..8b3d44d 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -# Copyright (C) 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> +# Copyright (C) 2010-2018 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> # # PyHoca is free software; you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by -- Alioth's /home/x2go-admin/maintenancescripts/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 755ae8f4596eb206b1f7b287758362a484bdfbe8 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Dec 3 01:20:46 2018 +0100 man/man1/pyhoca-cli.1: pre-release date update. --- debian/changelog | 1 + man/man1/pyhoca-cli.1 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index cb660b3..80aa81b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,6 +21,7 @@ pyhoca-cli (0.6.0.1-0x2go1) UNRELEASED; urgency=medium - setup.py: need to import the sys module, not just version_info into global namespace. - misc: copyright update. + - man/man1/pyhoca-cli.1: pre-release date update. * pyhoca-cli.spec: - Build with Python 2 on CentOS, drop python3-argparse dependency (part of stdlib). diff --git a/man/man1/pyhoca-cli.1 b/man/man1/pyhoca-cli.1 index 72dfe61..70afbda 100644 --- a/man/man1/pyhoca-cli.1 +++ b/man/man1/pyhoca-cli.1 @@ -5,7 +5,7 @@ \\$2 \(la\\$1\(ra\\$3 .. .if \n(.g .mso www.tmac -.TH pyhoca-cli 1 "Sep 2018" "Version 0.6.0.1" "X2Go Application" +.TH pyhoca-cli 1 "Dec 2018" "Version 0.6.0.1" "X2Go Application" .SH NAME pyhoca-cli \- X2Go command line client written in Python .SH SYNOPSIS -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git