This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from aca8192 debian/control: Update versioned D (pyhoca-gui): python3-x2go (>= 0.6.1.2). We need the session profile writing fix shipped with 0.6.1.2. new c11b7fb Version bump to 0.6.0.0. new 5852895 debian/control: Bump DH compat level to version 9. + Rework packaging, use pybuild. 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 | 2 ++ debian/compat | 2 +- debian/control | 10 +++++----- debian/rules | 5 +++-- man/man1/pyhoca-gui.1 | 2 +- pyhoca-gui.spec | 2 +- pyhoca/wxgui/__init__.py | 2 +- 7 files changed, 14 insertions(+), 11 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit c11b7fb5a8a06fa52799962ea6a9921ebb1a3c0c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Dec 2 21:53:42 2019 +0100 Version bump to 0.6.0.0. --- man/man1/pyhoca-gui.1 | 2 +- pyhoca-gui.spec | 2 +- pyhoca/wxgui/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/man/man1/pyhoca-gui.1 b/man/man1/pyhoca-gui.1 index a8f07a3..6df81f2 100644 --- a/man/man1/pyhoca-gui.1 +++ b/man/man1/pyhoca-gui.1 @@ -6,7 +6,7 @@ \\$2 \(la\\$1\(ra\\$3 .. .if \n(.g .mso www.tmac -.TH pyhoca-gui 1 "Nov 2019" "Version 0.5.1.1" "X2Go Application" +.TH pyhoca-gui 1 "Nov 2019" "Version 0.6.0.0" "X2Go Application" .SH NAME pyhoca-gui \- graphical X2Go client applet written in Python .SH SYNOPSIS diff --git a/pyhoca-gui.spec b/pyhoca-gui.spec index b1dbc6a..70b2e20 100644 --- a/pyhoca-gui.spec +++ b/pyhoca-gui.spec @@ -1,5 +1,5 @@ Name: pyhoca-gui -Version: 0.5.1.1 +Version: 0.6.0.0 Release: 0.0x2go1%{?dist} Summary: Graphical X2Go client written in (wx)Python diff --git a/pyhoca/wxgui/__init__.py b/pyhoca/wxgui/__init__.py index 8a71ba8..ee23174 100644 --- a/pyhoca/wxgui/__init__.py +++ b/pyhoca/wxgui/__init__.py @@ -18,4 +18,4 @@ # Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -__VERSION__ = '0.5.1.1' +__VERSION__ = '0.6.0.0' -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit 58528959f807ecfb673c4a536680c8187b7284cc Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Dec 2 22:06:43 2019 +0100 debian/control: Bump DH compat level to version 9. + Rework packaging, use pybuild. --- debian/changelog | 2 ++ debian/compat | 2 +- debian/control | 10 +++++----- debian/rules | 5 +++-- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/debian/changelog b/debian/changelog index 92f32e7..2a9f20a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,8 @@ pyhoca-gui (0.6.0.0-0x2go1) UNRELEASED; urgency=medium - __future__ imports need to be at the very top of a .py file. * debian/control: + Switch from Py2 to Py3 (B-Ds and Ds). + + Bump DH compat level to version 9. + + Rework packaging, use pybuild. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Mon, 02 Dec 2019 17:10:19 +0100 diff --git a/debian/compat b/debian/compat index 7f8f011..ec63514 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -7 +9 diff --git a/debian/control b/debian/control index 97922ff..dbf4b23 100644 --- a/debian/control +++ b/debian/control @@ -7,13 +7,13 @@ Uploaders: Oleksandr Shneyder <oleksandr.shneyder@obviously-nice.de>, Mihai Moldovan <ionic@ionic.de>, Build-Depends: - debhelper (>= 7.0.50~), + debhelper (>= 9~), man2html-base | man2html, - python3 (>=3.6~), + gnome-colors-common, + python3-all (>= 3.4), python3-setuptools, - python3-support | dh-python, python3-distutils-extra, - gnome-colors-common, + dh-python, Standards-Version: 3.9.6 Homepage: https://code.x2go.org/releases/source/pyhoca-gui Vcs-Git: git://code.x2go.org/pyhoca-gui.git @@ -24,7 +24,7 @@ Package: pyhoca-gui Architecture: all Depends: ${misc:Depends}, - python3, + ${python3:Depends}, python3-x2go (>=0.6.1.2-0~), python3-argparse, python3-gi, diff --git a/debian/rules b/debian/rules index 9f70949..a19c743 100755 --- a/debian/rules +++ b/debian/rules @@ -3,10 +3,11 @@ # Based on sample debian/rules file - for GNU Hello (1.3). # Copyright 2010-2019 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> -WITH_PYTHON2 = $(shell test -f /usr/bin/dh_python2 && echo "--with python2") +export PYVER=$(shell py3versions -d) +export PYBUILD_NAME=pyhoca-gui %: - dh ${@} ${WITH_PYTHON2} + dh ${@} --with python3 --buildsystem pybuild override_dh_auto_build: cp po/PyHoca-GUI.pot po/PyHoca-GUI.pot.bak -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git