[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,16 @@
config BR2_PACKAGE_PYTHON_TREQ
bool "python-treq"
# twisted TLS -> python-{pyopenssl,service-identity}
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
select BR2_PACKAGE_PYTHON_ATTRS # runtime
select BR2_PACKAGE_PYTHON_HYPERLINK # runtime
select BR2_PACKAGE_PYTHON_INCREMENTAL # runtime
select BR2_PACKAGE_PYTHON_REQUESTS # runtime
select BR2_PACKAGE_PYTHON_TWISTED # runtime
select BR2_PACKAGE_PYTHON_TWISTED_TLS # runtime
help
treq is an HTTP library inspired by requests but written on
top of Twisted's Agents. It provides a simple, higher level
API for making HTTP requests when using Twisted.
https://github.com/twisted/treq

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/treq/json
md5 43892086d556e7596392134f1e10bdef treq-22.2.0.tar.gz
sha256 df757e3f141fc782ede076a604521194ffcb40fa2645cf48e5a37060307f52ec treq-22.2.0.tar.gz
# Locally computed sha256 checksums
sha256 7cc1b65e1937b1cc07052bb864ec96d8e5fd413400c0842e5b89a8201a600293 LICENSE

View File

@ -0,0 +1,18 @@
################################################################################
#
# python-treq
#
################################################################################
# When bumping this package, make sure to also verify if the
# python-twisted package still works and to update its hash,
# as they share the same version/site variables.
PYTHON_TREQ_VERSION = 22.2.0
PYTHON_TREQ_SOURCE = treq-$(PYTHON_TREQ_VERSION).tar.gz
PYTHON_TREQ_SITE = https://files.pythonhosted.org/packages/cd/c8/b68ab17d994133baf6edbcb5551ba81e1494bdc6d5e21a9d4f3bc4315140
PYTHON_TREQ_LICENSE = MIT
PYTHON_TREQ_LICENSE_FILES = LICENSE
PYTHON_TREQ_SETUP_TYPE = setuptools
PYTHON_TREQ_DEPENDENCIES = host-python-incremental
$(eval $(python-package))