This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PYCARES
bool "python-pycares"
depends on BR2_PACKAGE_PYTHON3
select BR2_PACKAGE_PYTHON_CFFI # runtime
help
Python interface for c-ares.
http://github.com/saghul/pycares
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pycares/json
md5 8a53781dd26db01ffe0b3358877bebbd pycares-3.0.0.tar.gz
sha256 b253f5dcaa0ac7076b79388a3ac80dd8f3bd979108f813baade40d3a9b8bf0bd pycares-3.0.0.tar.gz
# Locally computed sha256 checksums
sha256 427bb3a5372024a26e2c290b24382512bcc7ca123431c4dd178dd613beea7eee LICENSE
+15
View File
@@ -0,0 +1,15 @@
################################################################################
#
# python-pycares
#
################################################################################
PYTHON_PYCARES_VERSION = 3.0.0
PYTHON_PYCARES_SOURCE = pycares-$(PYTHON_PYCARES_VERSION).tar.gz
PYTHON_PYCARES_SITE = https://files.pythonhosted.org/packages/85/de/cd46a73e43e206a6ad1e9cf9cc893c3ed1b21caf57f1e0a8d9a119d290eb
PYTHON_PYCARES_SETUP_TYPE = setuptools
PYTHON_PYCARES_LICENSE = MIT
PYTHON_PYCARES_LICENSE_FILES = LICENSE
PYTHON_PYCARES_DEPENDENCIES = host-python-cffi
$(eval $(python-package))