forked from pool/python-pytest-localserver
77 lines
3.0 KiB
RPMSpec
77 lines
3.0 KiB
RPMSpec
|
#
|
||
|
# spec file for package python-pytest-localserver
|
||
|
#
|
||
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||
|
# Copyright (c) 2015 LISA GmbH, Bingen, 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 http://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||
|
Name: python-pytest-localserver
|
||
|
Version: 0.4.1
|
||
|
Release: 0
|
||
|
Summary: Plugin for py.test to test server connections locally
|
||
|
License: MIT
|
||
|
Group: Development/Languages/Python
|
||
|
Url: https://bitbucket.org/pytest-dev/pytest-localserver
|
||
|
Source: https://files.pythonhosted.org/packages/source/p/pytest-localserver/pytest-localserver-%{version}.tar.gz
|
||
|
Patch0: python-pytest-localserver-do-not-use-shipped-pem.patch
|
||
|
BuildRequires: %{python_module devel}
|
||
|
BuildRequires: %{python_module setuptools}
|
||
|
BuildRequires: fdupes
|
||
|
BuildRequires: python-rpm-macros
|
||
|
Requires: python-Werkzeug
|
||
|
Requires: python-pytest
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%python_subpackages
|
||
|
|
||
|
%description
|
||
|
The pytest-localserver package is a plugin for the `pytest`_ testing framework
|
||
|
which enables you to test server connections locally.
|
||
|
|
||
|
Sometimes `monkeypatching`_ ``urllib2.urlopen()`` just does not cut it, for
|
||
|
instance if you work with ``urllib2.Request``, define your own openers/handlers
|
||
|
or work with ``httplib``. In these cases it may come in handy to have an HTTP
|
||
|
server running locally which behaves just like the real thing. Well, look
|
||
|
no further!
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n pytest-localserver-%{version}
|
||
|
%patch0 -p1
|
||
|
rm -f pytest_localserver/server.pem.orig
|
||
|
|
||
|
%build
|
||
|
%python_build
|
||
|
|
||
|
%install
|
||
|
%python_install
|
||
|
%{python_expand rm -f %{buildroot}%{$python_sitelib}/pytest_localserver/server.pem
|
||
|
chmod a+x %{buildroot}%{$python_sitelib}/pytest_localserver/smtp.py
|
||
|
chmod a+x %{buildroot}%{$python_sitelib}/pytest_localserver/plugin.py
|
||
|
sed -i "s|^#!/usr/bin/env python$|#!%__$python|" %{buildroot}%{$python_sitelib}/pytest_localserver/smtp.py
|
||
|
sed -i "s|^#!/usr/bin/env python$|#!%__$python|" %{buildroot}%{$python_sitelib}/pytest_localserver/plugin.py
|
||
|
$python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/pytest_localserver/
|
||
|
$python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/pytest_localserver/
|
||
|
%fdupes %{buildroot}%{$python_sitelib}
|
||
|
}
|
||
|
|
||
|
%files %{python_files}
|
||
|
%doc README
|
||
|
%license LICENSE
|
||
|
%{python_sitelib}/pytest_localserver
|
||
|
%{python_sitelib}/pytest_localserver-%{version}-py*.egg-info
|
||
|
|
||
|
%changelog
|