summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-yappi_1.3.6.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2022-08-17 10:59:42 +0800
committerKhem Raj <raj.khem@gmail.com>2022-08-16 20:10:22 -0700
commit7581cea9763ea1377f84be787ad62e6877460a71 (patch)
treec1596449a9ce86b1ba98cd259b6f576969071ebc /meta-python/recipes-devtools/python/python3-yappi_1.3.6.bb
parent68946026395779dce9af99fecebd35d4f4804570 (diff)
downloadmeta-openembedded-7581cea9763ea1377f84be787ad62e6877460a71.tar.gz
python3-yappi: upgrade 1.3.5 -> 1.3.6
Changelog: - cibuildwheel integration Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-yappi_1.3.6.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-yappi_1.3.6.bb34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-yappi_1.3.6.bb b/meta-python/recipes-devtools/python/python3-yappi_1.3.6.bb
new file mode 100644
index 0000000000..2f24443194
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-yappi_1.3.6.bb
@@ -0,0 +1,34 @@
1SUMMARY = "Yet Another Python Profiler"
2HOMEPAGE = "https://github.com/sumerc/yappi"
3
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=71c208c9a4fd864385eb69ad4caa3bee"
6
7SRC_URI[sha256sum] = "0a73c608a2603570a020a32d4369ba744012bc5267f37e5bd8026fb491abba56"
8
9SRC_URI += " \
10 file://run-ptest \
11 file://0001-Fix-imports-for-ptests.patch \
12"
13
14inherit pypi setuptools3 ptest
15
16RDEPENDS:${PN} += "\
17 ${PYTHON_PN}-datetime \
18 ${PYTHON_PN}-pickle \
19 ${PYTHON_PN}-threading \
20"
21
22RDEPENDS:${PN}-ptest += " \
23 ${PYTHON_PN}-gevent \
24 ${PYTHON_PN}-multiprocessing \
25 ${PYTHON_PN}-pytest \
26 ${PYTHON_PN}-profile \
27 ${PYTHON_PN}-zopeinterface \
28"
29
30do_install_ptest() {
31 install -d ${D}${PTEST_PATH}/tests
32 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
33 cp -f ${S}/yappi/yappi.py ${D}/${PTEST_PATH}/
34}