mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-12 13:40:27 +00:00
Some new tests expect the PWD to be writable, however this is not the case when running the tests in $PTEST_PATH with a non-root user. This patch makes it writable. Ptests passed, however there is a flaky test. Upstream has a bug[1] about it: Ran 18651 tests in 144.573s OK (skipped=1396, expected failures=5) Changes: Contains fixes for CVE-2025-13473, CVE-2025-14550, CVE-2026-1207, CVE-2026-1285, CVE-2026-2187 and CVE-2026-1312 [1]: https://code.djangoproject.com/ticket/36770 Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
69 lines
1.6 KiB
PHP
69 lines
1.6 KiB
PHP
SUMMARY = "A high-level Python Web framework"
|
|
HOMEPAGE = "https://www.djangoproject.com/"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=f09eb47206614a4954c51db8a94840fa"
|
|
|
|
PYPI_PACKAGE = "django"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
inherit pypi ptest
|
|
|
|
SRC_URI += "file://run-ptest"
|
|
|
|
FILES:${PN} += "${datadir}/django"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-asgiref \
|
|
python3-compression \
|
|
python3-ctypes \
|
|
python3-datetime \
|
|
python3-email \
|
|
python3-html \
|
|
python3-json \
|
|
python3-logging \
|
|
python3-multiprocessing \
|
|
python3-netserver \
|
|
python3-numbers \
|
|
python3-pkgutil \
|
|
python3-pytz \
|
|
python3-sqlparse \
|
|
python3-threading \
|
|
python3-unixadmin \
|
|
python3-xml \
|
|
"
|
|
|
|
CVE_PRODUCT = "django"
|
|
|
|
do_install_ptest(){
|
|
install -d ${D}${PTEST_PATH}//docs/_ext
|
|
install -m 0644 ${S}/docs/_ext/github_links.py ${D}${PTEST_PATH}/docs/_ext
|
|
|
|
cp -r ${S}/tests ${D}${PTEST_PATH}
|
|
sed -i 's,/usr/bin/env python,/usr/bin/env python3,' ${D}${PTEST_PATH}/tests/runtests.py
|
|
ln -sr ${D}${libdir}/python3.*/site-packages/django ${D}${PTEST_PATH}/django
|
|
|
|
# make the top folder writable for all - django 6 creates a test db file in there
|
|
# with a test user
|
|
chmod 777 ${D}${PTEST_PATH}/tests
|
|
}
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
gettext \
|
|
python3-bcrypt \
|
|
python3-compile \
|
|
python3-docutils \
|
|
python3-fcntl \
|
|
python3-jinja2 \
|
|
python3-misc \
|
|
python3-numpy \
|
|
python3-pillow \
|
|
python3-pyyaml \
|
|
python3-sqlite3 \
|
|
python3-statistics \
|
|
python3-tblib \
|
|
python3-zoneinfo \
|
|
tzdata \
|
|
"
|