blob: cc705f4efea992480c012d4d0cc523eee61d657a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
SUMMARY = "A WSGI server for Python"
DESCRIPTION = "Waitress is meant to be a production-quality pure-Python WSGI \
server with very acceptable performance."
HOMEPAGE = "https://github.com/Pylons/waitress"
SECTION = "devel/python"
LICENSE = "ZPL-2.1"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=78ccb3640dc841e1baecb3e27a6966b2"
CVE_PRODUCT = "waitress"
RDEPENDS:${PN} += " \
python3-logging \
"
RDEPENDS:${PN}-ptest += "\
python3-doctest \
python3-json \
python3-multiprocessing \
python3-pytest \
python3-unittest \
python3-unittest-automake-output \
"
SRC_URI += "file://run-ptest"
SRC_URI[sha256sum] = "682aaaf2af0c44ada4abfb70ded36393f0e307f4ab9456a215ce0020baefc31f"
inherit python_setuptools_build_meta pypi ptest
do_install_ptest(){
cp -r ${S}/tests ${D}${PTEST_PATH}
}
|