Download raw body.
py-aiodns update
I've been looking at updating aiohttp and found that some tests want
this, seems a simple standalone update so sending it separately.
Changelog looks sane.
OK?
3.1.0
Remove loop= param from asyncio.sleep() to fix tests on Python 3.10 by @mgorny in #96
Fix return type for resolver nameservers by @xtrochu in #102
Update supported Python versions by @saghul in #108
3.1.1
Add PEP-561 with py.typed by @JCHacking in #109
Fix timeout by @saghul in #110
3.2.0
Update test_query_ptr test to use address with PTR record by @kitterma in #114
Added a missing py.typed file for wheel by @AVOstap in #115
Add Winloop as a valid EventLoop by @Vizonex in #116
Add support for getaddrinfo by @bdraco in #118
Add support for getnameinfo by @bdraco in #119
Index: Makefile
===================================================================
RCS file: /cvs/ports/net/py-aiodns/Makefile,v
diff -u -p -r1.19 Makefile
--- Makefile 6 May 2024 12:23:47 -0000 1.19
+++ Makefile 22 Nov 2024 14:26:06 -0000
@@ -1,10 +1,11 @@
COMMENT = simple DNS resolver for asyncio
-MODPY_EGG_VERSION = 3.0.0
+MODPY_EGG_VERSION = 3.2.0
DISTNAME = aiodns-${MODPY_EGG_VERSION}
PKGNAME = py-${DISTNAME}
CATEGORIES = net
-REVISION = 3
+
+HOMEPAGE = https://github.com/aio-libs/aiodns
MAINTAINER = Kurt Mosiejczuk <kmos@openbsd.org>
Index: distinfo
===================================================================
RCS file: /cvs/ports/net/py-aiodns/distinfo,v
diff -u -p -r1.6 distinfo
--- distinfo 1 Nov 2021 03:40:14 -0000 1.6
+++ distinfo 22 Nov 2024 14:26:06 -0000
@@ -1,2 +1,2 @@
-SHA256 (aiodns-3.0.0.tar.gz) = lGvfq+dD/O7rCTyKAQ9dFkX3CKJBvoSeF+37DkngjNY=
-SIZE (aiodns-3.0.0.tar.gz) = 6743
+SHA256 (aiodns-3.2.0.tar.gz) = YoabI0CTScIbByiD7ImYMWsjTJqeNmdXVujjF+h2j3I=
+SIZE (aiodns-3.2.0.tar.gz) = 7823
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/net/py-aiodns/pkg/PLIST,v
diff -u -p -r1.6 PLIST
--- pkg/PLIST 13 Nov 2022 19:37:41 -0000 1.6
+++ pkg/PLIST 22 Nov 2024 14:26:06 -0000
@@ -14,3 +14,4 @@ lib/python${MODPY_VERSION}/site-packages
lib/python${MODPY_VERSION}/site-packages/aiodns/${MODPY_PYCACHE}error.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
lib/python${MODPY_VERSION}/site-packages/aiodns/${MODPY_PYCACHE}error.${MODPY_PYC_MAGIC_TAG}pyc
lib/python${MODPY_VERSION}/site-packages/aiodns/error.py
+lib/python${MODPY_VERSION}/site-packages/aiodns/py.typed
py-aiodns update