Hello community, here is the log from the commit of package python-aiodns for openSUSE:Factory checked in at 2020-07-09 13:20:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-aiodns (Old) and /work/SRC/openSUSE:Factory/.python-aiodns.new.3060 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-aiodns" Thu Jul 9 13:20:27 2020 rev:5 rq:819688 version:2.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-aiodns/python-aiodns.changes 2019-03-22 15:10:11.985347498 +0100 +++ /work/SRC/openSUSE:Factory/.python-aiodns.new.3060/python-aiodns.changes 2020-07-09 13:21:38.457700723 +0200 @@ -1,0 +2,12 @@ +Thu Jul 9 07:47:23 UTC 2020 - Matthias Fehring <[email protected]> + +- fix python-aiodns-2.0.0-fix-typing-dependency.patch and really + apply it + +------------------------------------------------------------------- +Thu Jul 9 05:55:21 UTC 2020 - Matthias Fehring <[email protected]> + +- add python-aiodns-2.0.0-fix-typing-dependency.patch to fix wrong + dependency to python-typing on python 3.5+ (gh#saghul/aiodns/issues/71) + +------------------------------------------------------------------- New: ---- python-aiodns-2.0.0-fix-typing-dependency.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-aiodns.spec ++++++ --- /var/tmp/diff_new_pack.7WZzl7/_old 2020-07-09 13:21:39.621704401 +0200 +++ /var/tmp/diff_new_pack.7WZzl7/_new 2020-07-09 13:21:39.625704413 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-aiodns # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -27,8 +27,10 @@ Summary: Simple DNS resolver for asyncio License: MIT Group: Development/Libraries/Python -Url: https://github.com/saghul/aiodns/releases +URL: https://github.com/saghul/aiodns/releases Source0: https://github.com/saghul/aiodns/archive/aiodns-%{version}.tar.gz +# PATCH-FIX-UPSTREAM python-aiodns-2.0.0-fix-typing-dependency.patch gh#saghul/aiodns/issues/71 -- [email protected] +Patch0: python-aiodns-2.0.0-fix-typing-dependency.patch BuildRequires: %{python_module setuptools} Requires: python-pycares >= 3.0.0 BuildRequires: fdupes @@ -46,6 +48,7 @@ %prep %setup -q -n aiodns-aiodns-%{version} +%patch0 -p1 %build %python_build ++++++ python-aiodns-2.0.0-fix-typing-dependency.patch ++++++ >From 281112107c742a3e24e8bce2cb09c3c4d9d01b6d Mon Sep 17 00:00:00 2001 From: Gerion Entrup <[email protected]> Date: Sun, 8 Sep 2019 12:34:10 +0200 Subject: [PATCH] setup: typing exists since Python 3.5 Fix #71. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/setup.py 2019-03-02 13:01:34.000000000 +0100 +++ b/setup.py 2020-07-09 09:44:16.606974490 +0200 @@ -18,7 +18,7 @@ url = "http://github.com/saghul/aiodns", description = "Simple DNS resolver for asyncio", long_description = codecs.open("README.rst", encoding="utf-8").read(), - install_requires = ['pycares>=3.0.0', 'typing; python_version<"3.7"'], + install_requires = ['pycares>=3.0.0', 'typing; python_version<"3.5"'], packages = ['aiodns'], platforms = ["POSIX", "Microsoft Windows"], classifiers = [
