This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from 300e381 pyhoca/wxgui/frontend.py: Update versioning info on X2Go Server with support for PyHoca's way of handling SHADOW sessions. new b517a63 pyhoca-gui.spec: use %{__python2*} instead of %{__python*} on FC29+. new 8bc1bc6 pyhoca-gui.spec: comment out glob-including everything in sitelib. 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 | 8 ++++++++ pyhoca-gui.spec | 15 ++++++++++++++- 2 files changed, 22 insertions(+), 1 deletion(-) -- 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 b517a63e901dadf9ad5b36f3edb431b4d67498fc Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Nov 9 14:28:00 2018 +0100 pyhoca-gui.spec: use %{__python2*} instead of %{__python*} on FC29+. --- debian/changelog | 5 +++++ pyhoca-gui.spec | 13 +++++++++++++ 2 files changed, 18 insertions(+) diff --git a/debian/changelog b/debian/changelog index 4e3e83a..c821b05 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,11 @@ pyhoca-gui (0.5.0.8-0x2go1) UNRELEASED; urgency=medium * New upstream version (0.5.0.8): - po/fi.po: update Finnish translation file. + [ Mihai Moldovan ] + * New upstream version (0.5.0.8): + * pyhoca-gui.spec: + - Use %{__python2*} instead of %{__python*} on FC29+. + -- X2Go Release Manager <git-admin@x2go.org> Sun, 24 Sep 2017 11:28:17 +0200 pyhoca-gui (0.5.0.7-0x2go1) unstable; urgency=medium diff --git a/pyhoca-gui.spec b/pyhoca-gui.spec index 1880745..479ab24 100644 --- a/pyhoca-gui.spec +++ b/pyhoca-gui.spec @@ -67,12 +67,21 @@ notification area and allows multiple X2Go session handling. %build +%if 0%{?fedora} >= 29 +%{__python2} setup.py build_i18n +%{__python2} setup.py build +%else %{__python} setup.py build_i18n %{__python} setup.py build +%endif %install +%if 0%{?fedora} >= 29 +%{__python2} setup.py install -O1 --skip-build --root %{buildroot} +%else %{__python} setup.py install -O1 --skip-build --root %{buildroot} +%endif mkdir -p %{buildroot}%{_bindir}/ cp -p %{name} %{buildroot}%{_bindir}/ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop @@ -98,7 +107,11 @@ fi %defattr(-,root,root) %doc COPYING README TODO %{_bindir}/%{name} +%if 0%{?fedora} >= 29 +%{python2_sitelib}/* +%else %{python_sitelib}/* +%endif %{_datadir}/applications/%{name}.desktop %{_datadir}/icons/PyHoca/ %{_datadir}/pixmaps/pyhoca_x2go-logo-ubuntu.svg -- 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 8bc1bc6f01146ab90b56e9c1ec013e37e5630860 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Nov 9 14:31:39 2018 +0100 pyhoca-gui.spec: 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. --- debian/changelog | 3 +++ pyhoca-gui.spec | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index c821b05..86155ac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,9 @@ pyhoca-gui (0.5.0.8-0x2go1) UNRELEASED; urgency=medium * New upstream version (0.5.0.8): * pyhoca-gui.spec: - Use %{__python2*} instead of %{__python*} on FC29+. + - 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. -- 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 479ab24..498ce30 100644 --- a/pyhoca-gui.spec +++ b/pyhoca-gui.spec @@ -108,9 +108,9 @@ fi %doc COPYING README TODO %{_bindir}/%{name} %if 0%{?fedora} >= 29 -%{python2_sitelib}/* +#%{python2_sitelib}/* %else -%{python_sitelib}/* +#%{python_sitelib}/* %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