Sync from SUSE:ALP:Source:Standard:1.0 python-gevent revision dac114ecc10009333ff513ccf783d3fe
This commit is contained in:
commit
520da83256
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
23
fix-no-return-in-nonvoid-function.patch
Normal file
23
fix-no-return-in-nonvoid-function.patch
Normal file
@ -0,0 +1,23 @@
|
||||
Index: gevent-21.1.2/deps/libev/ev_iouring.c
|
||||
===================================================================
|
||||
--- gevent-21.1.2.orig/deps/libev/ev_iouring.c
|
||||
+++ gevent-21.1.2/deps/libev/ev_iouring.c
|
||||
@@ -286,6 +286,9 @@ iouring_sqe_get (EV_P)
|
||||
return EV_SQES + (tail & EV_SQ_VAR (ring_mask));
|
||||
}
|
||||
|
||||
+#pragma GCC diagnostic push
|
||||
+#pragma GCC diagnostic ignored "-Wreturn-type"
|
||||
+
|
||||
inline_size
|
||||
struct io_uring_sqe *
|
||||
iouring_sqe_submit (EV_P_ struct io_uring_sqe *sqe)
|
||||
@@ -330,6 +333,8 @@ iouring_internal_destroy (EV_P)
|
||||
}
|
||||
}
|
||||
|
||||
+#pragma GCC diagnostic pop
|
||||
+
|
||||
ecb_cold
|
||||
static int
|
||||
iouring_internal_init (EV_P)
|
BIN
gevent-23.9.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
gevent-23.9.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
2
python-gevent-rpmlintrc
Normal file
2
python-gevent-rpmlintrc
Normal file
@ -0,0 +1,2 @@
|
||||
addFilter("zero-length .*tests/nullcert\.pem")
|
||||
addFilter("pem-certificate .*tests/.*\.pem")
|
1656
python-gevent.changes
Normal file
1656
python-gevent.changes
Normal file
File diff suppressed because it is too large
Load Diff
184
python-gevent.spec
Normal file
184
python-gevent.spec
Normal file
@ -0,0 +1,184 @@
|
||||
#
|
||||
# spec file for package python-gevent
|
||||
#
|
||||
# Copyright (c) 2023 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/
|
||||
#
|
||||
|
||||
|
||||
%define modname gevent
|
||||
# on TW, gevent is able to use system libev, Leaps et.al. need the bundled version
|
||||
%if 0%{?suse_version} <= 1500
|
||||
%define use_bundled_libev 1
|
||||
%else
|
||||
%define use_bundled_libev 0
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-gevent
|
||||
Version: 23.9.0
|
||||
Release: 0
|
||||
Summary: Python network library that uses greenlet and libevent
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
URL: https://www.gevent.org/
|
||||
Source0: https://github.com/gevent/%{modname}/archive/%{version}.tar.gz#/%{modname}-%{version}.tar.gz
|
||||
Source100: %{name}-rpmlintrc
|
||||
# gcc7 for 15.1 produces no-return-in-nonvoid-function, but the same compiler for 15.2 not
|
||||
# usually, as long as no return value is used, this shouldn't be treated as an error
|
||||
# let's selectively disable the warning around the offending code
|
||||
Patch0: fix-no-return-in-nonvoid-function.patch
|
||||
BuildRequires: %{python_module Cython}
|
||||
BuildRequires: %{python_module cffi}
|
||||
BuildRequires: %{python_module devel >= 3.8}
|
||||
BuildRequires: %{python_module dnspython}
|
||||
BuildRequires: %{python_module greenlet >= 2.0.0}
|
||||
BuildRequires: %{python_module objgraph}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module psutil}
|
||||
BuildRequires: %{python_module requests}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: %{python_module zope.event}
|
||||
BuildRequires: %{python_module zope.interface}
|
||||
BuildRequires: fdupes
|
||||
# /etc/protocols needed for tests
|
||||
BuildRequires: netcfg
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: python3-testsuite
|
||||
BuildRequires: pkgconfig(libcares)
|
||||
BuildRequires: pkgconfig(libuv)
|
||||
Requires: python-cffi
|
||||
Requires: python-dnspython
|
||||
Requires: python-greenlet >= 2.0.0
|
||||
Requires: python-importlib-metadata
|
||||
Requires: python-requests
|
||||
Requires: python-zope.event
|
||||
Requires: python-zope.interface
|
||||
%if ! 0%{use_bundled_libev}
|
||||
BuildRequires: pkgconfig(libev)
|
||||
%endif
|
||||
%if 0%{?suse_version} || 0%{?fedora_version} || 0%{?rhel} >= 8
|
||||
Recommends: python-psutil
|
||||
%else
|
||||
Requires: python-psutil
|
||||
%endif
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
Gevent is a Python networking library that uses greenlet to provide synchronous
|
||||
API on top of a libevent event loop. Features include:
|
||||
|
||||
* Fast event loop based on libevent.
|
||||
* Lightweight execution units based on greenlet.
|
||||
* Familiar API that re-uses concepts from the Python standard library.
|
||||
* Cooperative sockets with ssl support.
|
||||
* DNS queries performed through libevent-dns.
|
||||
* Ability to use standard library and 3rd party modules written for standard
|
||||
blocking sockets
|
||||
* Fast WSGI server based on libevent-http.
|
||||
|
||||
gevent is inspired by eventlet but features more consistent API, simpler
|
||||
implementation and better performance. Read why others use gevent and check
|
||||
out the list of the open source projects based on gevent.
|
||||
|
||||
%if 0%{?suse_version} > 1500
|
||||
%package -n python-gevent-doc
|
||||
Summary: Documentation for %{name}
|
||||
Group: Documentation/Other
|
||||
Provides: %{python_module gevent-doc = %{version}}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n python-gevent-doc
|
||||
Documentation and examples for %{name}.
|
||||
%endif
|
||||
|
||||
%prep
|
||||
%setup -q -n gevent-%{version}
|
||||
%if 0%{?sle_version} <= 150100 && 0%{?is_opensuse}
|
||||
%patch0 -p1
|
||||
%endif
|
||||
sed -i -e '1s!bin/env python!bin/python!' examples/*.py
|
||||
sed -i -e '1{/bin.*python/d}' src/gevent/tests/*.py
|
||||
|
||||
%build
|
||||
export LIBEV_EMBED=%{use_bundled_libev}
|
||||
export CARES_EMBED=0
|
||||
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
export LIBEV_EMBED=%{use_bundled_libev}
|
||||
export CARES_EMBED=0
|
||||
%pyproject_install
|
||||
%{python_expand # fix script interpreter-line and exec bit
|
||||
sed -i '1{s|^#!.*bin.*python.*$|#!%{__$python}|}' %{buildroot}%{$python_sitearch}/gevent/testing/testrunner.py
|
||||
chmod +x %{buildroot}%{$python_sitearch}/gevent/testing/testrunner.py
|
||||
}
|
||||
%{?python_compileall}
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||
|
||||
%check
|
||||
%{python_expand #
|
||||
# create ignore list of tests, e.g. because they reach out to the net
|
||||
cat << EOF > skip_tests.txt
|
||||
test__core_stat.py
|
||||
%if 0%{?sle_version} <= 150200 && 0%{?is_opensuse}
|
||||
test__destroy_default_loop.py
|
||||
test__example_echoserver.py
|
||||
test_socket.py
|
||||
%endif
|
||||
test__examples.py
|
||||
# this one fails occasionally with: Address already in use: ('127.0.0.1', 16000)
|
||||
test__example_portforwarder.py
|
||||
test__getaddrinfo_import.py
|
||||
test__resolver_dnspython.py
|
||||
test__socket_dns.py
|
||||
test__issue1686.py
|
||||
# Flaky tests in s390x architecture
|
||||
%ifarch s390x
|
||||
test__util.py
|
||||
%endif
|
||||
EOF
|
||||
if [ %{$python_version_nodots} -lt 37 ]; then
|
||||
echo "test__threading_2.py" >> skip_tests.txt
|
||||
fi
|
||||
export GEVENT_RESOLVER=thread
|
||||
# Setting the TRAVIS environment variable makes some different configuration
|
||||
# for tests that use the network so they don't fail on travis (or obs)
|
||||
export TRAVIS=1
|
||||
# Setting the APPVEYOR environment variable makes the tests use a workaround
|
||||
# for Appveyor that we also need in obs for "wait_threads() failed to cleanup 1 threads"
|
||||
export APPVEYOR=1
|
||||
export LANG=en_US.UTF-8
|
||||
# Relax the crypto policies for the test-suite
|
||||
export OPENSSL_SYSTEM_CIPHERS_OVERRIDE=xyz_nonexistent_file
|
||||
export OPENSSL_CONF=''
|
||||
# don't bother with python2 tests
|
||||
if [ "${python_flavor}" != "python2" ]; then
|
||||
PYTHONPATH=%{buildroot}%{$python_sitearch} $python -m gevent.tests --ignore skip_tests.txt
|
||||
fi
|
||||
}
|
||||
|
||||
%files %{python_files}
|
||||
%doc AUTHORS README.rst TODO CHANGES.rst CONTRIBUTING.rst
|
||||
%license LICENSE*
|
||||
%{python_sitearch}/gevent-%{version}*-info
|
||||
%{python_sitearch}/gevent
|
||||
|
||||
%if 0%{?suse_version} > 1500
|
||||
%files -n python-gevent-doc
|
||||
%license LICENSE*
|
||||
%endif
|
||||
%doc examples/
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user