summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-11-18 17:29:52 +0800
committerKhem Raj <raj.khem@gmail.com>2024-11-19 16:59:15 -0800
commit60d25ced3734364a653c7f39352e4b4bcffc8705 (patch)
tree8e09a8f473ccdf753fc4f32f9a1f4e5c00d392cb /meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb
parentd5ed13e04e1861ab88b5a559edc415a35827c3c3 (diff)
downloadmeta-openembedded-60d25ced3734364a653c7f39352e4b4bcffc8705.tar.gz
python3-yappi: upgrade 1.6.0 -> 1.6.10
py3.13.patch removed since it's included in 1.6.10 Changelog: ========= - Fix source distribution not released - Fix error not cleared from an internal PyObject_GetAttrString call 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.6.10.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb b/meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb
new file mode 100644
index 0000000000..c87d5aca61
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb
@@ -0,0 +1,36 @@
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] = "463b822727658937bd95a7d80ca9758605b8cd0014e004e9e520ec9cb4db0c92"
8
9SRC_URI += "file://run-ptest \
10 file://0001-test_functionality-convert-line-endings-to-Unix.patch \
11 file://0002-Fix-import-of-tests.utils-to-enable-pytest.patch \
12 "
13
14inherit pypi python_setuptools_build_meta ptest
15
16RDEPENDS:${PN} += "\
17 python3-datetime \
18 python3-pickle \
19 python3-threading \
20"
21
22RDEPENDS:${PN}-ptest += " \
23 python3-gevent \
24 python3-multiprocessing \
25 python3-pytest \
26 python3-profile \
27 python3-unittest-automake-output \
28 python3-zopeinterface \
29"
30
31do_install_ptest() {
32 install -d ${D}${PTEST_PATH}/tests
33 cp -rf ${S}/tests ${D}${PTEST_PATH}
34 cp -f ${S}/run_tests.py ${D}${PTEST_PATH}
35}
36