diff options
Diffstat (limited to 'dev-python/cwcwidth')
-rw-r--r-- | dev-python/cwcwidth/Manifest | 2 | ||||
-rw-r--r-- | dev-python/cwcwidth/cwcwidth-0.1.10.ebuild | 35 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/cwcwidth/Manifest b/dev-python/cwcwidth/Manifest index 05e16d76b310..92872784f4f6 100644 --- a/dev-python/cwcwidth/Manifest +++ b/dev-python/cwcwidth/Manifest @@ -1,3 +1,5 @@ +DIST cwcwidth-0.1.10.gh.tar.gz 14158 BLAKE2B 8e375ef486496ca5d422d833eea6fecaf881f898580d5130c485f2c3881434dc8d51aca1803fff8fd08c09a468290a0810a7c3031ca0e7648dc4970c27999e73 SHA512 eb4321ca49b997feb5c5442c98730610dcfbc8b0e8f5397f3c5b08f51b84ee6248577a0b81d79db83115d1f91751dbfb0cc35f3551099b0b02270cee1226985d DIST cwcwidth-0.1.9.gh.tar.gz 11472 BLAKE2B 70308dcca8ea0c5cbc76726e58ef8a8b2b4bd015411753e91370a34cb600aeb15fdddc537561b0a2e5f7338e77b6a1e2a30207cbcd92d14c60a8b8bfd87ea51f SHA512 f3911fc1a32bb3739ef81d0dfb61b47de8ab62ad26f9f3c361c458b6cb0e4000a5625969972fce09e7906fd35c7ddf7bd7f6b9bcc8efd799433282bdb326969d +EBUILD cwcwidth-0.1.10.ebuild 652 BLAKE2B becc3db998f6d08157873b1aba15b96448361a8212d29349d3de09d286a4e46eb85c4688af3f935515fab6e102d9986fab2ae5e553f5332b77c573f33499eda8 SHA512 fc2bb6522634d52fffcf624a3cd654ba6b050faa170287e7de283bade77450808d41063fec3493bde279de9c7fcf059ff50c9bbd0d0ecbba515a437ea9c72e08 EBUILD cwcwidth-0.1.9.ebuild 645 BLAKE2B 2614dc6feb753a2dca564a8c34e84c781642ca29ccb313df1c89baaa1660ebb04a0e5e516ae92d4f7c23f051c033eca25532d87bc8bde6cc16eb9be6c5c853b8 SHA512 aa216d0470a3fc2055a82d8979e8b6ee99d4f37ae13804de982197ccd10bd3644d2d41d0795052b687defb388b97b798d2957339d5d36d737ad52526416fea9e MISC metadata.xml 349 BLAKE2B e1564185d34e24bd6070ffe534ded26aee31004f72bdcb85e27b6d42d243e7db1a9db68e75a6678c9da59530457d34a8cf58be54d919d18ddc539461e03992bc SHA512 65af1da9bc2295a6395395a832288b493df2218a85d8289361c05f2b0ee1bba57a3d32edf09a6c29e691dc43e4a92b34bc8980d346e7b860c5562a238731c067 diff --git a/dev-python/cwcwidth/cwcwidth-0.1.10.ebuild b/dev-python/cwcwidth/cwcwidth-0.1.10.ebuild new file mode 100644 index 000000000000..4c6e7625c942 --- /dev/null +++ b/dev-python/cwcwidth/cwcwidth-0.1.10.ebuild @@ -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_{10..13} ) + +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 +} |