diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2022-05-27 09:36:46 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-05-29 06:39:14 -0700 |
| commit | 8948bcd3b8b44f362e9957a98e871597eda0de8e (patch) | |
| tree | f61e7c3c5f1957ab3b6604cad5172204f054e464 /meta-python/recipes-devtools/python/python3-yappi_1.3.5.bb | |
| parent | 9f91b0fc43aa0e58779ac8a9b1f9e7f8192736e3 (diff) | |
| download | meta-openembedded-8948bcd3b8b44f362e9957a98e871597eda0de8e.tar.gz | |
python3-yappi: upgrade 1.3.3 -> 1.3.5
1.3.5 (2022-05-20)
- Fix an exception with matplotlib on Python 3.10 (#97)
- Fix incorrect walltime when same coroutine is ran with concurrent tasks (#58)
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.5.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-yappi_1.3.5.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-yappi_1.3.5.bb b/meta-python/recipes-devtools/python/python3-yappi_1.3.5.bb new file mode 100644 index 0000000000..9b08f759a2 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-yappi_1.3.5.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 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] = "f54c25f04aa7c613633b529bffd14e0699a4363f414dc9c065616fd52064a49b" | ||
| 8 | |||
| 9 | SRC_URI += " \ | ||
| 10 | file://run-ptest \ | ||
| 11 | file://0001-Fix-imports-for-ptests.patch \ | ||
| 12 | " | ||
| 13 | |||
| 14 | inherit pypi setuptools3 ptest | ||
| 15 | |||
| 16 | RDEPENDS:${PN} += "\ | ||
| 17 | ${PYTHON_PN}-datetime \ | ||
| 18 | ${PYTHON_PN}-pickle \ | ||
| 19 | ${PYTHON_PN}-threading \ | ||
| 20 | " | ||
| 21 | |||
| 22 | RDEPENDS:${PN}-ptest += " \ | ||
| 23 | ${PYTHON_PN}-gevent \ | ||
| 24 | ${PYTHON_PN}-multiprocessing \ | ||
| 25 | ${PYTHON_PN}-pytest \ | ||
| 26 | ${PYTHON_PN}-profile \ | ||
| 27 | ${PYTHON_PN}-zopeinterface \ | ||
| 28 | " | ||
| 29 | |||
| 30 | do_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 | } | ||
