[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_PYCARES
bool "python-pycares"
select BR2_PACKAGE_PYTHON_CFFI # runtime
help
Python interface for c-ares.
http://github.com/saghul/pycares

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pycares/json
md5 92fa9622ba42cb895d598910722e80b5 pycares-4.2.1.tar.gz
sha256 735b4f75fd0f595c4e9184da18cd87737f46bc81a64ea41f4edce2b6b68d46d2 pycares-4.2.1.tar.gz
# Locally computed sha256 checksums
sha256 427bb3a5372024a26e2c290b24382512bcc7ca123431c4dd178dd613beea7eee LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-pycares
#
################################################################################
PYTHON_PYCARES_VERSION = 4.2.1
PYTHON_PYCARES_SOURCE = pycares-$(PYTHON_PYCARES_VERSION).tar.gz
PYTHON_PYCARES_SITE = https://files.pythonhosted.org/packages/99/da/d3d20bc7bd5baadeea04ee84db16f1f07557138c313bd6200e1cffab5bee
PYTHON_PYCARES_SETUP_TYPE = setuptools
PYTHON_PYCARES_LICENSE = MIT
PYTHON_PYCARES_LICENSE_FILES = LICENSE
PYTHON_PYCARES_DEPENDENCIES = host-python-cffi
$(eval $(python-package))