diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-04-10 17:37:19 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-04-13 11:56:07 +0100 |
| commit | 46e219de6301c5dc9919126aaf86bafa8f0ee524 (patch) | |
| tree | 2a260741420b4b1d354f6c21cbbf43fb00fef7c7 /meta/recipes-devtools/python/python3-importlib-metadata_6.2.0.bb | |
| parent | f9f1eeece427a1f68025d78e75bc12e5713c5752 (diff) | |
| download | poky-46e219de6301c5dc9919126aaf86bafa8f0ee524.tar.gz | |
python3-importlib-metadata: upgrade 6.0.0 -> 6.2.0
Changelog:
===========
- #384: PackageMetadata now stipulates an additional get method allowing for
easy querying of metadata keys that may not be present.
- #428: packages_distributions now honors packages and modules with Python
modules that not .py sources (e.g. .pyc, .so).
- #434: Expand protocol for PackageMetadata.get_all to match the upstream
implementation of email.message.Message.get_all in python/typeshed#9620.
(From OE-Core rev: e3991141939e5e2393cf36edd02ef3765cacd330)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-importlib-metadata_6.2.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-importlib-metadata_6.2.0.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-importlib-metadata_6.2.0.bb b/meta/recipes-devtools/python/python3-importlib-metadata_6.2.0.bb new file mode 100644 index 0000000000..b7bc91552e --- /dev/null +++ b/meta/recipes-devtools/python/python3-importlib-metadata_6.2.0.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | DESCRIPTION = "Read metadata from Python packages" | ||
| 2 | HOMEPAGE = "https://pypi.org/project/importlib-metadata/" | ||
| 3 | LICENSE = "Apache-2.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | ||
| 5 | |||
| 6 | inherit pypi python_setuptools_build_meta | ||
| 7 | |||
| 8 | PYPI_PACKAGE = "importlib_metadata" | ||
| 9 | UPSTREAM_CHECK_REGEX = "/importlib-metadata/(?P<pver>(\d+[\.\-_]*)+)/" | ||
| 10 | |||
| 11 | SRC_URI[sha256sum] = "9127aad2f49d7203e7112098c12b92e4fd1061ccd18548cdfdc49171a8c073cc" | ||
| 12 | |||
| 13 | S = "${WORKDIR}/importlib_metadata-${PV}" | ||
| 14 | |||
| 15 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-toml-native" | ||
| 16 | RDEPENDS:${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2" | ||
| 17 | RDEPENDS:${PN}:append:class-target = " python3-misc" | ||
| 18 | RDEPENDS:${PN}:append:class-nativesdk = " python3-misc" | ||
| 19 | |||
| 20 | BBCLASSEXTEND = "native nativesdk" | ||
