python-Paste/python-Paste.spec
Tomáš Chvátal 321f3e058e Accepting request 719501 from home:pgajdos
- version update to 3.1.0
  * Allow anything that can read() for a file-like response, not just
    a ``file`` instance.

OBS-URL: https://build.opensuse.org/request/show/719501
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Paste?expand=0&rev=34
2019-07-29 08:41:23 +00:00

77 lines
2.4 KiB
RPMSpec

#
# spec file for package python-Paste
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define oldpython python
Name: python-Paste
Version: 3.1.0
Release: 0
Summary: Tools for using a Web Server Gateway Interface stack
License: MIT
Group: Development/Languages/Python
URL: https://github.com/cdent/paste
Source: https://files.pythonhosted.org/packages/source/P/Paste/Paste-%{version}.tar.gz
Patch0: test_modified-fixup.patch
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six > 1.4.0}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-six > 1.4.0
BuildArch: noarch
Suggests: python-flup
%ifpython2
Provides: %{oldpython}-paste = %{version}
Obsoletes: %{oldpython}-paste < %{version}
Suggests: python-python-openid
%endif
%ifpython3
Suggests: python3-python3-openid
%endif
%python_subpackages
%description
These provide several pieces of "middleware" (or filters) that can be nested
to build web applications. Each piece of middleware uses the WSGI (PEP 333)
interface, and should be compatible with other middleware based on those
interfaces.
%prep
%setup -q -n Paste-%{version}
%patch0 -p1
sed -i '/pytest-runner/d' setup.py
# remove test requiring internet access
rm tests/test_proxy.py
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_bin_suffix} -v
%files %{python_files}
%license docs/license.txt
%doc README.rst
%{python_sitelib}/*
%changelog