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

Changelog: =========== - Fix compression speed gains for the thread pool when running Django's collectstatic. - Raise any errors from threads in the whitenoise.compress command. - Drop Django 3.2 to 4.1 support. - Drop Python 3.8 support. - Support Python 3.13. - Fix a bug introduced in version 6.0.0 where Range requests could lead to database connection errors in other requests. - Use Django's FORCE_SCRIPT_NAME setting correctly. - Compress files using a thread pool. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
19 lines
506 B
BlitzBasic
19 lines
506 B
BlitzBasic
SUMMARY = "Radically simplified static file serving for WSGI applications"
|
|
HOMEPAGE = "https://whitenoise.evans.io"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=aba4901cc64e401cea5a267eac2a2e1e"
|
|
|
|
PYPI_PACKAGE = "whitenoise"
|
|
|
|
SRC_URI[sha256sum] = "486bd7267a375fa9650b136daaec156ac572971acc8bf99add90817a530dd1d4"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
RDEPENDS:${PN}:append = " \
|
|
python3-brotli \
|
|
python3-coverage \
|
|
python3-django \
|
|
python3-pytest \
|
|
python3-requests \
|
|
"
|