mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: =========== - minor docs fixes - worker_class parameter accepts a class - fix deadlock if request terminated during chunked parsing - permit receiving Transfer-Encodings: compress, deflate, gzip - permit Transfer-Encoding headers specifying multiple encodings. note: no parameters, still - sdist generation now explicitly excludes sphinx build folder - decode bytes-typed status (as can be passed by gevent) as utf-8 instead of raising TypeError - raise correct Exception when encounting invalid chunked requests - the SCRIPT_NAME and PATH_INFO headers, when received from allowed forwarders, are no longer restricted for containing an underscore - include IPv6 loopback address [::1] in default for forwarded_allow_ips and proxy_allow_ips - refuse requests where the uri field is empty - refuse requests with invalid CR/LR/NUL in heade field values - remove temporary --tolerate-dangerous-framing switch from 22.0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
27 lines
599 B
BlitzBasic
27 lines
599 B
BlitzBasic
SUMMARY = "WSGI HTTP Server for UNIX"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=5b70a8b30792a916f50dc96123e61ddf"
|
|
|
|
SRC_URI[sha256sum] = "f014447a0101dc57e294f6c18ca6b40227a4c90e9bdb586042628030cba004ec"
|
|
|
|
inherit pypi python_setuptools_build_meta ptest
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-eventlet \
|
|
python3-gevent \
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
RDEPENDS:${PN} += "python3-setuptools python3-fcntl"
|