This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-cli. from c716bec pyhoca-cli.spec: Adjust python3-x2go versioned dependency. new 15298b5 debian/changelog: fix for previous version. new 716fd7c debian/changelog: fix for current version. new 1b3cd85 pyhoca-cli.spec: build with Python 2 on CentOS, drop python3-argparse dependency (part of stdlib). The 3 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.spec | 20 +++++++++++++++----- 2 files changed, 24 insertions(+), 6 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 15298b554a4d436ca79e4d66fa7e8c3ff78d7ddd Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Nov 10 09:39:21 2018 +0100 debian/changelog: fix for previous version. --- debian/changelog | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 3f3c2f0..528ab51 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,7 +9,8 @@ pyhoca-cli (0.6.0.1-0x2go1) UNRELEASED; urgency=medium pyhoca-cli (0.6.0.0-0x2go1) unstable; urgency=medium - * New upstream version (0.5.99.1). + [ Mike Gabriel ] + * New upstream version (0.6.0.0): - Port to Python3. (Fixes: #1287). - Add --force-password command line switch to override SSH key detection code. -- 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 716fd7c4994075ddb91ffe5f85c08fa3d72689ba Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Nov 10 09:45:51 2018 +0100 debian/changelog: fix for current version. --- debian/changelog | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/changelog b/debian/changelog index 528ab51..db495d6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,6 @@ pyhoca-cli (0.6.0.1-0x2go1) UNRELEASED; urgency=medium + [ Mike Gabriel ] * New upstream release (0.6.0.1): - Continue development... * debian/control: -- 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 1b3cd85b3442f59b0aac56b45e3a74e0055fe949 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Nov 10 09:40:59 2018 +0100 pyhoca-cli.spec: build with Python 2 on CentOS, drop python3-argparse dependency (part of stdlib). --- debian/changelog | 6 ++++++ pyhoca-cli.spec | 20 +++++++++++++++----- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index db495d6..35a92d0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,12 @@ pyhoca-cli (0.6.0.1-0x2go1) UNRELEASED; urgency=medium * debian/control: + Set Section: from "python" to "x11". More appropriate. + [ Mihai Moldovan ] + * New upstream version (0.6.0.1): + * pyhoca-cli.spec: + - Build with Python 2 on CentOS, drop python3-argparse + dependency (part of stdlib). + -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Wed, 19 Sep 2018 15:20:43 +0200 pyhoca-cli (0.6.0.0-0x2go1) unstable; urgency=medium diff --git a/pyhoca-cli.spec b/pyhoca-cli.spec index c2cc575..23921b9 100644 --- a/pyhoca-cli.spec +++ b/pyhoca-cli.spec @@ -13,14 +13,20 @@ URL: http://www.x2go.org/ Source0: http://code.x2go.org/releases/source/%{name}/%{name}-%{version}.tar.gz BuildArch: noarch +%if 0%{?el6} && 0%{?el7} +BuildRequires: python-devel +BuildRequires: python-setuptools +Requires: python-setproctitle +Requires: python-x2go >= 0.6.0.1 +%else BuildRequires: python3-devel -%if 0%{?suse_version} -BuildRequires: fdupes -%endif BuildRequires: python3-setuptools Requires: python3-setproctitle Requires: python3-x2go >= 0.6.0.1 -Requires: python3-argparse +%fi +%if 0%{?suse_version} +BuildRequires: fdupes +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -44,8 +50,12 @@ on desktops and thin clients. %build +%if 0%{?el6} && 0%{?el7} +# Make sure we stay on Python 2 on CentOS for the time being. Maybe not for EL8. +%{__python2} setup.py build +%else %{__python3} setup.py build - +%endif %install %{__python3} setup.py install -O1 --skip-build --prefix %{_prefix} --root %{buildroot} -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-cli.git