diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-08-01 15:41:37 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-08-01 08:46:48 -0700 |
| commit | e9ab80bc51daf9e4636794f975a67667011f2368 (patch) | |
| tree | 0ab4dd9c9774c62edeb7ad8dc37601178ee9cb14 /meta-python/recipes-devtools/python/python3-click_8.1.6.bb | |
| parent | cd5bfd3755d0f10f2ef0a825c01f1e9d30fde423 (diff) | |
| download | meta-openembedded-e9ab80bc51daf9e4636794f975a67667011f2368.tar.gz | |
python3-click: upgrade 8.1.5 -> 8.1.6
Changelog:
Fix an issue with type hints for @click.group()
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-click_8.1.6.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-click_8.1.6.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-click_8.1.6.bb b/meta-python/recipes-devtools/python/python3-click_8.1.6.bb new file mode 100644 index 0000000000..4858c9e359 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-click_8.1.6.bb | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | SUMMARY = "A simple wrapper around optparse for powerful command line utilities." | ||
| 2 | DESCRIPTION = "\ | ||
| 3 | Click is a Python package for creating beautiful command line interfaces \ | ||
| 4 | in a composable way with as little code as necessary. It's the "Command \ | ||
| 5 | Line Interface Creation Kit". It's highly configurable but comes with \ | ||
| 6 | sensible defaults out of the box." | ||
| 7 | HOMEPAGE = "http://click.pocoo.org/" | ||
| 8 | LICENSE = "BSD-3-Clause" | ||
| 9 | LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=1fa98232fd645608937a0fdc82e999b8" | ||
| 10 | |||
| 11 | SRC_URI[sha256sum] = "48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd" | ||
| 12 | |||
| 13 | inherit pypi setuptools3 ptest | ||
| 14 | |||
| 15 | SRC_URI += "file://run-ptest" | ||
| 16 | |||
| 17 | RDEPENDS:${PN}-ptest += " \ | ||
| 18 | ${PYTHON_PN}-pytest \ | ||
| 19 | ${PYTHON_PN}-terminal \ | ||
| 20 | ${PYTHON_PN}-unixadmin \ | ||
| 21 | " | ||
| 22 | |||
| 23 | do_install_ptest() { | ||
| 24 | install -d ${D}${PTEST_PATH}/tests | ||
| 25 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 26 | cp -rf ${S}/setup.cfg ${D}${PTEST_PATH}/ | ||
| 27 | cp -rf ${S}/docs ${D}${PTEST_PATH}/ | ||
| 28 | } | ||
| 29 | |||
| 30 | UPSTREAM_CHECK_REGEX = "click/(?P<pver>\d+(\.\d+)+)/" | ||
| 31 | |||
| 32 | CLEANBROKEN = "1" | ||
| 33 | |||
| 34 | RDEPENDS:${PN} += "\ | ||
| 35 | ${PYTHON_PN}-io \ | ||
| 36 | ${PYTHON_PN}-threading \ | ||
| 37 | " | ||
| 38 | |||
| 39 | BBCLASSEXTEND = "native nativesdk" | ||
