diff options
| author | Otavio Salvador <otavio.salvador@gmail.com> | 2022-01-03 13:18:51 -0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-05 17:18:16 +0000 |
| commit | 8c4399352ec01b9643891976416072996b41ef06 (patch) | |
| tree | 88a1efdc62e98aa124a21035f389d68c299a368b /meta/recipes-devtools/python/python3-tomli_2.0.0.bb | |
| parent | bc638be46863ed4b0a49b1d8d0fde5727c0d1a03 (diff) | |
| download | poky-8c4399352ec01b9643891976416072996b41ef06.tar.gz | |
python3-tomli: upgrade 1.2.2 -> 2.0.0
(From OE-Core rev: 823e1b028246445c0d88803b428d8d107a8814a6)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-tomli_2.0.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-tomli_2.0.0.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-tomli_2.0.0.bb b/meta/recipes-devtools/python/python3-tomli_2.0.0.bb new file mode 100644 index 0000000000..aa23ad856d --- /dev/null +++ b/meta/recipes-devtools/python/python3-tomli_2.0.0.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | SUMMARY = "A lil' TOML parser" | ||
| 2 | DESCRIPTION = "Tomli is a Python library for parsing TOML. Tomli is fully \ | ||
| 3 | compatible with TOML v1.0.0." | ||
| 4 | HOMEPAGE = "https://github.com/hukkin/tomli" | ||
| 5 | BUGTRACKER = "https://github.com/hukkin/tomli/issues" | ||
| 6 | LICENSE = "MIT" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=aaaaf0879d17df0110d1aa8c8c9f46f5" | ||
| 8 | |||
| 9 | inherit pypi setuptools3 | ||
| 10 | |||
| 11 | SRC_URI[sha256sum] = "c292c34f58502a1eb2bbb9f5bbc9a5ebc37bee10ffb8c2d6bbdfa8eb13cc14e1" | ||
| 12 | |||
| 13 | do_configure:prepend() { | ||
| 14 | cat > ${S}/setup.py <<-EOF | ||
| 15 | from setuptools import setup | ||
| 16 | setup(name="tomli", version="${PV}", packages=["tomli"], package_data={"": ["*"]}) | ||
| 17 | EOF | ||
| 18 | } | ||
| 19 | |||
| 20 | BBCLASSEXTEND = "native nativesdk" | ||
