[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,12 @@
config BR2_PACKAGE_PYTHON_GUNICORN
bool "python-gunicorn"
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
select BR2_PACKAGE_PYTHON3_SSL # runtime
help
Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for
UNIX. It's a pre-fork worker model ported from Ruby's
Unicorn project. The Gunicorn server is broadly compatible
with various web frameworks, simply implemented, light on
server resource usage, and fairly speedy.
http://gunicorn.org/

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.python.org/pypi/gunicorn/json
md5 db8a7c5c2064000af70286534803bf1d gunicorn-20.1.0.tar.gz
sha256 e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8 gunicorn-20.1.0.tar.gz
# Locally computed sha256
sha256 789fe11b92e1cabfbcf744b5fcc392c9bd5c6798603a4e89f925b6337984d1df LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-gunicorn
#
################################################################################
PYTHON_GUNICORN_VERSION = 20.1.0
PYTHON_GUNICORN_SOURCE = gunicorn-$(PYTHON_GUNICORN_VERSION).tar.gz
PYTHON_GUNICORN_SITE = https://files.pythonhosted.org/packages/28/5b/0d1f0296485a6af03366604142ea8f19f0833894db3512a40ed07b2a56dd
PYTHON_GUNICORN_SETUP_TYPE = setuptools
PYTHON_GUNICORN_LICENSE = MIT
PYTHON_GUNICORN_LICENSE_FILES = LICENSE
$(eval $(python-package))