This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from 8bc1bc6 pyhoca-gui.spec: comment out glob-including everything in sitelib. new 8e0112d misc: switch to /usr/bin/env python2. new 75229d1 pyhoca-gui.spec: pull files out of sitelib more selectively. 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 ++ icon2exe.py | 2 +- nsis_template.py | 2 +- pyhoca-gui | 2 +- pyhoca-gui.spec | 6 ++++-- pyhoca/wxgui/defaults.py | 2 +- setup.py | 2 +- 7 files changed, 11 insertions(+), 7 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 8e0112df1546590434e279603f3c0bbcedf37374 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Nov 9 14:59:29 2018 +0100 misc: switch to /usr/bin/env python2. --- debian/changelog | 1 + icon2exe.py | 2 +- nsis_template.py | 2 +- pyhoca-gui | 2 +- pyhoca/wxgui/defaults.py | 2 +- setup.py | 2 +- 6 files changed, 6 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 86155ac..10aa982 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ pyhoca-gui (0.5.0.8-0x2go1) UNRELEASED; urgency=medium [ Mihai Moldovan ] * New upstream version (0.5.0.8): + - misc: switch to /usr/bin/env python2. * pyhoca-gui.spec: - Use %{__python2*} instead of %{__python*} on FC29+. - Comment out glob-including everything in sitelib. Fedora packaging specs diff --git a/icon2exe.py b/icon2exe.py index c066575..d0fdf9b 100644 --- a/icon2exe.py +++ b/icon2exe.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python2 # Copyright (C) 2005, Giovanni Bajo # Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. # diff --git a/nsis_template.py b/nsis_template.py index 0839c50..4c338d2 100644 --- a/nsis_template.py +++ b/nsis_template.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # -*- coding: utf-8 -*- # Copyright (C) 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/pyhoca-gui b/pyhoca-gui index 6f4961f..853de5d 100755 --- a/pyhoca-gui +++ b/pyhoca-gui @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # -*- coding: utf-8 -*- # Copyright (C) 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/pyhoca/wxgui/defaults.py b/pyhoca/wxgui/defaults.py index b37d43d..fc7ec07 100644 --- a/pyhoca/wxgui/defaults.py +++ b/pyhoca/wxgui/defaults.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # -*- coding: utf-8 -*- # Copyright (C) 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> diff --git a/setup.py b/setup.py index ee624d7..89ff887 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # -*- coding: utf-8 -*- # Copyright (C) 2010-2016 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de> -- 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 75229d1d3c4576566a0f7144497cb842029f5825 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Nov 9 15:02:01 2018 +0100 pyhoca-gui.spec: pull files out of sitelib more selectively. --- debian/changelog | 1 + pyhoca-gui.spec | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 10aa982..81deefc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,7 @@ pyhoca-gui (0.5.0.8-0x2go1) UNRELEASED; urgency=medium - Comment out glob-including everything in sitelib. Fedora packaging specs recommend not to do this, so let builds fail to pull them in more selectively later. + - Pull files out of sitelib more selectively. -- X2Go Release Manager <git-admin@x2go.org> Sun, 24 Sep 2017 11:28:17 +0200 diff --git a/pyhoca-gui.spec b/pyhoca-gui.spec index 498ce30..f46a20b 100644 --- a/pyhoca-gui.spec +++ b/pyhoca-gui.spec @@ -108,9 +108,11 @@ fi %doc COPYING README TODO %{_bindir}/%{name} %if 0%{?fedora} >= 29 -#%{python2_sitelib}/* +%{python2_sitelib}/PyHoca* +%{python2_sitelib}/pyhoca/* %else -#%{python_sitelib}/* +%{python_sitelib}/PyHoca* +%{python_sitelib}/pyhoca/* %endif %{_datadir}/applications/%{name}.desktop %{_datadir}/icons/PyHoca/ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git