775b644
%global pypi_name pbr
775b644
775b644
Name:           python-%{pypi_name}
7421937
Version:        0.5.10
775b644
Release:        1%{?dist}
775b644
Summary:        Python Build Reasonableness
775b644
775b644
License:        ASL 2.0
775b644
URL:            http://pypi.python.org/pypi/pbr
775b644
Source0:        http://pypi.python.org/packages/source/p/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
775b644
BuildArch:      noarch
775b644
 
775b644
BuildRequires:  python2-devel
775b644
BuildRequires:  python-d2to1
775b644
BuildRequires:  python-sphinx
775b644
Requires:       python-setuptools_git
775b644
BuildRequires:  python-setuptools_git
056c4cc
BuildRequires:  python-testtools
775b644
775b644
%description
775b644
PBR is a library that injects some useful and sensible default behaviors into 
775b644
your setuptools run. It started off life as the chunks of code that were copied
775b644
between all of the OpenStack projects. Around the time that OpenStack hit 18 
775b644
different projects each with at least 3 active branches, it seems like a good 
775b644
time to make that code into a proper re-usable library.
775b644
775b644
%prep
775b644
%setup -q -n %{pypi_name}-%{version}
775b644
# Remove bundled egg-info
775b644
rm -rf %{pypi_name}.egg-info
775b644
775b644
775b644
%build
775b644
%{__python} setup.py build
775b644
775b644
# generate html docs 
775b644
sphinx-build doc/source html
775b644
# remove the sphinx-build leftovers
775b644
rm -rf html/.{doctrees,buildinfo}
775b644
775b644
775b644
%install
775b644
%{__python} setup.py install --skip-build --root %{buildroot}
775b644
775b644
%check
775b644
%{__python} setup.py test
775b644
775b644
%files
775b644
%doc html README.rst LICENSE
775b644
%{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
775b644
%{python_sitelib}/%{pypi_name}
7421937
775b644
%changelog
7421937
* Fri May 17 2013 Matthias Runge <mrunge@redhat.com> - 0.5.10-1
7421937
- update to 0.5.10 (rhbz#962132)
7421937
775b644
* Thu Apr 25 2013 Matthias Runge <mrunge@redhat.com> - 0.5.8-1
775b644
- Initial package.