dev-python/python-multipart: Bump to 0.0.21

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2025-12-18 07:47:36 +01:00
parent 2bd4d1bab6
commit e06ce2f754
No known key found for this signature in database
GPG Key ID: 8E32347AF4055AE8
2 changed files with 41 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST python-multipart-0.0.20.gh.tar.gz 96069 BLAKE2B 64fa4e24c7df40ad6a8e84f5a862df47f5df9c9f2821394781a6b689bf79ac07d13779442bfe9486209c86bd1dc778d4b5f925b0098b7380dcb0a6194699769d SHA512 9e59fc38413da38429e9fab15105d20103da820437a059082dfed588423fb4a2ec10abd7742e65c3778e7e5e5aba346936900d9dbe49c73518eaa30b24842203
DIST python-multipart-0.0.21.gh.tar.gz 92645 BLAKE2B 487652a560819afe6fd9ccbf13eb3ed7d98f40a03c5102036d2764a3c7888f695d90d3df9f7bfa994f8d8403530ffeba1502bc6ad9b0975ca51cf889b509c8b8 SHA512 905f83423a473027ea97102f5c6f6da434db9529547513c12155285b1c7f32f03764393b8386c0da0ed6938f457119f787c3fc9b471e55d92641aa4067e95cfd

View File

@ -0,0 +1,40 @@
# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
inherit distutils-r1
DESCRIPTION="A streaming multipart parser for Python"
HOMEPAGE="
https://github.com/Kludex/python-multipart/
https://pypi.org/project/python-multipart/
"
SRC_URI="
https://github.com/Kludex/python-multipart/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
BDEPEND="
test? (
dev-python/pyyaml[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
src_prepare() {
distutils-r1_src_prepare
# do not install the backwards compatibility package
# we're patching revdeps instead
rm -r multipart || die
}