diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-04-24 16:42:22 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-04-25 10:06:03 +0100 |
| commit | b133f60dc9ec8747dc2cc5daf3a4b8494035da0e (patch) | |
| tree | a47cd87d19c5cb4c101891f40427bdc8ded418e9 /meta/recipes-devtools/python/python3-pluggy_1.5.0.bb | |
| parent | 315ee4a15a18ef3a00ce3840d27a6766d6c23dc6 (diff) | |
| download | poky-b133f60dc9ec8747dc2cc5daf3a4b8494035da0e.tar.gz | |
python3-pluggy: upgrade 1.4.0 -> 1.5.0
Changelog:
===========
- Add support for deprecating specific hook parameters, or more generally, for
issuing a warning whenever a hook implementation requests certain parameters.
- PluginManager.get_plugins() no longer returns None for blocked plugins.
(From OE-Core rev: 0a6fe31e8fbf0c70a488b7cb10bab3a4d729ec34)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pluggy_1.5.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-pluggy_1.5.0.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pluggy_1.5.0.bb b/meta/recipes-devtools/python/python3-pluggy_1.5.0.bb new file mode 100644 index 0000000000..9822cd59f3 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pluggy_1.5.0.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | SUMMARY = "Plugin and hook calling mechanisms for python" | ||
| 2 | HOMEPAGE = "https://github.com/pytest-dev/pluggy" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=1c8206d16fd5cc02fa9b0bb98955e5c2" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1" | ||
| 7 | |||
| 8 | DEPENDS += "python3-setuptools-scm-native" | ||
| 9 | RDEPENDS:${PN} += "python3-importlib-metadata \ | ||
| 10 | python3-more-itertools \ | ||
| 11 | " | ||
| 12 | |||
| 13 | inherit pypi ptest python_setuptools_build_meta | ||
| 14 | |||
| 15 | SRC_URI += " \ | ||
| 16 | file://run-ptest \ | ||
| 17 | " | ||
| 18 | |||
| 19 | RDEPENDS:${PN}-ptest += " \ | ||
| 20 | python3-pytest \ | ||
| 21 | python3-unittest-automake-output \ | ||
| 22 | " | ||
| 23 | |||
| 24 | do_install_ptest() { | ||
| 25 | install -d ${D}${PTEST_PATH}/testing | ||
| 26 | cp -rf ${S}/testing/* ${D}${PTEST_PATH}/testing/ | ||
| 27 | } | ||
| 28 | |||
| 29 | BBCLASSEXTEND = "native nativesdk" | ||
