From 519eace4810915d99cdf2797731a675348696ed3 Mon Sep 17 00:00:00 2001 From: Joel Capitao Date: Feb 03 2025 17:48:51 +0000 Subject: Import python-aiohttp-3.10.11-3.el10s in CloudSIG Epoxy --- diff --git a/.python-aiohttp.metadata b/.python-aiohttp.metadata new file mode 100644 index 0000000..ab9e249 --- /dev/null +++ b/.python-aiohttp.metadata @@ -0,0 +1 @@ +c39f6103b3341998cd9af8591ac6da7eb0e745aa SOURCES/aiohttp-3.10.11.tar.gz diff --git a/SOURCES/0001-Unbundle-llhttp.patch b/SOURCES/0001-Unbundle-llhttp.patch new file mode 100644 index 0000000..9c4c429 --- /dev/null +++ b/SOURCES/0001-Unbundle-llhttp.patch @@ -0,0 +1,44 @@ +From bbe8b3ebacee8e7cde750d263ddf64581b447af1 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hrn=C4=8Diar?= +Date: Wed, 16 Feb 2022 13:57:57 +0100 +Subject: [PATCH] Unbundle llhttp + +--- + aiohttp/_cparser.pxd | 2 +- + setup.py | 6 +----- + 2 files changed, 2 insertions(+), 6 deletions(-) + +diff --git a/aiohttp/_cparser.pxd b/aiohttp/_cparser.pxd +index c2cd5a92..1b3be6d4 100644 +--- a/aiohttp/_cparser.pxd ++++ b/aiohttp/_cparser.pxd +@@ -1,7 +1,7 @@ + from libc.stdint cimport int32_t, uint8_t, uint16_t, uint64_t + + +-cdef extern from "../vendor/llhttp/build/llhttp.h": ++cdef extern from "llhttp.h": + + struct llhttp__internal_s: + int32_t _index +diff --git a/setup.py b/setup.py +index 4d59a022..0df68207 100644 +--- a/setup.py ++++ b/setup.py +@@ -33,12 +33,8 @@ extensions = [ + [ + "aiohttp/_http_parser.c", + "aiohttp/_find_header.c", +- "vendor/llhttp/build/c/llhttp.c", +- "vendor/llhttp/src/native/api.c", +- "vendor/llhttp/src/native/http.c", + ], +- define_macros=[("LLHTTP_STRICT_MODE", 0)], +- include_dirs=["vendor/llhttp/build"], ++ libraries=["llhttp"], + ), + Extension("aiohttp._helpers", ["aiohttp/_helpers.c"]), + Extension("aiohttp._http_writer", ["aiohttp/_http_writer.c"]), +-- +2.41.0 + diff --git a/SPECS/python-aiohttp.spec b/SPECS/python-aiohttp.spec new file mode 100644 index 0000000..9a6a8cf --- /dev/null +++ b/SPECS/python-aiohttp.spec @@ -0,0 +1,587 @@ +%bcond tests 0 + +Name: python-aiohttp +Version: 3.10.11 +Release: 3%{?dist} +Summary: Python HTTP client/server for asyncio + +License: Apache-2.0 +URL: https://github.com/aio-libs/aiohttp +# We use requirements/*.txt to generate test dependencies; these files are not +# present in the PyPI sdist, so we must use the GitHub archive. +Source: %{url}/archive/v%{version}/aiohttp-%{version}.tar.gz + +# downstream only patch +Patch: 0001-Unbundle-llhttp.patch + +BuildRequires: gcc + +# CVE-2024-27982 requires >= 9.2.1. The actual lower bound is based on the +# version that upstream bundles/vendors. +BuildRequires: llhttp-devel >= 9.2.1 + +BuildRequires: python3-devel + +%global common_description %{expand: +Python HTTP client/server for asyncio which supports both the client and the +server side of the HTTP protocol, client and server websocket, and webservers +with middlewares and pluggable routing.} + +%description %{common_description} + +%package -n python3-aiohttp +Summary: %{summary} + +Recommends: python3-aiohttp+speedups + +%description -n python3-aiohttp %{common_description} + +%pyproject_extras_subpkg -n python3-aiohttp speedups + +%prep +%autosetup -p 1 -n aiohttp-%{version} +# Remove bundled llhttp +rm -rv vendor/llhttp +# Disable test coverage reports +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_linters +sed -r -i '/--cov=|-p pytest_cov/d' setup.cfg +# Comment out: +# - optional test dependencies that are not yet packaged or are useless here +# - coverage and benchmarking dependenecies +# - the “-c” constraint, which the pyproject-rpm-macros don’t support +sed -r \ + -e 's/^(proxy[-\.]py|python-on-whales|wait-for-it)/# &/' \ + -e 's/^(coverage|pytest-cov|pytest_codspeed|mypy)/# &/' \ + -e 's/^(setuptools-git)/# &/' \ + -e 's/^-c /# &/' \ + requirements/test.in | + tee requirements/test.in.filtered + +# Make sure the source archive does not include any files generated by Cython +grep -rl '/\* Generated by Cython' | xargs -r rm -v +# don't treat DeprecationWarnings as errors in subprocess based tests +sed -i 's/"-W", "error"/"-W", "error", "-W", "ignore::DeprecationWarning"/' tests/test_circular_imports.py + +%generate_buildrequires +%{pyproject_buildrequires \ + requirements/cython.in \ + %{?with_tests:requirements/test.in.filtered}} + +%build +# Recreate removed Cython files using commands extracted from the Makefile. +# We don't run make directly, as it pip-installs Cython. +# +# We don't need a real git checkout, but we do need a .git directory to help +# certain scripts find the root of the source tree. +mkdir -p .git +# See the aiohttp/_find_header.c target in the Makefile; this also generates +# _headers.pyi. +%{python3} tools/gen.py +# Now we can invoke Cython. +%{python3} -m cython -3 aiohttp/*.pyx -I aiohttp +# Now we need to remove the .git directory again, because its presence will +# lead the actual build astray, something like: +# Install submodules when building from git clone +# Hint: +# git submodule update --init +rm -rvf .git +# Now we can actually proceed with building the package. +%pyproject_wheel + +%install +%pyproject_install +%pyproject_save_files -l aiohttp + +%check +%if %{with tests} +# Fixes problems importing compiled extensions from subprocesses. +export PYTHONSAFEPATH=1 +# We do not want to run benchmarks (and we patched out their dependencies) +ignore="${ignore-} --ignore-glob=tests/test_benchmarks_*" +# test_proxy_functional.py requires python3dist(proxy-py) +ignore="${ignore-} --ignore=tests/test_proxy_functional.py" +# These require python-on-whales and a running Docker +ignore="${ignore-} --ignore=tests/autobahn" +# These require network access (at least DNS): +k="${k-}${k+ and }not test_client_session_timeout_zero" +k="${k-}${k+ and }not test_invalid_idna" +# A slow builder may easily violate an arbitrary bound on how long it should +# take to import the package. This is not something we need to care about +# downstream. +k="${k-}${k+ and }not test_import_time" +# A warning comes from our version of uvloop that is not one of the ignored +# types. +# UserWarning: enum class uv_fs_event not importable from uvloop.includes.uv. +# You are probably using a cpdef enum declared in a .pxd file that does not +# have a .py or .pyx file. +k="${k-}${k+ and }not test_no_warnings[aiohttp.pytest_plugin]" +# This depends on the exact compressed byte stream, which doesn’t match +# upstream’s expectation due to +# https://fedoraproject.org/wiki/Changes/ZlibNGTransition. +k="${k-}${k+ and }not test_send_compress_text" +%pytest -Wdefault ${ignore-} -k "${k-}" -m 'not dev_mode' +%else +# aiohttp.worker requires gunicorn +%pyproject_check_import -e aiohttp.pytest_plugin -e aiohttp.worker +%endif + +%files -n python3-aiohttp -f %{pyproject_files} +%doc CHANGES.rst +%doc HISTORY.rst +%doc README.rst + +%changelog +* Mon Feb 03 2025 Joel Capitao - 3.10.11-3 +- Disable tests + +* Sat Jan 18 2025 Fedora Release Engineering - 3.10.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Tue Nov 19 2024 Benjamin A. Beasley - 3.10.11-1 +- Update to 3.10.11 + +* Tue Nov 19 2024 Benjamin A. Beasley - 3.10.10-2 +- Security fix for CVE-2024-52304 + +* Sun Oct 20 2024 Benjamin A. Beasley - 3.10.10-1 +- Update to 3.10.10 + +* Fri Sep 27 2024 Benjamin A. Beasley - 3.10.6-1 +- Update to 3.10.6 + +* Thu Sep 26 2024 Benjamin A. Beasley - 3.10.5-2 +- Skip a new test that requires network access + +* Mon Sep 16 2024 Fabian Affolter - 3.10.5-1 +- Update to latest upstream release 3.10.5 + +* Sat Aug 17 2024 Benjamin A. Beasley - 3.10.3-1 +- Update to 3.10.3 (close RHBZ#2305522) + +* Sat Aug 17 2024 Benjamin A. Beasley - 3.9.5-6 +- Assert that the .dist-info directory contains a license file + +* Fri Jul 19 2024 Fedora Release Engineering - 3.9.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Sat Jun 08 2024 Python Maint - 3.9.5-3 +- Rebuilt for Python 3.13 + +* Fri Jun 07 2024 Python Maint - 3.9.5-2 +- Bootstrap for Python 3.13 + +* Fri Apr 19 2024 Benjamin A. Beasley - 3.9.5-1 +- Update to 3.9.5 (fix RHBZ#2275991, fix CVE-2024-27306) + +* Thu Apr 11 2024 Benjamin A. Beasley - 3.9.3-3 +- Backport support for llhttp 9.2.1 +- Started rejecting obsolete line folding in Python parser to match + +* Fri Feb 16 2024 Benjamin A. Beasley - 3.9.3-2 +- Rebuilt for llhttp-9.2.0 + +* Tue Jan 30 2024 Benjamin A. Beasley - 3.9.3-1 +- Update to 3.9.3, security update for CVE-2024-23334 and CVE-2024-23829 (fix + RHBZ#2261891, fix RHBZ#2261910) + +* Tue Jan 30 2024 Benjamin A. Beasley - 3.9.1-4 +- Skip a couple of spurious or insignificant test failures (close RHBZ#2261544) + +* Fri Jan 26 2024 Fedora Release Engineering - 3.9.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 3.9.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Thu Nov 30 2023 Benjamin A. Beasley - 3.9.1-1 +- Update to 3.9.1 (fix RHBZ#2252236, fix RHBZ#2252249) +- Fixes CVE-2023-49081 and CVE-2023-49082 + +* Mon Oct 16 2023 Benjamin A. Beasley - 3.8.6-1 +- Update to 3.8.6 + +* Sun Jul 30 2023 Benjamin A. Beasley - 3.8.5-1 +- Update to 3.8.5 (close RHBZ#2227458) + +* Fri Jul 21 2023 Fedora Release Engineering - 3.8.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Thu Jun 29 2023 Python Maint - 3.8.4-4 +- Rebuilt for Python 3.12 + +* Mon May 15 2023 Tomáš Hrnčiar - 3.8.4-2 +- Backport upstream patch to fix a test failing with python-yarl 1.9.2 + +* Mon Feb 13 2023 Benjamin A. Beasley - 3.8.4-1 +- Update to 3.8.4 (close RHBZ#2169212) + +* Fri Jan 20 2023 Benjamin A. Beasley - 3.8.3-6 +- Make three xfails non-strict (close RHBZ#2158175) + +* Fri Jan 20 2023 Fedora Release Engineering - 3.8.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Sat Dec 03 2022 Benjamin A. Beasley - 3.8.3-4 +- Stop patching out python-re-assert; it is now in EPEL9 + +* Thu Nov 03 2022 Benjamin A. Beasley - 3.8.3-3 +- Skip a test that leaks a socket file descriptor on 32-bit ARM + +* Sat Oct 08 2022 Benjamin A. Beasley - 3.8.3-2 +- Port to pyproject-rpm-macros +- Add metapackage for “speedups” extra +- Update License to SPDX +- Add conditionals for EPEL9 support + +* Mon Sep 26 2022 Tomáš Hrnčiar - 3.8.3-1 +- Update to 3.8.3 + +* Thu Aug 18 2022 Stephen Gallagher - 3.8.1-8 +- Rebuilt for llhttp soname bump + +* Fri Jul 22 2022 Fedora Release Engineering - 3.8.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Thu Jun 16 2022 Miro Hrončok - 3.8.1-6 +- Skip less tests, set the global event loop in _setupAsyncioRunner + +* Tue Jun 14 2022 Python Maint - 3.8.1-5 +- Rebuilt for Python 3.11 + +* Thu Apr 28 2022 Carl George - 3.8.1-4 +- Add upstream patch for pytest 7 compatibility +- Resolves: rhbz#2059944 + +* Fri Jan 21 2022 Fedora Release Engineering - 3.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Dec 24 2021 Benjamin A. Beasley - 3.8.1-2 +- Stop disabling debug packages +- Unbundle llhttp +- Run the tests + +* Wed Dec 01 2021 Fabian Affolter - 3.8.1-1 +- Update to latest upstream release 3.8.1 + +* Thu Nov 25 2021 Fabian Affolter - 3.8.0-1 +- Update to latest upstream release 3.8.0 + +* Fri Jul 23 2021 Fedora Release Engineering - 3.7.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jun 04 2021 Python Maint - 3.7.4-2 +- Rebuilt for Python 3.10 + +* Sat Feb 27 2021 Fabian Affolter - 3.7.4-1 +- Update to latest upstream release 3.7.4 + +* Thu Feb 04 2021 Miro Hrončok - 3.7.3-3 +- Allow installation with chardet 4 + +* Wed Jan 27 2021 Fedora Release Engineering - 3.7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Fri Dec 11 2020 Fabian Affolter - 3.7.3-1 +- Update to latest upstream release 3.7.3 + +* Wed Dec 09 2020 Fabian Affolter - 3.7.2-1 +- Update to latest upstream release 3.7.2 + +* Mon Oct 26 2020 Fabian Affolter - 3.7.1-1 +- Update to new upstream version 3.7.1 + +* Wed Oct 14 2020 Fabian Affolter - 3.6.3-1 +- Update to new upstream version 3.6.3 + +* Tue Jul 28 2020 Fedora Release Engineering - 3.6.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun May 24 2020 Miro Hrončok - 3.6.2-4 +- Rebuilt for Python 3.9 + +* Wed Apr 08 2020 Carl George - 3.6.2-3 +- Don't build for s390x on EL8 + +* Thu Jan 30 2020 Fedora Release Engineering - 3.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Fri Oct 25 2019 Fabian Affolter - 3.6.2-1 +- Update to new upstream version 3.6.2 + +* Sat Sep 21 2019 Fabian Affolter - 3.6.1-1 +- Update to new upstream version 3.6.1 + +* Wed Sep 18 2019 Fabian Affolter - 3.6.0-1 +- Update to new upstream version 3.6.0 + +* Mon Aug 19 2019 Miro Hrončok - 3.5.4-5 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 3.5.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Jun 01 2019 Fabian Affolter - 3.5.4-3 +- Remove dep generator + +* Sat Feb 02 2019 Fedora Release Engineering - 3.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jan 12 2019 Fabian Affolter - 3.5.4-1 +- Update to new upstream version 3.5.4 + +* Fri Jan 11 2019 Fabian Affolter - 3.5.3-1 +- Update to new upstream version 3.5.3 + +* Thu Jan 10 2019 Fabian Affolter - 3.5.2-1 +- Update to new upstream version 3.5.2 + +* Wed Dec 26 2018 Fabian Affolter - 3.5.1-1 +- Update to new upstream version 3.5.1 + +* Thu Sep 06 2018 Fabian Affolter - 3.4.4-1 +- Update to new upstream version 3.4.4 (rhbz#1625634) + +* Wed Sep 05 2018 Igor Gnatenko - 3.4.3-1 +- Update to 3.4.3 + +* Sun Sep 02 2018 Igor Gnatenko - 3.4.2-1 +- Update to 3.4.2 + +* Mon Aug 27 2018 Igor Gnatenko - 3.4.0-4 +- Unbundle http-parser (rhbz#1622508) + +* Mon Aug 27 2018 Fabian Affolter - 3.4.0-3 +- Fix rhbz#1622310 + +* Sat Aug 25 2018 Igor Gnatenko - 3.4.0-2 +- Recommend aiodns + +* Sat Aug 25 2018 Fabian Affolter - 3.4.0-1 +- Update to new upstream version 3.4.0 (rhbz#1622288) + +* Fri Jul 13 2018 Fedora Release Engineering - 3.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jun 19 2018 Miro Hrončok - 3.3.2-2 +- Rebuilt for Python 3.7 + +* Tue Jun 12 2018 Fabian Affolter - 3.3.2-1 +- Update to new upstream version 3.3.2 + +* Wed Jun 06 2018 Fabian Affolter - 3.3.1-1 +- Update to new upstream version 3.3.1 + +* Fri Jun 01 2018 Fabian Affolter - 3.3.0-1 +- Update to new upstream version 3.3.0 (rhbz#1585170) + +* Thu May 10 2018 Fabian Affolter - 3.2.1-1 +- Update to new upstream version 3.2.1 (rhbz#1576796) + +* Mon May 07 2018 Fabian Affolter - 3.2.0-1 +- Update to new upstream version 3.2.0 (rhbz#1575435) + +* Sat Apr 14 2018 Fabian Affolter - 3.1.3-1 +- Update to new upstream version 3.1.3 (rhbz#1567093) + +* Fri Apr 06 2018 Fabian Affolter - 3.1.2-1 +- Update to new upstream version 3.1.2 + +* Tue Mar 27 2018 Fabian Affolter - 3.1.1-1 +- Update to new upstream version 3.1.1 + +* Fri Mar 23 2018 Fabian Affolter - 3.1.0-1 +- Update to new upstream version 3.1.0 + +* Thu Mar 15 2018 Fabian Affolter - 3.0.9-1 +- Update to new upstream version 3.0.9 (rhbz#1556612) + +* Tue Mar 13 2018 Fabian Affolter - 3.0.8-1 +- Update to new upstream version 3.0.8 + +* Fri Mar 09 2018 Fabian Affolter - 3.0.7-1 +- Update to new upstream version 3.0.7 (rhbz#1548601) + +* Tue Mar 06 2018 Fabian Affolter - 3.0.6-1 +- Update to new upstream version 3.0.6 (rhbz#1548601) + +* Wed Feb 28 2018 Fabian Affolter - 3.0.5-1 +- Update to new upstream version 3.0.5 (rhbz#1548601) + +* Mon Feb 12 2018 Fabian Affolter - 3.0.1-1 +- Update to new upstream version 3.0.1 + +* Mon Feb 12 2018 Fabian Affolter - 3.0.0-1 +- Update to new upstream version 3.0.0 (rhbz#1544413) + +* Fri Feb 09 2018 Fedora Release Engineering - 2.3.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Feb 02 2018 Fabian Affolter - 2.3.10-1 +- Update to new upstream version 2.3.10 (rhbz#1541369) + +* Fri Jan 19 2018 Igor Gnatenko - 2.3.9-2 +- Enable usage of dependency generator + +* Wed Jan 17 2018 Igor Gnatenko - 2.3.9-1 +- Update to 2.3.9 + +* Mon Jan 15 2018 Fabian Affolter - 2.3.8-1 +- Update to new upstream version 2.3.8 + +* Wed Dec 27 2017 Fabian Affolter - 2.3.7-1 +- Update to new upstream version 2.3.7 (rhbz#1529275) + +* Mon Dec 04 2017 Fabian Affolter - 2.3.6-1 +- Update to new upstream version 2.3.6 + +* Fri Dec 01 2017 Fabian Affolter - 2.3.5-1 +- Update to new upstream version 2.3.5 + +* Fri Nov 17 2017 Fabian Affolter - 2.3.3-1 +- Update to new upstream version 2.3.3 (rhbz#1514434) + +* Thu Nov 02 2017 Igor Gnatenko - 2.3.2-1 +- Update to 2.3.2 + +* Fri Oct 20 2017 Fabian Affolter - 2.3.1-1 +- Update to new upstream version 2.3.1 (rhbz#1504339) + +* Wed Oct 18 2017 Fabian Affolter - 2.3.0-1 +- Update to new upstream version 2.3.0 + +* Fri Aug 04 2017 Fabian Affolter - 2.2.5-1 +- Update to new upstream version 2.2.5 + +* Thu Aug 03 2017 Fabian Affolter - 2.2.4-1 +- Update to new upstream version 2.2.4 + +* Thu Aug 03 2017 Fedora Release Engineering - 2.2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 2.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Jul 06 2017 Fabian Affolter - 2.2.3-1 +- Update to new upstream version 2.2.3 (rhbz#1467742) + +* Mon Jul 03 2017 Fabian Affolter - 2.2.2-1 +- Update to new upstream version 2.2.2 + +* Mon Jul 03 2017 Fabian Affolter - 2.2.1-1 +- Update to new upstream version 2.2.1 (rhbz#1467114) + +* Tue Jun 20 2017 Fabian Affolter - 2.2.0-1 +- Update to new upstream version 2.2.0 (rhbz#1463234) + +* Sat May 27 2017 Fabian Affolter - 2.1.0-1 +- Update URL +- Update to new upstream version 2.1.0 (rhbz#1456063) + +* Fri Apr 14 2017 Igor Gnatenko - 2.0.7-1 +- Update to 2.0.7 + +* Fri Apr 07 2017 Igor Gnatenko - 2.0.6-1 +- Update to 2.0.6 + +* Thu Mar 30 2017 Igor Gnatenko - 2.0.5-1 +- Update to 2.0.5 + +* Tue Mar 28 2017 Igor Gnatenko - 2.0.4-1 +- Update to 2.0.4 + +* Sat Mar 25 2017 Fabian Affolter - 2.0.3-1 +- Update to new upstream version 2.0.3 (rhbz#1435844) + +* Thu Mar 23 2017 Igor Gnatenko - 2.0.2-3 +- Specify proper yarl version + +* Thu Mar 23 2017 Igor Gnatenko - 2.0.2-2 +- Fix requires + +* Thu Mar 23 2017 Fabian Affolter - 2.0.2-1 +- Update to new upstream version 2.0.2 (rhbz#1432690) + +* Wed Mar 15 2017 Igor Gnatenko - 1.3.4-1 +- Update to 1.3.4 + +* Mon Feb 20 2017 Fabian Affolter - 1.3.3-1 +- Update to new upstream version 1.3.3 (rhbz#1423053) + +* Thu Feb 09 2017 Igor Gnatenko - 1.3-1 +- Update to 1.3 + +* Sun Jan 22 2017 Fabian Affolter - 1.2-1 +- Update to new upstream version 1.2 +- Add new requirement +- Add real description + +* Sun Jan 01 2017 Igor Gnatenko - 1.0.5-3 +- Add missing dependency on async-timeout (RHBZ #1391287) + +* Mon Dec 19 2016 Miro Hrončok - 1.0.5-2 +- Rebuild for Python 3.6 + +* Mon Oct 31 2016 Fabian Affolter - 1.0.5-1 +- Update to new upstream version 1.0.5 + +* Tue Aug 30 2016 Fabian Affolter - 0.22.5-1 +- Update to new upstream version 0.22.5 + +* Wed Aug 10 2016 Igor Gnatenko - 0.21.6-4 +- Move requires under real subpackage + +* Tue Jul 19 2016 Fedora Release Engineering - 0.21.6-3 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Jun 23 2016 Igor Gnatenko - 0.21.6-2 +- Add missing Requires: python3-multidict (RHBZ #1349576) + +* Thu May 12 2016 Igor Gnatenko - 0.21.6-1 +- Update to 0.21.6 + +* Tue Mar 22 2016 Fabian Affolter - 0.21.5-1 +- Update to new upstream version 0.21.5 + +* Sat Mar 05 2016 Fabian Affolter - 0.21.2-1 +- Update to new upstream version 0.21.2 + +* Sun Feb 14 2016 Fabian Affolter - 0.21.1-1 +- Add requirements (rhbz#1300186) +- Update to new upstream version 0.21.1 + +* Thu Feb 04 2016 Fabian Affolter - 0.21.0-1 +- Update to new upstream version 0.21.0 + +* Thu Feb 04 2016 Fedora Release Engineering - 0.19.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Nov 27 2015 Fabian Affolter - 0.19.0-1 +- Update py3 +- Update to new upstream version 0.19.0 + +* Tue Nov 10 2015 Fedora Release Engineering - 0.17.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Fri Oct 16 2015 Fabian Affolter - 0.17.4-1 +- Update to new upstream version 0.17.4 + +* Sat Aug 01 2015 Fabian Affolter - 0.16.6-2 +- Fix license + +* Sat Aug 01 2015 Fabian Affolter - 0.16.6-1 +- Update to lastest upstream release 0.16.6 (rhbz#1231670) + +* Thu Jun 18 2015 Fedora Release Engineering - 0.16.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Jun 15 2015 Fabian Affolter - 0.16.5-1 +- Update to lastest upstream release 0.16.5 (rhbz#1231670) + +* Wed Nov 26 2014 Fabian Affolter - 0.10.2-1 +- Update to lastest upstream release 0.10.2 + +* Wed Oct 08 2014 Fabian Affolter - 0.9.1-2 +- Build only a py3 package + +* Wed Feb 26 2014 Fabian Affolter - 0.9.1-1 +- Initial package for Fedora