initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 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 9e66aa767a0afd681e2a797b835cad1d pycares-4.1.2.tar.gz
sha256 03490be0e7b51a0c8073f877bec347eff31003f64f57d9518d419d9369452837 pycares-4.1.2.tar.gz
# Locally computed sha256 checksums
sha256 427bb3a5372024a26e2c290b24382512bcc7ca123431c4dd178dd613beea7eee LICENSE
+15
View File
@@ -0,0 +1,15 @@
################################################################################
#
# python-pycares
#
################################################################################
PYTHON_PYCARES_VERSION = 4.1.2
PYTHON_PYCARES_SOURCE = pycares-$(PYTHON_PYCARES_VERSION).tar.gz
PYTHON_PYCARES_SITE = https://files.pythonhosted.org/packages/83/61/17bd0cfb9c4dc8c3738484d604b50d47c78fe4fcfe0ca2c58a61a106f578
PYTHON_PYCARES_SETUP_TYPE = setuptools
PYTHON_PYCARES_LICENSE = MIT
PYTHON_PYCARES_LICENSE_FILES = LICENSE
PYTHON_PYCARES_DEPENDENCIES = host-python-cffi
$(eval $(python-package))