mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Some of them were introduced by mass-removal of S = WORKDIR/git assignments;
rather than try to fix up (or redo) just these, I've run this sed command over
the whole tree:
sed -i -z -E 's/([ \t\f\v\r]*\n){3,}/\n\n/g' `find . -name *.bb -o -name *.inc`
The rationale is that more than one empty line is wasting vertical screen space, and
does nothing for readability.
(From OE-Core rev: cedc4ff7c9bcfb22a20e43e47f9759f4007a4f1a)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
743 B
BlitzBasic
28 lines
743 B
BlitzBasic
SUMMARY = "Templating library for Python"
|
|
HOMEPAGE = "http://www.makotemplates.org/"
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=73026b50800163bd3c75cfdc121d9eb5"
|
|
|
|
PYPI_PACKAGE = "mako"
|
|
|
|
inherit pypi python_setuptools_build_meta ptest-python-pytest
|
|
|
|
SRC_URI[sha256sum] = "99579a6f39583fa7e5630a28c3c1f440e4e97a414b80372649c0ce338da2ea28"
|
|
|
|
RDEPENDS:${PN} = "python3-html \
|
|
python3-markupsafe \
|
|
python3-misc \
|
|
python3-netclient \
|
|
python3-pygments \
|
|
python3-threading \
|
|
"
|
|
|
|
PTEST_PYTEST_DIR = "test"
|
|
|
|
do_install_ptest:append() {
|
|
install -m 0644 ${S}/setup.cfg ${D}${PTEST_PATH}/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|