b994087
%global srcname async-timeout
b994087
%global common_desc asyncio-compatible timeout context manager\
b994087
The context manager is useful in cases when you want to apply timeout\
b994087
logic around block of code or in cases when asyncio.wait_for() is not \
b994087
suitable. Also it's much faster than asyncio.wait_for() because timeout\
b994087
doesn't create a new task.
b994087
b994087
Name:           python-%{srcname}
b994087
Version:        1.1.0
b994087
Release:        3%{?dist}
b994087
Summary:        asyncio-compatible timeout context manager
b994087
b994087
License:        ASL 2.0
b994087
URL:            https://github.com/aio-libs/async-timeout
b994087
# pythonhosted is giving 404s
b994087
Source0:        https://github.com/aio-libs/async-timeout/archive/v%{version}/%{name}-%{version}.tar.gz
b994087
b994087
BuildArch:      noarch
b994087
b994087
%description
b994087
%{common_desc}
b994087
b994087
# This module is Python 3 only
b994087
%package -n python3-%{srcname}
b994087
Summary:        %{summary}
b994087
%{?python_provide:%python_provide python3-%{srcname}}
b994087
BuildRequires: python3-devel
b994087
BuildRequires: python3-setuptools
b994087
BuildRequires: python3-pytest-runner
b994087
b994087
%description -n python3-%{srcname}
b994087
%{common_desc}
b994087
b994087
b994087
%prep
b994087
%autosetup -n async-timeout-%{version}
b994087
b994087
%build
b994087
%py3_build
b994087
b994087
%install
b994087
%py3_install
b994087
b994087
%check
b994087
# pytest_aiohttp is not available in the repos
b994087
#%%{__python3} setup.py test
b994087
b994087
%files -n python3-%{srcname}
b994087
%license LICENSE
b994087
%doc README.rst CHANGES.rst
b994087
%{python3_sitelib}/async_timeout/
b994087
%{python3_sitelib}/async_timeout-*.egg-info/
b994087
b994087
%changelog
b994087
* Thu Nov 17 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.1.0-3
b994087
- Add missing BR
b994087
- Rename the pkg
b994087
b994087
* Sun Nov 13 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.1.0-2
b994087
- Update files section and the description
b994087
b994087
* Fri Nov 11 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.1.0-1
b994087
- Initial spec
b994087