forked from pool/python-waitress
Dirk Mueller
892ccd9deb
- Update to version 1.4.4 (2020-06-01) + Fix an issue with keep-alive connections in which memory usage was higher than expected because output buffers were being reused across requests on a long-lived connection and each buffer would not be freed until it was full or the connection was closed. Buffers are now rotated per-request to stabilize their behavior. + See https://github.com/Pylons/waitress/pull/300 + Waitress threads have been updated to contain their thread number. This will allow loggers that use that information to print the thread that the log is coming from. + See https://github.com/Pylons/waitress/pull/302 - Switch to pytest, disable one test, that requires network - Create _multibuild for doc package It requires installation of base package now OBS-URL: https://build.opensuse.org/request/show/839249 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-waitress?expand=0&rev=46
115 lines
3.1 KiB
RPMSpec
115 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package python-waitress
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
|
|
%if "%{flavor}" == "doc"
|
|
%define psuffix -doc
|
|
%endif
|
|
%if "%{flavor}" == ""
|
|
%define psuffix %{nil}
|
|
%endif
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-waitress%{psuffix}
|
|
Version: 1.4.4
|
|
Release: 0
|
|
Summary: Waitress WSGI server
|
|
License: ZPL-2.1
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/Pylons/waitress
|
|
Source: https://files.pythonhosted.org/packages/source/w/waitress/waitress-%{version}.tar.gz
|
|
# intersphinx inventories, as fetched with fetch-intersphinx-inventories.sh
|
|
# https://docs.python.org/3/objects.inv -> python3.inv
|
|
Source1: python3.inv
|
|
Source2: fetch-intersphinx-inventories.sh
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
%if "%{flavor}" == ""
|
|
BuildRequires: %{python_module pytest-cov}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
%else
|
|
# Documentation requirements
|
|
BuildRequires: python3-Sphinx
|
|
BuildRequires: python3-docutils
|
|
BuildRequires: python3-pylons-sphinx-themes
|
|
BuildRequires: python3-waitress = %{version}
|
|
Recommends: python3-waitress = %{version}
|
|
%endif
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%if "%{flavor}" == ""
|
|
%description
|
|
Waitress is a pure-Python WSGI server. It has no dependencies except
|
|
ones which live in the Python standard library. It supports HTTP/1.0
|
|
and HTTP/1.1.
|
|
|
|
For more information, see the "docs" directory of the Waitress package or
|
|
http://docs.pylonsproject.org/projects/waitress/en/latest/ .
|
|
|
|
%prep
|
|
%setup -q -n waitress-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/waitress-serve
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
# disable one test, that requires network
|
|
%pytest -k 'not test_service_port'
|
|
|
|
%post
|
|
%python_install_alternative waitress-serve
|
|
|
|
%postun
|
|
%python_uninstall_alternative waitress-serve
|
|
|
|
%files %{python_files}
|
|
%license LICENSE.txt
|
|
%doc COPYRIGHT.txt README.rst
|
|
%python_alternative %{_bindir}/waitress-serve
|
|
%{python_sitelib}/*
|
|
|
|
%else
|
|
# doc flavor
|
|
%description
|
|
This package contains documentation files for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n waitress-%{version}
|
|
# python3.inv
|
|
cp %{SOURCE1} docs/
|
|
|
|
%build
|
|
python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo
|
|
|
|
%files %{python_files}
|
|
%license LICENSE.txt
|
|
%doc build/sphinx/html
|
|
%endif
|
|
|
|
%changelog
|