You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
5.5 KiB
170 lines
5.5 KiB
11 months ago
|
%global srcname async-timeout
|
||
|
%global common_desc asyncio-compatible timeout context manager\
|
||
|
The context manager is useful in cases when you want to apply timeout\
|
||
|
logic around block of code or in cases when asyncio.wait_for() is not \
|
||
|
suitable. Also it's much faster than asyncio.wait_for() because timeout\
|
||
|
doesn't create a new task.
|
||
|
|
||
|
%if %{defined fedora}
|
||
|
%bcond_without tests
|
||
|
%endif
|
||
|
|
||
|
Name: python-%{srcname}
|
||
|
Version: 4.0.2
|
||
|
Release: 2%{?dist}
|
||
|
Summary: An asyncio-compatible timeout context manager
|
||
|
|
||
|
License: ASL 2.0
|
||
|
URL: https://github.com/aio-libs/async-timeout
|
||
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%description
|
||
|
%{common_desc}
|
||
|
|
||
|
# This module is Python 3 only
|
||
|
%package -n python3-%{srcname}
|
||
|
Summary: %{summary}
|
||
|
|
||
|
BuildRequires: python3-devel
|
||
|
%if %{with tests}
|
||
|
BuildRequires: python3-pytest
|
||
|
BuildRequires: python3-pytest-asyncio
|
||
|
%endif
|
||
|
|
||
|
%description -n python3-%{srcname}
|
||
|
%{common_desc}
|
||
|
|
||
|
%prep
|
||
|
%autosetup -n %{srcname}-%{version}
|
||
|
# remove pytest coverage flags
|
||
|
sed -e '/^addopts/d' -i setup.cfg
|
||
|
|
||
|
%generate_buildrequires
|
||
|
%pyproject_buildrequires
|
||
|
|
||
|
%build
|
||
|
%pyproject_wheel
|
||
|
|
||
|
%install
|
||
|
%pyproject_install
|
||
|
%pyproject_save_files async_timeout
|
||
|
|
||
|
%check
|
||
|
%if %{with tests}
|
||
|
%pytest
|
||
|
%else
|
||
|
%pyproject_check_import
|
||
|
%endif
|
||
|
|
||
|
%files -n python3-%{srcname} -f %{pyproject_files}
|
||
|
%doc README.rst CHANGES.rst
|
||
|
|
||
|
%changelog
|
||
|
* Mon Feb 12 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 4.0.2-2
|
||
|
- Rebuilt for MSVSphere 9.3
|
||
|
|
||
|
* Tue Apr 19 2022 Carl George <carl@george.computer> - 4.0.2-2
|
||
|
- Convert to pyproject macros
|
||
|
|
||
|
* Fri Jan 21 2022 Fabian Affolter <mail@fabian-affolter.ch> - 4.0.2-1
|
||
|
- Update to latest upstream release 4.0.2 (closes rhbz#2034329)
|
||
|
|
||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-2
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||
|
|
||
|
* Thu Nov 25 2021 Fabian Affolter <mail@fabian-affolter.ch> - 4.0.1-1
|
||
|
- Update to latest upstream release 4.0.1 (closes rhbz#1768164)
|
||
|
|
||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-14
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||
|
|
||
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 3.0.1-13
|
||
|
- Rebuilt for Python 3.10
|
||
|
|
||
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 3.0.1-12
|
||
|
- Bootstrap for Python 3.10
|
||
|
|
||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-11
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||
|
|
||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-10
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||
|
|
||
|
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 3.0.1-9
|
||
|
- Rebuilt for Python 3.9
|
||
|
|
||
|
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 3.0.1-8
|
||
|
- Bootstrap for Python 3.9
|
||
|
|
||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-7
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||
|
|
||
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 3.0.1-6
|
||
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||
|
|
||
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.0.1-5
|
||
|
- Rebuilt for Python 3.8
|
||
|
|
||
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.0.1-4
|
||
|
- Bootstrap for Python 3.8
|
||
|
|
||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-3
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||
|
|
||
|
* Fri Jun 21 2019 Fabian Affolter <mail@fabian-affolter.ch> - 3.0.1-2
|
||
|
- Enable tests
|
||
|
|
||
|
* Mon May 06 2019 Fabian Affolter <mail@fabian-affolter.ch> - 3.0.1-1
|
||
|
- Update to latest upstream release 3.0.1 (rhbz#1707011)
|
||
|
|
||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-4
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||
|
|
||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-3
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||
|
|
||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.0.0-2
|
||
|
- Rebuilt for Python 3.7
|
||
|
|
||
|
* Sat May 05 2018 Fabian Affolter <mail@fabian-affolter.ch> - 3.0.0-1
|
||
|
- Update to latest upstream release 3.0.0 (rhbz#1575247)
|
||
|
|
||
|
* Thu Mar 15 2018 Fabian Affolter <mail@fabian-affolter.ch> - 2.0.1-1
|
||
|
- Update to latest upstream release 2.0.1 (rhbz#1554798)
|
||
|
|
||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||
|
|
||
|
* Sun Sep 17 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 1.4.0-1
|
||
|
- Update to 1.4.0 (rhbz #1484848)
|
||
|
|
||
|
* Fri Aug 25 2017 Fabian Affolter <mail@fabian-affolter.ch> - 1.3.0-1
|
||
|
- Update to latest upstream release 1.3.0 (rhbz#1484848)
|
||
|
|
||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-2
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||
|
|
||
|
* Fri May 12 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 1.2.1-1
|
||
|
- Update to 1.2.1
|
||
|
|
||
|
* Sun Mar 19 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.2.0-1
|
||
|
- Update to 1.2.0
|
||
|
|
||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-5
|
||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||
|
|
||
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-4
|
||
|
- Rebuild for Python 3.6
|
||
|
|
||
|
* Thu Nov 17 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.1.0-3
|
||
|
- Add missing BR
|
||
|
- Rename the pkg
|
||
|
|
||
|
* Sun Nov 13 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.1.0-2
|
||
|
- Update files section and the description
|
||
|
|
||
|
* Fri Nov 11 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.1.0-1
|
||
|
- Initial spec
|
||
|
|