diff options
| author | zhengrq.fnst@fujitsu.com <zhengrq.fnst@fujitsu.com> | 2022-11-23 14:54:00 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-11-23 08:25:30 -0800 |
| commit | 00e8511b0d5f68a6bd0761e3bde839bb5d34662c (patch) | |
| tree | 47e2f12435affa97728f87b943fa478672411f21 /meta-python/recipes-devtools/python/python3-simplejson_3.18.0.bb | |
| parent | 2cd011bd9ba462af37ab692b2503680a86122c4c (diff) | |
| download | meta-openembedded-00e8511b0d5f68a6bd0761e3bde839bb5d34662c.tar.gz | |
python3-simplejson: upgrade 3.17.6 -> 3.18.0
Changelog:
==========
* Allow serialization of classes that implement for_json or _asdict by
ignoring TypeError when those methods are called
https://github.com/simplejson/simplejson/pull/302
* Raise JSONDecodeError instead of ValueError in invalid unicode escape
sequence edge case
https://github.com/simplejson/simplejson/pull/298
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-simplejson_3.18.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-simplejson_3.18.0.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-simplejson_3.18.0.bb b/meta-python/recipes-devtools/python/python3-simplejson_3.18.0.bb new file mode 100644 index 0000000000..ccdd4ddbae --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-simplejson_3.18.0.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | SUMMARY = "Simple, fast, extensible JSON encoder/decoder for Python" | ||
| 2 | HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson" | ||
| 3 | |||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "58a429d2c2fa80834115b923ff689622de8f214cf0dc4afa9f59e824b444ab31" | ||
| 8 | |||
| 9 | inherit pypi setuptools3 | ||
| 10 | |||
| 11 | RDEPENDS:${PN} += "\ | ||
| 12 | ${PYTHON_PN}-io \ | ||
| 13 | ${PYTHON_PN}-netserver \ | ||
| 14 | ${PYTHON_PN}-numbers \ | ||
| 15 | " | ||
| 16 | |||
| 17 | PACKAGES =+ "${PN}-tests" | ||
| 18 | RDEPENDS:${PN}-tests = "${PN} ${PYTHON_PN}-unittest" | ||
| 19 | FILES:${PN}-tests+= " \ | ||
| 20 | ${PYTHON_SITEPACKAGES_DIR}/simplejson/tests \ | ||
| 21 | ${PYTHON_SITEPACKAGES_DIR}/simplejson/tool.py* \ | ||
| 22 | " | ||
| 23 | |||
| 24 | BBCLASSEXTEND = "native nativesdk" | ||
