File bpython.spec of Package bpython
#
# spec file for package bpython
#
# Copyright (c) 2013 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: bpython
Version: 0.12
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
Source1: bpython.desktop
Source99: rpmlintrc
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python-devel
BuildRequires: update-desktop-files
BuildRequires: python-distribute
BuildRequires: python-Sphinx
Requires: python-curses
Requires: python-pygments
Requires: python-pyparsing
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%py_requires
%else
BuildArch: noarch
%endif
%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
sed -i '1d' bpython/keys.py # Remove she-bang line
%build
%{__python} setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
install -Dm0644 %{SOURCE1} %{buildroot}%{_datadir}/applications/%{name}.desktop
%if 0%{?suse_version}
%suse_update_desktop_file -r %{name} Development IDE
%endif
%files
%defattr(-,root,root)
%doc AUTHORS CHANGELOG LICENSE ROADMAP TODO
%{_bindir}/bpython*
%{python_sitelib}/*
%{_mandir}/man*/*.*.gz
%{_datadir}/applications/%{name}.desktop
%changelog