python-gunicorn/python-gunicorn.spec

59 lines
1.6 KiB
RPMSpec

%define mod gunicorn
Name: python-gunicorn
Version: 0.12.2
Release: 1
Summary: WSGI HTTP Server for UNIX
License: MIT
Group: Productivity/Networking/Web/Servers
Source: http://pypi.python.org/packages/source/g/%{mod}/%{mod}-%{version}.tar.gz
BuildRequires: python-setuptools python-devel >= 2.5
%py_requires
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
Url: http://gunicorn.org
Provides: %{mod} = %{version}
%description
Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a pre-fork
worker model ported from Ruby's Unicorn_ project. The Gunicorn server is broadly
compatible with various web frameworks, simply implemented, light on server
resource usage, and fairly speedy.
%package doc
Summary: Documentation for %{mod}
Group: Documentation/Other
License: MIT
Requires: %{name} = %{version}
%description doc
This package contains Gunicorn documentation in reST and HTML formats.
%prep
%setup -q -n %{mod}-%{version}
%build
%{__python} setup.py build
%install
%{__python} setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
%clean
rm -rf $RPM_BUILD_ROOT
%files -f INSTALLED_FILES
%defattr(-,root,root)
%dir %{python_sitelib}/gunicorn
%dir %{python_sitelib}/gunicorn/app
%dir %{python_sitelib}/gunicorn/http
%dir %{python_sitelib}/gunicorn/management
%dir %{python_sitelib}/gunicorn/management/commands
%dir %{python_sitelib}/gunicorn/workers
%files doc
%defattr(-,root,root,-)
%doc doc
%changelog