File python-wsgiutils.spec of Package python-wsgiutils
%define modname WSGIUtils
Name: python-wsgiutils
Version: 0.7
Release: 1
Summary: WSGI Utils are a Collection of Useful Libraries for Use in a WSGI Environnment
URL: http://www.owlfish.com/software/wsgiutils/
License: BSD
Group: Development/Libraries/Python
Source: %{modname}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-buildroot
%{py_requires}
BuildRequires: python-devel
%description
WSGI Utils are a package of standalone utility libraries that ease the
development of simple WSGI programs.
Authors:
--------
Colin Stewart <colin@owlfish.com>
%prep
%setup -q -n %{modname}-%{version}
%build
export CFLAGS="$RPM_OPT_FLAGS"
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT --record-rpm=INSTALLED_FILES
%clean
rm -rf %{buildroot}
%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc Changes.txt LICENSE.txt README.txt documentation/*
%changelog
* Fri Nov 14 2008 - Ciaran Farrell <cfarrell1980@gmail.com> - 0.7-1
- replaced --record with --record-rpm as per bnc#441794
* Sun Nov 04 2007 - James Oakley <jfunk@funktronics.ca> - 0.7-1
- Initial release