mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-18 08:15:56 +01:00
Changelog: ============== - Remove unused import - Fixup chunked TXT record test - Remove overzealous checks - Fix OpenBSD build - Make result.type Final - Idna resource reduction using a length check - Add read & write process_fd functions - build(deps): bump pypa/cibuildwheel from 2.23.3 to 3.0.0 - Remove context manager support - Fixup test CI - Refactor channel destruction logic Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
23 lines
639 B
BlitzBasic
23 lines
639 B
BlitzBasic
SUMMARY = "Python interface for c-ares"
|
|
DESCRIPTION = "\
|
|
pycares is a Python module which provides an interface to c-ares. c-ares is \
|
|
a C library that performs DNS requests and name resolutions asynchronously."
|
|
HOMEPAGE = "https://github.com/saghul/pycares"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=b1538fcaea82ebf2313ed648b96c69b1"
|
|
|
|
SRC_URI[sha256sum] = "9df70dce6e05afa5d477f48959170e569485e20dad1a089c4cf3b2d7ffbd8bf9"
|
|
|
|
PYPI_PACKAGE = "pycares"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
DEPENDS += "python3-cffi-native"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-cffi \
|
|
python3-idna \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|