diff options
| author | Tim Orling <ticotimo@gmail.com> | 2022-03-03 12:44:10 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-04 17:14:15 +0000 |
| commit | 2991089391bd55e55b7774903a6cb96d1eed82a1 (patch) | |
| tree | ba20e6e9a942befe7952fa7f77048390aaa44523 /meta/recipes-devtools/python/python3-jsonschema_4.4.0.bb | |
| parent | 345ed4cc9ded851b2cbcc1794c038a0080b6ed82 (diff) | |
| download | poky-2991089391bd55e55b7774903a6cb96d1eed82a1.tar.gz | |
python3-jsonschema: upgrade 3.2.0 -> 4.4.0
Upstream changed from setup.py to pyproject.toml+setup.cfg
inherit setuptools_build_meta
For changes see:
https://github.com/Julian/jsonschema/blob/main/CHANGELOG.rst#v440
(From OE-Core rev: 9af4a46668f0e8dcc7a371ec9e14a185df3a314f)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-jsonschema_4.4.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-jsonschema_4.4.0.bb | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-jsonschema_4.4.0.bb b/meta/recipes-devtools/python/python3-jsonschema_4.4.0.bb new file mode 100644 index 0000000000..4c14229641 --- /dev/null +++ b/meta/recipes-devtools/python/python3-jsonschema_4.4.0.bb | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | SUMMARY = "An implementation of JSON Schema validation for Python" | ||
| 2 | HOMEPAGE = "https://github.com/Julian/jsonschema" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=7a60a81c146ec25599a3e1dabb8610a8 \ | ||
| 5 | file://json/LICENSE;md5=9d4de43111d33570c8fe49b4cb0e01af" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "636694eb41b3535ed608fe04129f26542b59ed99808b4f688aa32dcf55317a83" | ||
| 8 | |||
| 9 | inherit pypi setuptools_build_meta | ||
| 10 | |||
| 11 | DEPENDS += "${PYTHON_PN}-vcversioner-native ${PYTHON_PN}-setuptools-scm-native" | ||
| 12 | |||
| 13 | PACKAGECONFIG ??= "format" | ||
| 14 | PACKAGECONFIG[format] = ",,,\ | ||
| 15 | ${PYTHON_PN}-idna \ | ||
| 16 | ${PYTHON_PN}-jsonpointer \ | ||
| 17 | ${PYTHON_PN}-webcolors \ | ||
| 18 | ${PYTHON_PN}-rfc3987 \ | ||
| 19 | ${PYTHON_PN}-strict-rfc3339 \ | ||
| 20 | " | ||
| 21 | PACKAGECONFIG[nongpl] = ",,,\ | ||
| 22 | ${PYTHON_PN}-idna \ | ||
| 23 | ${PYTHON_PN}-jsonpointer \ | ||
| 24 | ${PYTHON_PN}-webcolors \ | ||
| 25 | ${PYTHON_PN}-rfc3986-validator \ | ||
| 26 | ${PYTHON_PN}-rfc3339-validator \ | ||
| 27 | " | ||
| 28 | |||
| 29 | RDEPENDS:${PN} += " \ | ||
| 30 | ${PYTHON_PN}-attrs \ | ||
| 31 | ${PYTHON_PN}-core \ | ||
| 32 | ${PYTHON_PN}-datetime \ | ||
| 33 | ${PYTHON_PN}-importlib-metadata \ | ||
| 34 | ${PYTHON_PN}-io \ | ||
| 35 | ${PYTHON_PN}-json \ | ||
| 36 | ${PYTHON_PN}-netclient \ | ||
| 37 | ${PYTHON_PN}-numbers \ | ||
| 38 | ${PYTHON_PN}-pkgutil \ | ||
| 39 | ${PYTHON_PN}-pprint \ | ||
| 40 | ${PYTHON_PN}-pyrsistent \ | ||
| 41 | ${PYTHON_PN}-shell \ | ||
| 42 | ${PYTHON_PN}-six \ | ||
| 43 | ${PYTHON_PN}-unittest \ | ||
| 44 | ${PYTHON_PN}-setuptools-scm \ | ||
| 45 | ${PYTHON_PN}-zipp \ | ||
| 46 | " | ||
| 47 | |||
| 48 | BBCLASSEXTEND = "native nativesdk" | ||
