Hello community,

here is the log from the commit of package python-aiohttp for openSUSE:Factory 
checked in at 2019-09-23 12:33:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-aiohttp (Old)
 and      /work/SRC/openSUSE:Factory/.python-aiohttp.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-aiohttp"

Mon Sep 23 12:33:10 2019 rev:15 rq:731668 version:3.6.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-aiohttp/python-aiohttp.changes    
2019-09-16 10:50:46.387169352 +0200
+++ /work/SRC/openSUSE:Factory/.python-aiohttp.new.7948/python-aiohttp.changes  
2019-09-23 12:36:40.093617357 +0200
@@ -1,0 +2,7 @@
+Wed Sep 18 07:34:10 UTC 2019 - Matthias Fehring <[email protected]>
+
+- Add patch to fix type error with old multidict:
+  * aiohttp-3.6.0-fix-typeerror.patch
+- Require python-multidict 4.5 or newer
+
+-------------------------------------------------------------------

New:
----
  aiohttp-3.6.0-fix-typeerror.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-aiohttp.spec ++++++
--- /var/tmp/diff_new_pack.zhBIwp/_old  2019-09-23 12:36:42.673616932 +0200
+++ /var/tmp/diff_new_pack.zhBIwp/_new  2019-09-23 12:36:42.677616932 +0200
@@ -26,12 +26,14 @@
 Group:          Development/Languages/Python
 URL:            https://github.com/aio-libs/aiohttp
 Source:         
https://files.pythonhosted.org/packages/source/a/aiohttp/aiohttp-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM aiohttp-3.6.0-fix-typeerror.patch
+Patch0:         aiohttp-3.6.0-fix-typeerror.patch
 BuildRequires:  %{python_module Cython}
 BuildRequires:  %{python_module async_timeout >= 3.0}
 BuildRequires:  %{python_module attrs >= 17.3.0}
 BuildRequires:  %{python_module chardet >= 2.0}
 BuildRequires:  %{python_module devel >= 3.5.3}
-BuildRequires:  %{python_module multidict >= 4.0}
+BuildRequires:  %{python_module multidict >= 4.5}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -41,7 +43,7 @@
 Requires:       python-brotlipy
 Requires:       python-chardet >= 2.0
 Requires:       python-gunicorn
-Requires:       python-multidict >= 4.0
+Requires:       python-multidict >= 4.5
 Requires:       python-yarl >= 1.0
 Recommends:     python-aiodns
 Recommends:     python-cChardet
@@ -93,6 +95,7 @@
 
 %prep
 %setup -q -n aiohttp-%{version}
+%patch0 -p1
 
 %build
 export CFLAGS="%{optflags}"

++++++ aiohttp-3.6.0-fix-typeerror.patch ++++++
From: Matthias Fehring <[email protected]>
Date: 2019-09-18 09:23:00 +0200
Subject: fix type error
Upstream: merged (https://github.com/aio-libs/aiohttp/pull/4057)

At least multidict 4.5 is now required.

---
 setup.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/setup.py  2019-09-06 14:54:33.000000000 +0200
+++ b/setup.py  2019-09-18 09:19:56.227118006 +0200
@@ -71,7 +71,7 @@
 install_requires = [
     'attrs>=17.3.0',
     'chardet>=2.0,<4.0',
-    'multidict>=4.0,<5.0',
+    'multidict>=4.5,<5.0',
     'async_timeout>=3.0,<4.0',
     'yarl>=1.0,<2.0',
     'idna-ssl>=1.0; python_version<"3.7"',

Reply via email to