diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-11-18 17:29:52 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-11-19 16:59:15 -0800 |
| commit | 60d25ced3734364a653c7f39352e4b4bcffc8705 (patch) | |
| tree | 8e09a8f473ccdf753fc4f32f9a1f4e5c00d392cb /meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb | |
| parent | d5ed13e04e1861ab88b5a559edc415a35827c3c3 (diff) | |
| download | meta-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.bb | 36 |
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 @@ | |||
| 1 | SUMMARY = "Yet Another Python Profiler" | ||
| 2 | HOMEPAGE = "https://github.com/sumerc/yappi" | ||
| 3 | |||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=71c208c9a4fd864385eb69ad4caa3bee" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "463b822727658937bd95a7d80ca9758605b8cd0014e004e9e520ec9cb4db0c92" | ||
| 8 | |||
| 9 | SRC_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 | |||
| 14 | inherit pypi python_setuptools_build_meta ptest | ||
| 15 | |||
| 16 | RDEPENDS:${PN} += "\ | ||
| 17 | python3-datetime \ | ||
| 18 | python3-pickle \ | ||
| 19 | python3-threading \ | ||
| 20 | " | ||
| 21 | |||
| 22 | RDEPENDS:${PN}-ptest += " \ | ||
| 23 | python3-gevent \ | ||
| 24 | python3-multiprocessing \ | ||
| 25 | python3-pytest \ | ||
| 26 | python3-profile \ | ||
| 27 | python3-unittest-automake-output \ | ||
| 28 | python3-zopeinterface \ | ||
| 29 | " | ||
| 30 | |||
| 31 | do_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 | |||
