mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

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>
26 lines
608 B
BlitzBasic
26 lines
608 B
BlitzBasic
SUMMARY = "A streaming multipart parser for Python"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3d98f0d58b28321924a89ab60c82410e"
|
|
|
|
SRC_URI[sha256sum] = "8dd0cab45b8e23064ae09147625994d090fa46f5b0d1e13af944c331a7fa9d13"
|
|
|
|
inherit pypi python_hatchling ptest
|
|
|
|
PYPI_PACKAGE = "python_multipart"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest \
|
|
python3-pyyaml \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|