dev-python/cwcwidth: Bump to 0.1.11

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-10-29 04:15:26 +01:00
parent f642bac59b
commit aa9262a4c5
2 changed files with 36 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST cwcwidth-0.1.10.gh.tar.gz 14158 BLAKE2B 8e375ef486496ca5d422d833eea6fecaf881f898580d5130c485f2c3881434dc8d51aca1803fff8fd08c09a468290a0810a7c3031ca0e7648dc4970c27999e73 SHA512 eb4321ca49b997feb5c5442c98730610dcfbc8b0e8f5397f3c5b08f51b84ee6248577a0b81d79db83115d1f91751dbfb0cc35f3551099b0b02270cee1226985d
DIST cwcwidth-0.1.11.gh.tar.gz 14264 BLAKE2B 870f1b95b54f6e96e2f11756127772d812571dad512ccdf01b3a1e8706938e03411aed56b222b21980380c15270de7c1e960455c1def2bc42a87ed1ecef114a7 SHA512 38cf742803efb60ce2e30f4e801c5bf35515b7e1bdc2b3fdb0480055714242a40732620451c190dd2d6e256325852ab72ef2dba693b8775d9f557152e1b3150f

View File

@@ -0,0 +1,35 @@
# Copyright 2021-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=( python3_{11..14} )
inherit distutils-r1
DESCRIPTION="Python bindings for wc(s)width"
HOMEPAGE="
https://github.com/sebastinas/cwcwidth/
https://pypi.org/project/cwcwidth/
"
SRC_URI="
https://github.com/sebastinas/cwcwidth/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
BDEPEND="
>=dev-python/cython-3[${PYTHON_USEDEP}]
"
distutils_enable_tests unittest
src_test() {
cd tests || die
distutils-r1_src_test
}