File python3-bpython.spec of Package python3-bpython

#
# spec file for package python3-bpython
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:           python3-bpython
Version:        0.13
Release:        0
Url:            http://www.bpython-interpreter.org
Summary:        Fancy Curses Interface to the Python Interactive Interpreter
License:        MIT
Group:          Development/Languages/Python
Source:         http://www.bpython-interpreter.org/releases/bpython-%{version}.tar.gz
BuildRequires:  python3-devel
BuildRequires:  python3-setuptools
BuildRequires:  update-desktop-files
# Documentation requirements:
BuildRequires:  python3-Sphinx
# Test requirements:
BuildRequires:  python3-curses
BuildRequires:  python3-mock
BuildRequires:  python3-nose
Requires:       python3-Pygments
Requires:       python3-curses
Requires:       python3-pyparsing
Requires:       python3-setuptools
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch:      noarch

%description
Bpython is an enhanced Python interactive interpreter that uses curses
and provides the following main features: in-line syntax highlighting;
readline-like autocompletion with suggestions displayed as you type; expected
argument specification for functions; a handy pastebin function to quickly
submit your code and return a URL. Its goal is to bring together a few handy
ideas to enhance the standard interpreter without getting carried away.

%prep
%setup -q -n bpython-%{version}
# Drop non-existing icon reference
sed -i -e "/Icon.*/d" \
       -e "s/bpython/bpython3/g" data/bpython.desktop
mv data/bpython.desktop data/bpython3.desktop
sed -i -e "s/bpython =/bpython-%{py3_ver} =/" \
       -e "s/bpython-curtsies =/bpython-curtsies-%{py3_ver} =/" \
       -e "s/bpython-gtk =/bpython-gtk-%{py3_ver} =/" \
       -e "s/bpython-urwid =/bpython-urwid-%{py3_ver} =/" \
       -e "s/bpython.1/bpython-%{py3_ver}.1/" \
       -e "s/bpython.desktop/bpython3.desktop/" \
       -e "s/bpython-config.5/bpython-config-%{py3_ver}.5/" setup.py
sed -i -e "s/, 'bpython'/, 'bpython-%{py3_ver}'/" \
       -e "s/, 'bpython-config'/, 'bpython-config-%{py3_ver}'/" doc/sphinx/source/conf.py

%build
python3 setup.py build
python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo # HTML documentation

%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
ln -s %{_bindir}/bpython-%{py3_ver} %{buildroot}%{_bindir}/bpython
ln -s %{_bindir}/bpython-curtsies-%{py3_ver} %{buildroot}%{_bindir}/bpython-curtsies
ln -s %{_bindir}/bpython-gtk-%{py3_ver} %{buildroot}%{_bindir}/bpython-gtk
ln -s %{_bindir}/bpython-urwid-%{py3_ver} %{buildroot}%{_bindir}/bpython-urwid
ln -s %{_mandir}/man1/bpython-%{py3_ver}.1 %{buildroot}%{_mandir}/man1/bpython.1
ln -s %{_mandir}/man5/bpython-config-%{py3_ver}.5 %{buildroot}%{_mandir}/man5/bpython-config.5
rm -r %{buildroot}%{python3_sitelib}/bpython/test # Don't ship tests
%if 0%{?suse_version}
%suse_update_desktop_file -G bpython -r bpython3 Development IDE
%endif

#NOTE(saschpe): Check the one failing test
#%%check
#nosetests

%pre
# Since /usr/bin/pybabel became ghosted to be used with update-alternatives, we have to get rid
# of the old binary resulting from the non-update-alternativies-ified package:
[[ ! -L %{_bindir}/bpython ]] && rm -f %{_bindir}/bpython 
[[ ! -L %{_bindir}/bpython-curtsies ]] && rm -f %{_bindir}/bpython-curtsies 
[[ ! -L %{_bindir}/bpython-gtk ]] && rm -f %{_bindir}/bpython-gtk
[[ ! -L %{_bindir}/bpython-urwid ]] && rm -f %{_bindir}/bpython-urwid 
[[ ! -L %{_mandir}/man1/bpython.1.gz ]] && rm -f %{_mandir}/man1/bpython.1.gz
[[ ! -L %{_mandir}/man5/bpython-config.5.gz ]] && rm -f %{_mandir}/man5/bpython-config.5.gz
exit 0

%post
update-alternatives \
    --install %{_bindir}/bpython bpython %{_bindir}/bpython-%{py3_ver} 30 \
    --slave %{_bindir}/bpython-curtsies bpython-curtsies %{_bindir}/bpython-curtsies-%{py3_ver} \
    --slave %{_bindir}/bpython-gtk bpython-gtk %{_bindir}/bpython-gtk-%{py3_ver} \
    --slave %{_bindir}/bpython-urwid bpython-urwid %{_bindir}/bpython-urwid-%{py3_ver} \
    --slave %{_mandir}/man1/bpython.1.gz bpython.1 %{_mandir}/man1/bpython-%{py3_ver}.1.gz \
    --slave %{_mandir}/man5/bpython-config.5.gz bpython-config.5 %{_mandir}/man5/bpython-config-%{py3_ver}.5.gz

%preun
if [ $1 -eq 0 ] ; then
    update-alternatives --remove bpython %{_bindir}/bpython-%{py3_ver}
fi

%files
%defattr(-,root,root)
%doc AUTHORS CHANGELOG LICENSE ROADMAP TODO build/sphinx/html
%ghost %{_bindir}/bpython
%{_bindir}/bpython-%{py3_ver}
%ghost %{_bindir}/bpython-curtsies
%{_bindir}/bpython-curtsies-%{py3_ver}
%ghost %{_bindir}/bpython-gtk
%{_bindir}/bpython-gtk-%{py3_ver}
%ghost %{_bindir}/bpython-urwid
%{_bindir}/bpython-urwid-%{py3_ver}
%{python3_sitelib}/bpdb
%{python3_sitelib}/bpython-%{version}-py%{py3_ver}.egg-info
%{python3_sitelib}/bpython
%ghost %{_mandir}/man1/bpython.1.gz
%{_mandir}/man1/bpython-%{py3_ver}.1.gz
%ghost %{_mandir}/man5/bpython-config.5.gz
%{_mandir}/man5/bpython-config-%{py3_ver}.5.gz
%{_datadir}/applications/bpython3.desktop

%changelog
openSUSE Build Service is sponsored by