[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_REQUEST_ID
bool "python-request-id"
select BR2_PACKAGE_PYTHON_WEBOB # runtime
help
Attach a unique identifier to every WSGI request.
https://github.com/mmerickel/request_id

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/request-id/json
md5 abf0125561fb38198893ba4b46c5ce28 request-id-1.0.1.tar.gz
sha256 4adf1dc880085571454667ee4dba36a12b720eea5dbbfbbbd840c5a24268b4f7 request-id-1.0.1.tar.gz
# Locally computed sha256 checksums
sha256 2d65d17b4df34f184557b8031df05e4c264d2fa6b82e560be074967eff3b326c LICENSE.txt

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-request-id
#
################################################################################
PYTHON_REQUEST_ID_VERSION = 1.0.1
PYTHON_REQUEST_ID_SOURCE = request-id-$(PYTHON_REQUEST_ID_VERSION).tar.gz
PYTHON_REQUEST_ID_SITE = https://files.pythonhosted.org/packages/9b/b3/30617b85b1766b6a804f2b8abc0ca7496f6349236f7eec28cb42687ca8e3
PYTHON_REQUEST_ID_SETUP_TYPE = setuptools
PYTHON_REQUEST_ID_LICENSE = MIT
PYTHON_REQUEST_ID_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))