mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

python 2 is gone and we don't need the abstraction now, drop the remaining usage of this variable. The definition in python3-dir.bbclass is left for now for other layers. (From OE-Core rev: b566b1e32c7993d1ab7795562f648e52ce186a70) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
49 lines
1.0 KiB
BlitzBasic
49 lines
1.0 KiB
BlitzBasic
SUMMARY = "Python Jinja2: A small but fast and easy to use stand-alone template engine written in pure python."
|
|
HOMEPAGE = "https://pypi.org/project/Jinja2/"
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=5dc88300786f1c214c1e9827a5229462"
|
|
|
|
SRC_URI[sha256sum] = "ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"
|
|
|
|
PYPI_PACKAGE = "Jinja2"
|
|
|
|
CVE_PRODUCT = "jinja2 jinja"
|
|
|
|
CLEANBROKEN = "1"
|
|
|
|
inherit pypi setuptools3 ptest
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
python3-toml \
|
|
python3-unixadmin \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-asyncio \
|
|
python3-crypt \
|
|
python3-io \
|
|
python3-json \
|
|
python3-markupsafe \
|
|
python3-math \
|
|
python3-netclient \
|
|
python3-numbers\
|
|
python3-pickle \
|
|
python3-pprint \
|
|
python3-shell \
|
|
python3-threading \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|