2011-07-08 15:21:12 +02:00
|
|
|
#
|
|
|
|
# spec file for package python-gunicorn
|
|
|
|
#
|
2015-05-07 13:57:54 +02:00
|
|
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
2011-07-08 15:21:12 +02:00
|
|
|
#
|
|
|
|
# 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.
|
2012-03-22 19:10:28 +01:00
|
|
|
|
2011-07-08 15:21:12 +02:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2012-03-22 19:10:28 +01:00
|
|
|
|
2011-07-06 12:36:04 +02:00
|
|
|
Name: python-gunicorn
|
2015-05-07 13:57:54 +02:00
|
|
|
Version: 19.3.0
|
2011-09-23 15:00:33 +02:00
|
|
|
Release: 0
|
2012-03-10 17:09:05 +01:00
|
|
|
Summary: WSGI HTTP Server for UNIX
|
2012-03-22 19:10:28 +01:00
|
|
|
License: MIT
|
2011-09-23 15:00:33 +02:00
|
|
|
Group: Development/Languages/Python
|
2012-03-22 19:10:28 +01:00
|
|
|
Url: http://gunicorn.org
|
2011-09-23 15:00:33 +02:00
|
|
|
Source: http://pypi.python.org/packages/source/g/gunicorn/gunicorn-%{version}.tar.gz
|
2013-06-17 14:51:27 +02:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-Sphinx
|
2011-09-23 15:00:33 +02:00
|
|
|
BuildRequires: python-devel
|
2015-05-07 13:57:54 +02:00
|
|
|
BuildRequires: python-mock
|
2013-06-17 14:51:27 +02:00
|
|
|
BuildRequires: python-pytest
|
2015-05-07 13:57:54 +02:00
|
|
|
BuildRequires: python-pytest-cov
|
2013-10-24 13:06:27 +02:00
|
|
|
BuildRequires: python-setuptools
|
2012-03-10 17:09:05 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%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()")}
|
2015-05-07 13:57:54 +02:00
|
|
|
BuildRequires: python-unittest2
|
2012-03-10 17:09:05 +01:00
|
|
|
%else
|
2011-09-23 15:00:33 +02:00
|
|
|
BuildArch: noarch
|
|
|
|
%endif
|
2011-07-06 12:36:04 +02:00
|
|
|
|
|
|
|
%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
|
2012-03-10 20:39:31 +01:00
|
|
|
Summary: WSGI HTTP Server for UNIX - Documentation
|
2011-07-06 12:36:04 +02:00
|
|
|
Group: Documentation/Other
|
|
|
|
Requires: %{name} = %{version}
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
This package contains Gunicorn documentation in reST and HTML formats.
|
|
|
|
|
|
|
|
%prep
|
2011-09-23 15:00:33 +02:00
|
|
|
%setup -q -n gunicorn-%{version}
|
2015-05-07 13:57:54 +02:00
|
|
|
# remove version pinning for test requirements
|
|
|
|
sed -i 's/==.*//' requirements_test.txt
|
2011-07-06 12:36:04 +02:00
|
|
|
|
|
|
|
%build
|
2011-07-09 16:12:53 +02:00
|
|
|
python setup.py build
|
2011-07-06 12:36:04 +02:00
|
|
|
|
|
|
|
%install
|
2011-09-23 15:00:33 +02:00
|
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
2015-05-07 13:57:54 +02:00
|
|
|
# install documentation and examples
|
|
|
|
mkdir -p %{buildroot}%{_docdir}/%{name}
|
|
|
|
cp -r LICENSE NOTICE README.rst THANKS examples %{buildroot}%{_docdir}/%{name}
|
2013-01-15 15:12:31 +01:00
|
|
|
cd docs && make SPHINXBUILD=sphinx-build html && rm -r build/html/.buildinfo # Generate HTML documentation
|
2015-05-07 13:57:54 +02:00
|
|
|
cp -r build/html %{buildroot}%{_docdir}/%{name}
|
|
|
|
|
|
|
|
%fdupes %{buildroot}%{_prefix}
|
2011-07-06 12:36:04 +02:00
|
|
|
|
2011-09-23 15:00:33 +02:00
|
|
|
%check
|
2015-05-07 13:57:54 +02:00
|
|
|
python setup.py -q test
|
2011-07-06 12:36:04 +02:00
|
|
|
|
2011-09-23 15:00:33 +02:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2015-05-07 13:57:54 +02:00
|
|
|
%exclude %{_docdir}/%{name}/html
|
|
|
|
%exclude %{_docdir}/%{name}/examples
|
|
|
|
%doc %dir %{_docdir}/%{name}/
|
|
|
|
%doc %{_docdir}/%{name}/*
|
2011-09-23 15:00:33 +02:00
|
|
|
%{_bindir}/gunicorn*
|
|
|
|
%{python_sitelib}/*
|
2011-07-06 12:36:04 +02:00
|
|
|
|
|
|
|
%files doc
|
|
|
|
%defattr(-,root,root,-)
|
2015-05-07 13:57:54 +02:00
|
|
|
%doc %dir %{_docdir}/%{name}/html
|
|
|
|
%doc %dir %{_docdir}/%{name}/examples
|
|
|
|
%doc %{_docdir}/%{name}/html/*
|
|
|
|
%doc %{_docdir}/%{name}/examples/*
|
2011-07-06 12:36:04 +02:00
|
|
|
|
|
|
|
%changelog
|