[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,11 @@
config BR2_PACKAGE_PYTHON_DOCKER
bool "python-docker"
# docker-engine may be running on another host, so no other dependency
select BR2_PACKAGE_PYTHON3_SSL # runtime
select BR2_PACKAGE_PYTHON_REQUESTS # runtime
select BR2_PACKAGE_PYTHON_SIX # runtime
select BR2_PACKAGE_PYTHON_WEBSOCKET_CLIENT # runtime
help
A Python library for the Docker Engine API.
https://github.com/docker/docker-py

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/docker/json
md5 e1e8dc73e3220fe9eec1faf80b0290de docker-4.1.0.tar.gz
sha256 6e06c5e70ba4fad73e35f00c55a895a448398f3ada7faae072e2bb01348bafc1 docker-4.1.0.tar.gz
# Locally computed sha256 checksums
sha256 f2f0b07fa5e492c11d27aa0d2f3f1a0e64b9d17f32d8aa489ae2af9609af33b2 LICENSE

View File

@ -0,0 +1,16 @@
################################################################################
#
# python-docker
#
################################################################################
PYTHON_DOCKER_VERSION = 4.1.0
PYTHON_DOCKER_SOURCE = docker-$(PYTHON_DOCKER_VERSION).tar.gz
PYTHON_DOCKER_SITE = https://files.pythonhosted.org/packages/de/54/a822d7116ff2f726f3da2b3e6c87659657bdcb7a36e382860ed505ed5e45
PYTHON_DOCKER_SETUP_TYPE = setuptools
PYTHON_DOCKER_LICENSE = Apache-2.0
PYTHON_DOCKER_LICENSE_FILES = LICENSE
PYTHON_DOCKER_CPE_ID_VENDOR = docker
PYTHON_DOCKER_CPE_ID_PRODUCT = docker-py
$(eval $(python-package))