Files
python-pyuv/python-pyuv.spec

97 lines
3.1 KiB
RPMSpec

#
# spec file for package python-pyuv
#
# Copyright (c) 2024 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 skip_python311 1
%define skip_python312 1
%define short_version %(echo %{version} | awk -F+ 'print $1')
Name: python-pyuv
Version: 1.4.0+git20240406.2bee4da
Release: 0
Summary: Python interface for libuv
License: MIT
Group: Development/Languages/Python
URL: https://github.com/saghul/pyuv
#Source: https://files.pythonhosted.org/packages/source/p/pyuv/pyuv-%%{version}.tar.gz
Source: pyuv-%{version}.tar.gz
### Both patches in https://github.com/saghul/pyuv/pull/262
#Patch0: tests_async_keyword.patch
#Patch1: tests_py3.patch
#####
#Patch2: fix_building_for_Python311.patch
BuildRequires: %{python_module devel}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: pkgconfig(libuv)
%python_subpackages
%description
Python interface for libuv.
%prep
%setup -q -n pyuv-%{version}
#%%patch -P 0 -p1
#%%patch -P 1 -p1
#%%patch -P 2 -p1
# Force system libuv
rm -r deps/libuv
rmdir deps
sed -i 's/self.use_system_libuv = 0/self.use_system_libuv = 1/' setup_libuv.py
sed -i 's/"python"/sys.executable/' tests/test_process.py
# Allow tests to be invoked at parent directory, and proc_*.py found in subdirectory
sed -i 's:"proc_:"tests/proc_:' tests/test_process.py
%build
export CFLAGS="%{optflags}"
%{python_expand \
# fix for py3.10, but it doesn't work for py3.8 and lower
# https://github.com/saghul/pyuv/issues/271
%if %{$python_version_nodots} > 38
sed -i 's/Py_REFCNT(self) = refcnt/Py_SET_REFCNT(self, refcnt)/' src/handle.c
%else
# what if python3.8 isn't first in the line?
sed -i 's/Py_SET_REFCNT(self, refcnt)/Py_REFCNT(self) = refcnt/' src/handle.c
%endif
$python setup.py build
}
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
mv pyuv .pyuv
# test_sendfile_offset OOM on Python 3.6
# test_stop fails w/ > libuv 1.44.2 (update to 1.46.0 showed first issue)
# test_fsevent_nrefile w/ >= 1.48.0 causes build to hang indefinitely; 20240406, smb.
%pytest_arch -k 'not (test_tty or test_getaddrinfo_service or test_getaddrinfo_service_bytes or UDPBroadcastTest or UDPTestMulticast or test_sendfile_offset or test_stop or test_pipe1_abstract or test_fsevent_nrefile)'
mv .pyuv pyuv
%files %{python_files}
%doc AUTHORS ChangeLog README.rst
%license LICENSE
%{python_sitearch}/pyuv
%{python_sitearch}/pyuv-%{short_version}*-info
%changelog