File python-PasteScript.spec of Package python-PasteScript
#
# spec file for package python-PasteScript
#
# Copyright (c) 2012 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: python-PasteScript
Version: 1.7.5
Release: 0
Url: http://pythonpaste.org/script/
Summary: A pluggable command-line frontend to setup package file layouts
License: MIT
Group: Development/Languages/Python
Source: http://pypi.python.org/packages/source/P/PasteScript/PasteScript-%{version}.tar.gz
Patch0: ianb-pastescript-a19e462769b4.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python-PasteDeploy
BuildRequires: python-devel
BuildRequires: python-distribute
%if 0%{?suse_version} && 0%{?suse_version} <= 1210
Requires: python-cheetah
%else
Requires: python-Cheetah
%endif
Requires: python-Paste >= 1.3
Requires: python-PasteDeploy
Requires: python-distribute
Provides: python-pastescript = %{version}
Obsoletes: python-pastescript < %{version}
%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()")}
%else
BuildArch: noarch
%endif
%description
This is a pluggable command-line tool. It includes some built-in features:
* Create file layouts for packages.
* Serving up web applications, with configuration based on paste.deploy
%prep
%setup -q -n PasteScript-%{version}
%patch0
mv docs/_build docs/html # Proper name for HTML docs
sed -i "1d" tests/test_logging_config.py # Fix non-executable script
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
rm -rf %{buildroot}%{python_sitelib}/tests # Remove wrongly installed tests
%files
%defattr(-,root,root,-)
%doc docs/*
%{_bindir}/paster
%{python_sitelib}/*
%changelog