mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-17 05:01:23 +00:00
Upgrade to release 4.0.0: - Added new query_dns() method returning native pycares 5.x DNSResult types - Deprecated query() method - still works with backward-compatible result types - Deprecated gethostbyname() method - use getaddrinfo() instead - Added compatibility layer for pycares 4.x result types to ease migration - Updated dependencies Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
19 lines
523 B
BlitzBasic
19 lines
523 B
BlitzBasic
SUMMARY = "Simple DNS resolver for asyncio"
|
|
DESCRIPTION = "aiodns provides a simple way for doing asynchronous DNS resolutions using pycares."
|
|
HOMEPAGE = "https://github.com/saghul/aiodns"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=d574ab425d1fcb37c9f1ad3961f18527"
|
|
|
|
SRC_URI[sha256sum] = "17be26a936ba788c849ba5fd20e0ba69d8c46e6273e846eb5430eae2630ce5b1"
|
|
|
|
PYPI_PACKAGE = "aiodns"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-asyncio \
|
|
python3-pycares \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|