mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

The multilib gunicorn (for example lib32-gunicorn) fetch fails with below error: -- snip -- --2018-03-07 16:52:09-- https://pypi.python.org/packages/source/g/gunicorn/lib32-gunicorn-19.1.1.tar.gz Resolving pypi.python.org... 151.101.0.223, 151.101.64.223, 151.101.128.223, ... Connecting to pypi.python.org|151.101.0.223|:443... connected. HTTP request sent, awaiting response... 404 Not Found 2018-03-07 16:52:09 ERROR 404: Not Found. -- snip -- Signed-off-by: Jagadeesh Krishnanjanappa <jkrishnanjanappa@mvista.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
16 lines
689 B
BlitzBasic
16 lines
689 B
BlitzBasic
SUMMARY = "WSGI HTTP Server for UNIX"
|
||
DESCRIPTION = "\
|
||
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. \
|
||
"
|
||
LICENSE = "MIT"
|
||
LIC_FILES_CHKSUM = "file://LICENSE;md5=19a2e253a273e390cd1b91d19b6ee236"
|
||
|
||
SRC_URI = "https://pypi.python.org/packages/source/g/gunicorn/${BPN}-${PV}.tar.gz"
|
||
SRC_URI[md5sum] = "eaa72bff5341c05169b76ce3dcbb8140"
|
||
SRC_URI[sha256sum] = "82715511fb6246fad4ba66d812eb93416ae8371b464fa88bf3867c9c177daa14"
|
||
|
||
inherit setuptools
|