14
0

- Add remove_nose.patch to remove dependency on nose (gh#eventlet/eventlet#638).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-eventlet?expand=0&rev=70
This commit is contained in:
2020-08-13 16:09:43 +00:00
committed by Git OBS Bridge
parent dd8b79e17d
commit f42a7f63a7
3 changed files with 140 additions and 3 deletions

View File

@@ -25,10 +25,12 @@ License: MIT
Group: Development/Languages/Python
URL: http://eventlet.net
Source: https://files.pythonhosted.org/packages/source/e/eventlet/eventlet-%{version}.tar.gz
# PATCH-FEATURE-UPSTREAM remove_nose.patch gh#eventlet/eventlet#638 mcepl@suse.com
# Removes dependency on nose
Patch0: remove_nose.patch
BuildRequires: %{python_module dnspython >= 1.15.0}
BuildRequires: %{python_module greenlet >= 0.3}
BuildRequires: %{python_module monotonic >= 1.4}
BuildRequires: %{python_module nose}
BuildRequires: %{python_module pyOpenSSL}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six >= 1.10.0}
@@ -36,6 +38,9 @@ BuildRequires: fdupes
BuildRequires: netcfg
BuildRequires: python-rpm-macros
# eventlet parses /etc/protocols which is not available in normal build envs
# Tests
BuildRequires: %{python_module pytest}
BuildRequires: sysconfig-netconfig
Requires: netcfg
Requires: python-greenlet >= 0.3
Requires: python-monotonic >= 1.4
@@ -56,6 +61,8 @@ interpreter, or as part of a larger application.
%prep
%setup -q -n eventlet-%{version}
%autopatch -p1
sed -i "s|^#!.*||" eventlet/support/greendns.py # Fix non-executable script
%build
@@ -66,8 +73,8 @@ sed -i "s|^#!.*||" eventlet/support/greendns.py # Fix non-executable script
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# 400 out of 600 tests either fail or error out
#%%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} nosetests-%{$python_bin_suffix} -v
# All tests fail (gh#eventlet/eventlet#638)
%pytest || /bin/true
%files %{python_files}
%license LICENSE