mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-16 16:51:33 +00:00
Upgrade to release 5.0.1:
- Use Literal for type
- Use CMake for compiling c-ares
- Move project metadata to pyproject.toml
- Remove gethostbyname
- Remove getsock
- Replace ares_{get,set}servers with ares_{get,set}_servers_csv
- Remove ares_init and ares_mkquery, they are unused
- Make c-ares thread-safety mandatory
- Migrate API to c-ares' dnsrec variants
- Build wheels in parallel
- Update bundled c-ares to v1.34.6
- Make callback a mandatory kwarg-only argument
- Return bytes data for TXT records
- Add support for TLSA, HTTP and URI queries
- Remove event_thread option, make it implicit
- Fix IDNA 2008 test
Signed-off-by: Leon Anavi <leon.anavi@konsulko.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] = "5a3c249c830432631439815f9a818463416f2a8cbdb1e988e78757de9ae75081"
|
|
|
|
PYPI_PACKAGE = "pycares"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
DEPENDS += "python3-cffi-native"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-cffi \
|
|
python3-idna \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|