1
0
forked from pool/python-aiodns

4 Commits

Author SHA256 Message Date
1ff6e8dcf8 Accepting request 1292437 from devel:languages:python
- update to 3.5.0:
  * Added explicit close method (#166)
  * Fixed return type signature for CNAME and SOA records (#162)
  * Improved Windows event loop documentation (#163)
    loops on Windows
  * Added fallback to `sock_state_cb` if `event_thread` creation
    fails (#151)
  * Implemented strict typing (#138)
  * Updated dependencies
  * Used c-ares event thread when available (#145)
  * Dropped Python 3.8 support (#129)
  * Updated CI infrastructure
    upload/download artifact (#148)

OBS-URL: https://build.opensuse.org/request/show/1292437
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-aiodns?expand=0&rev=11
2025-07-18 13:57:32 +00:00
309bf20b2d - update to 3.5.0:
* Added explicit close method (#166)
  * Fixed return type signature for CNAME and SOA records (#162)
  * Improved Windows event loop documentation (#163)
    loops on Windows
  * Added fallback to `sock_state_cb` if `event_thread` creation
    fails (#151)
  * Implemented strict typing (#138)
  * Updated dependencies
  * Used c-ares event thread when available (#145)
  * Dropped Python 3.8 support (#129)
  * Updated CI infrastructure
    upload/download artifact (#148)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiodns?expand=0&rev=28
2025-07-12 17:29:16 +00:00
e2695f745d Accepting request 1277076 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1277076
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-aiodns?expand=0&rev=10
2025-05-23 12:27:09 +00:00
eb9e9541bb - Convert to pip-based build
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiodns?expand=0&rev=26
2025-05-13 09:20:36 +00:00
4 changed files with 35 additions and 13 deletions

BIN
aiodns-3.2.0.tar.gz (Stored with Git LFS)

Binary file not shown.

3
aiodns-3.5.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4db196bed4b7904afd3fbead515cee74fa997ec42d9853315229f74b07f821e2
size 16312

View File

@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Sat Jul 12 17:28:35 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 3.5.0:
* Added explicit close method (#166)
* Fixed return type signature for CNAME and SOA records (#162)
* Improved Windows event loop documentation (#163)
loops on Windows
* Added fallback to `sock_state_cb` if `event_thread` creation
fails (#151)
* Implemented strict typing (#138)
* Updated dependencies
* Used c-ares event thread when available (#145)
* Dropped Python 3.8 support (#129)
* Updated CI infrastructure
upload/download artifact (#148)
-------------------------------------------------------------------
Tue May 13 07:28:26 UTC 2025 - Markéta Machová <mmachova@suse.com>
- Convert to pip-based build
-------------------------------------------------------------------
Tue Apr 2 09:42:31 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-aiodns
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,27 +18,26 @@
# DNS tests won't work in OBS
%bcond_with tests
%define skip_python2 1
%{?sle15_python_module_pythons}
Name: python-aiodns
Version: 3.2.0
Version: 3.5.0
Release: 0
Summary: Simple DNS resolver for asyncio
License: MIT
Group: Development/Libraries/Python
URL: https://github.com/saghul/aiodns/releases
Source0: https://github.com/saghul/aiodns/archive/refs/tags/v%{version}.tar.gz#/aiodns-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
Requires: python-pycares >= 4.0.0
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-pycares >= 4.0.0
BuildArch: noarch
%if %{with tests}
BuildRequires: %{python_module pycares}
BuildRequires: python-typing
%endif
BuildArch: noarch
%python_subpackages
%description
@@ -48,10 +47,10 @@ Simple DNS resolver for asyncio module.
%autosetup -p1 -n aiodns-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}/aiodns/
%if %{with tests}
@@ -62,6 +61,7 @@ Simple DNS resolver for asyncio module.
%files %{python_files}
%doc ChangeLog README.rst
%license LICENSE
%{python_sitelib}/aiodns*
%{python_sitelib}/aiodns
%{python_sitelib}/aiodns-%{version}*-info
%changelog