[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,13 @@
config BR2_PACKAGE_PYTHON_REQUESTS
bool "python-requests"
select BR2_PACKAGE_PYTHON_CERTIFI # runtime
select BR2_PACKAGE_PYTHON_CHARSET_NORMALIZER # runtime
select BR2_PACKAGE_PYTHON_IDNA # runtime
select BR2_PACKAGE_PYTHON_URLLIB3 # runtime
select BR2_PACKAGE_PYTHON3_SSL # runtime
select BR2_PACKAGE_PYTHON3_ZLIB # runtime
help
Requests is an Apache2 Licensed HTTP library, written in
Python, for human beings.
http://www.python-requests.org/

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/requests/json
md5 796ea875cdae283529c03b9203d9c454 requests-2.28.1.tar.gz
sha256 7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983 requests-2.28.1.tar.gz
# Locally computed sha256 checksums
sha256 09e8a9bcec8067104652c168685ab0931e7868f9c8284b66f5ae6edae5f1130b LICENSE

View File

@ -0,0 +1,22 @@
################################################################################
#
# python-requests
#
################################################################################
PYTHON_REQUESTS_VERSION = 2.28.1
PYTHON_REQUESTS_SOURCE = requests-$(PYTHON_REQUESTS_VERSION).tar.gz
PYTHON_REQUESTS_SITE = https://files.pythonhosted.org/packages/a5/61/a867851fd5ab77277495a8709ddda0861b28163c4613b011bc00228cc724
PYTHON_REQUESTS_SETUP_TYPE = setuptools
PYTHON_REQUESTS_LICENSE = Apache-2.0
PYTHON_REQUESTS_LICENSE_FILES = LICENSE
PYTHON_REQUESTS_CPE_ID_VENDOR = python
PYTHON_REQUESTS_CPE_ID_PRODUCT = requests
HOST_PYTHON_REQUESTS_DEPENDENCIES = \
host-python-certifi \
host-python-charset-normalizer \
host-python-idna \
host-python-urllib3
$(eval $(python-package))
$(eval $(host-python-package))