dev-python/pylsqpack: Bump to 0.3.23

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-10-11 04:57:45 +02:00
parent fc2a6c05ce
commit 0ffcde23f1
2 changed files with 40 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST pylsqpack-0.3.22.tar.gz 676356 BLAKE2B 1ad8283b00273f4a60a3edd7d125d3b9a3efc61deff209f709908ad16ed68c658158247443e643ef38b53e118076e23d651134dc91974bd79fa94d7d1496d328 SHA512 16b6abee85c9d2b02b50d9edd047018439cfb64e65ee0c065f070ddd673235fef99795c31a7fe8fe48b242071c20cbdf0ba5d76d59838cec593e57c3a99ee01e
DIST pylsqpack-0.3.23.tar.gz 676891 BLAKE2B 138f99cba89772fbbb42cd5f5ca4bc63b5054df74b10b97fcd6378afaefe9a8a50ec599654d886ea21624fa3bae1d5cc7f888cd86c8e1b571c03e7a9841563b3 SHA512 c16ea8b85450c4ce941c592711466c20a49f8b2be4aed9369793535f6bf902cde7342031ef7095a5eb4c67aaa88e28ea8c0702be66251485243023e6c46577ff

View File

@@ -0,0 +1,39 @@
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
inherit distutils-r1 pypi
DESCRIPTION="Python wrapper for the ls-qpack QPACK library"
HOMEPAGE="
https://github.com/aiortc/pylsqpack/
https://pypi.org/project/pylsqpack/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
DEPEND="
dev-libs/ls-qpack:=
"
RDEPEND="
${DEPEND}
"
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
src_prepare() {
local PATCHES=(
"${FILESDIR}/${PN}-0.3.20-unbundle.patch"
)
distutils-r1_src_prepare
rm -r vendor || die
}