diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2024-12-24 17:26:47 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-12-24 08:23:09 -0800 |
commit | 0cc5ecb0732e11856149a5667d40c08dcab1b663 (patch) | |
tree | 645837c43e04b54a9550db6b39aa07ff6ede5828 /meta-python/recipes-devtools/python/python3-python-multipart_0.0.20.bb | |
parent | 225ff1ec3e4dbd689bba7d1312dea3939a06f8d2 (diff) | |
download | meta-openembedded-0cc5ecb0732e11856149a5667d40c08dcab1b663.tar.gz |
python3-python-multipart: upgrade 0.0.12 -> 0.0.20
Changelog:
=========
- Handle messages containing only end boundary #142.
- Don't warn when CRLF is found after last boundary on MultipartParser #193.
- Hard break if found data after last boundary on MultipartParser #189.
- Handle PermissionError in fallback code for old import name #182.
- Add dunder attributes to multipart package #177.
- Replace FutureWarning to PendingDeprecationWarning #174.
- Add missing files to SDist #171.
- Fix import scheme for multipart module (#168).
- Rename import to python_multipart
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-python-multipart_0.0.20.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-python-multipart_0.0.20.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-python-multipart_0.0.20.bb b/meta-python/recipes-devtools/python/python3-python-multipart_0.0.20.bb new file mode 100644 index 0000000000..db5e7bb45a --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-python-multipart_0.0.20.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "A streaming multipart parser for Python" | ||
2 | LICENSE = "Apache-2.0" | ||
3 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3d98f0d58b28321924a89ab60c82410e" | ||
4 | |||
5 | SRC_URI[sha256sum] = "8dd0cab45b8e23064ae09147625994d090fa46f5b0d1e13af944c331a7fa9d13" | ||
6 | |||
7 | inherit pypi python_hatchling ptest | ||
8 | |||
9 | PYPI_PACKAGE = "python_multipart" | ||
10 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
11 | |||
12 | SRC_URI += " \ | ||
13 | file://run-ptest \ | ||
14 | " | ||
15 | |||
16 | RDEPENDS:${PN}-ptest += " \ | ||
17 | python3-pytest \ | ||
18 | python3-pyyaml \ | ||
19 | python3-unittest-automake-output \ | ||
20 | " | ||
21 | |||
22 | do_install_ptest() { | ||
23 | install -d ${D}${PTEST_PATH}/tests | ||
24 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
25 | } | ||