dev-python/uri-template: Enable freethreading

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-07-12 17:43:57 +02:00
parent 31f1efda25
commit 97ab2c4f3f
2 changed files with 4 additions and 10 deletions

View File

@@ -1 +1 @@
DIST uri-template-v1.3.0.tar.bz2 17076 BLAKE2B e8d6c1c35190beab4b2b51cf82dacd6e7bf51397abb142f89f975ce4e7c3067dd9c59895127446deafd84420b63ef62c1484c29037dd9e3833e0d0d55950dcc4 SHA512 654eb700de68a5b992b910e1ff0a038ed699453f021d1eb844d71ddebb32e3ffb77851b5704879bf3eb894eaca33477a0173223a5d9df6a06e33fdc27f6b0f5c
DIST uri-template-1.3.0.tar.gz 21678 BLAKE2B ae7c371b9f6238360b77f5b11d8066e94e2466764f6807cb27e50d97562adfd251ac3b91760ac1bc9179388f6243806cd030d00e01a4369ca574a08311b5b1b1 SHA512 f5ab679060a7bd6bd0160b4ee0e6e78c3b95e7227bff4828ad9312812453961426bba39d1190cf1e28512f568bcbf7765724a941f03e8e6eb3206eca3b53d245

View File

@@ -4,20 +4,16 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( pypy3_11 python3_{11..15} )
PYPI_NO_NORMALIZE=1
PYTHON_COMPAT=( python3_{12..15} python3_{14,15}t )
inherit distutils-r1
inherit distutils-r1 pypi
MY_P="uri-template-v${PV}"
DESCRIPTION="URI Template expansion in strict adherence to RFC 6570"
HOMEPAGE="
https://gitlab.linss.com/open-source/python/uri-template/
https://pypi.org/project/uri-template/
"
SRC_URI="
https://gitlab.linss.com/open-source/python/uri-template/-/archive/v${PV}/${MY_P}.tar.bz2
"
S=${WORKDIR}/${MY_P}
LICENSE="MIT"
SLOT="0"
@@ -27,8 +23,6 @@ BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
"
export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
python_test() {
"${EPYTHON}" "test.py" || die "Tests fail with ${EPYTHON}"
}