diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2024-03-25 21:58:12 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-03-25 13:17:50 -0700 |
| commit | 4a238931680927426a79934fafd9c719431ea77c (patch) | |
| tree | 9e82b167df1acad45cc31181212e760e0758d6fd /meta-python/recipes-devtools/python/python3-multidict_6.0.5.bb | |
| parent | 85fa15cab878b7d8a5f0818678a75f5128549d6e (diff) | |
| download | meta-openembedded-4a238931680927426a79934fafd9c719431ea77c.tar.gz | |
python3-multidict: Upgrade 6.0.4 -> 6.0.5
Upgrade to version 6.0.5:
- Upgraded the C-API macros that have been deprecated in Python 3.9
and later removed in 3.13
- Reverted to using the public argument parsing API
PyArg_ParseTupleAndKeywords() under Python 3.12.
- The effect is that this change prevents build failures with clang
16.9.6 and gcc-14. It also fixes a segmentation fault crash
caused by passing keyword arguments to MultiDict.getall().
- Fixed a SystemError: null argument to internal routine error on a
MultiDict.items().isdisjoint() call when using C Extensions.
- On the Contributing docs age, a link to the Towncrier philosophy
has been fixed.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-multidict_6.0.5.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-multidict_6.0.5.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-multidict_6.0.5.bb b/meta-python/recipes-devtools/python/python3-multidict_6.0.5.bb new file mode 100644 index 0000000000..b12e180d02 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-multidict_6.0.5.bb | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | SUMMARY = "Multidicts are useful for working with HTTP headers, URL query args etc." | ||
| 2 | HOMEPAGE = "https://github.com/aio-libs/multidict/" | ||
| 3 | |||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b4fef6e4b0828c2401fb983363985b39" | ||
| 6 | |||
| 7 | inherit pypi setuptools3 ptest | ||
| 8 | |||
| 9 | PV .= "+git" | ||
| 10 | |||
| 11 | SRCREV = "a9b281b2ef4ab25d95d6b268aa88c428e75c3696" | ||
| 12 | PYPI_SRC_URI = "git://github.com/aio-libs/multidict;branch=master;protocol=https" | ||
| 13 | S = "${WORKDIR}/git" | ||
| 14 | |||
| 15 | SRC_URI += " \ | ||
| 16 | file://run-ptest \ | ||
| 17 | " | ||
| 18 | |||
| 19 | RDEPENDS:${PN}-ptest += " \ | ||
| 20 | python3-pytest \ | ||
| 21 | python3-pytest-cov \ | ||
| 22 | python3-unittest-automake-output \ | ||
| 23 | " | ||
| 24 | |||
| 25 | do_install_ptest() { | ||
| 26 | install -d ${D}${PTEST_PATH}/tests | ||
| 27 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 28 | } | ||
| 29 | |||
| 30 | BBCLASSEXTEND = "native nativesdk" | ||
