python-uvloop/python-uvloop.spec
Matej Cepl 64fd87943b Accepting request 915114 from home:glaubitz:branches:devel:languages:python
- Update to 0.16.0:
  * Python 3.10 support (#432)
  * Bump vendored libuv to 1.42.0 (#433)
  * Use cibuildwheel to build wheels (#435)
  * Add support for <timer handle>.when()
  * Fix ref issue when protocol is in Cython
  * Set python_requires in setup.py
  * SSL: schedule first data after waiter wakeup
  * Fix a possible race condition in sslproto test
  * Fix call_soon_threadsafe thread safety
- from version 0.15.3:
  * SSL: schedule first data after waiter wakeup
  * Fix a possible race condition in sslproto test
  * Fix call_soon_threadsafe thread safety
- from version 0.15.2:
  * Add python_requires in setup.py to fix dependency resolution issues
- from version 0.15.1:
  * Fix a segfault issue when a Cython protocol is de-referencing
    itself from Context.run() callbacks
- from version 0.15.0:
  * Add name keyword argument to loop.create_task()
  * Add typing support
  * SSL: many improvements
  * Fix KeyboardInterrupt handling logic
  * Python 3.8/3.9 compatibility fixes, drop support for 3.5/3.6
  * UDP: multiple bug fixes
  * Pipe: a critical crash fix that affects subprocess, pipe and socketpair
  * Restore context on protocol callbacks
  * Subprocess: stdio bug fixes
  * Sock: fix issue in sock_connect() for large concurrency

OBS-URL: https://build.opensuse.org/request/show/915114
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-uvloop?expand=0&rev=19
2021-09-02 14:05:34 +00:00

76 lines
2.4 KiB
RPMSpec

#
# spec file for package python-uvloop
#
# Copyright (c) 2021 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
%define skip_python36 1
Name: python-uvloop
Version: 0.16.0
Release: 0
Summary: An asyncio event loop on top of libuv
License: Apache-2.0 AND MIT
Group: Development/Languages/Python
URL: http://github.com/MagicStack/uvloop
Source: https://files.pythonhosted.org/packages/source/u/uvloop/uvloop-%{version}.tar.gz
BuildRequires: %{python_module Cython >= 0.28}
BuildRequires: %{python_module aiohttp}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module psutil}
BuildRequires: %{python_module pyOpenSSL}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: pkgconfig(libuv)
%python_subpackages
%description
uvloop is a drop-in replacement of the built-in asyncio
event loop. uvloop is implemented in Cython and uses libuv
under the hood.
%prep
%setup -q -n uvloop-%{version}
# always use cython to generate code
sed -i -e "/self.cython_always/s/False/True/" setup.py
# use system libuv
sed -i -e "/self.use_system_libuv/s/False/True/" setup.py
# To be sure, no 3rd-party stuff
rm -vrf vendor/
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
# https://github.com/MagicStack/uvloop/issues/70
%python_expand rm -vf %{buildroot}%{$python_sitearch}/%{modname}/_testbase.py
%python_expand rm -vf %{buildroot}%{$python_sitearch}/%{modname}/__pycache__/_testbase.*
%check
# Actually the tests are VERY flaky, thus continue even if they fail :(
#%%python_exec setup.py test || :
%files %{python_files}
%license LICENSE-APACHE LICENSE-MIT
%doc README.rst
%{python_sitearch}/*
%changelog