diff options
author | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2023-04-13 11:15:55 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-04-14 16:44:24 +0100 |
commit | 28b08e55b31abf4800c591625991d35d51a93901 (patch) | |
tree | 929a04242a56318c26ec436a7ec77076f07c9867 /meta/recipes-devtools | |
parent | 3c12f99c35c5f6d25dad838a3336ac9e2611b167 (diff) | |
download | poky-28b08e55b31abf4800c591625991d35d51a93901.tar.gz |
python3-manifest: add tomllib
Add the TOML parsing module from the standard library to the manifest.
(From OE-Core rev: b6f2ca4713447710f5ce29261d1009c3574af721)
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/python/python3/python3-manifest.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json index 498402af42..9e91270a50 100644 --- a/meta/recipes-devtools/python/python3/python3-manifest.json +++ b/meta/recipes-devtools/python/python3/python3-manifest.json | |||
@@ -829,6 +829,7 @@ | |||
829 | "stringold", | 829 | "stringold", |
830 | "syslog", | 830 | "syslog", |
831 | "terminal", | 831 | "terminal", |
832 | "tomllib", | ||
832 | "threading", | 833 | "threading", |
833 | "tkinter", | 834 | "tkinter", |
834 | "unittest", | 835 | "unittest", |
@@ -1179,6 +1180,22 @@ | |||
1179 | ], | 1180 | ], |
1180 | "cached": [] | 1181 | "cached": [] |
1181 | }, | 1182 | }, |
1183 | "tomllib": { | ||
1184 | "summary": "Provides an interface for parsing TOML", | ||
1185 | "rdepends": [ | ||
1186 | "core", | ||
1187 | "datetime", | ||
1188 | "stringold" | ||
1189 | ], | ||
1190 | "files": [ | ||
1191 | "${libdir}/python${PYTHON_MAJMIN}/tomllib/" | ||
1192 | ], | ||
1193 | "cached": [ | ||
1194 | "${libdir}/python${PYTHON_MAJMIN}/tomllib/_re.*.pyc", | ||
1195 | "${libdir}/python${PYTHON_MAJMIN}/tomllib/_types.*.pyc", | ||
1196 | "${libdir}/python${PYTHON_MAJMIN}/tomllib/_parser.*.pyc" | ||
1197 | ] | ||
1198 | }, | ||
1182 | "unittest": { | 1199 | "unittest": { |
1183 | "summary": "Python unit testing framework", | 1200 | "summary": "Python unit testing framework", |
1184 | "rdepends": [ | 1201 | "rdepends": [ |