summaryrefslogtreecommitdiff
path: root/dev-python/wcwidth
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-02-01 07:17:03 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-02-01 07:17:03 +0000
commit24e6b49e8a21980cabc19ea50b1820e0a7cb84fd (patch)
treee66b8ea173107ce084b1dee4d4ae932651f7cbd9 /dev-python/wcwidth
parent99f36064db93831496ebd7fd2e2a1ac76c064921 (diff)
downloadbaldeagleos-repo-24e6b49e8a21980cabc19ea50b1820e0a7cb84fd.tar.gz
baldeagleos-repo-24e6b49e8a21980cabc19ea50b1820e0a7cb84fd.tar.xz
baldeagleos-repo-24e6b49e8a21980cabc19ea50b1820e0a7cb84fd.zip
Adding metadata
Diffstat (limited to 'dev-python/wcwidth')
-rw-r--r--dev-python/wcwidth/Manifest1
-rw-r--r--dev-python/wcwidth/wcwidth-0.5.3.ebuild32
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/wcwidth/Manifest b/dev-python/wcwidth/Manifest
index 98df3c608c88..f0e9a91295e5 100644
--- a/dev-python/wcwidth/Manifest
+++ b/dev-python/wcwidth/Manifest
@@ -5,3 +5,4 @@ DIST wcwidth-0.3.2.tar.gz 233633 BLAKE2B c342a44c7a7419c6d225dd4b567139ad162b355
DIST wcwidth-0.4.0.tar.gz 237625 BLAKE2B 4bbbbb93b7742b435d7c835601788d86ac383ee2cae9f55a344690fc24d94d8f636aa08e0b92307abcffdef805f93f5490324d72158b38ad5ea39e5a0e0e7210 SHA512 fb8e22359098c6a0281669d01dbad98741a7a60c72420288efe731b211ebdaf12bd0f49e943c20b5bf2a26af074e39354e7b629e4cb6a43a27333aa64e80a546
DIST wcwidth-0.5.0.tar.gz 246585 BLAKE2B fa18ed5474efdcb96d2da23efdb123bb22a3bf0cda3e85065898c6e3dcec7d2fcf1c2a6589080182fd72bed94d086bfc38a3f913feb34c187563de206e26ebef SHA512 0ef0c4a5e3de2496f3cab9da69e6e80dc9e3d6770aaa1735909769ff4ceaf1901dbd31f4565c5fca156f1f554d90398e7e10aee3b1cbd98b8ea150c093935ab7
DIST wcwidth-0.5.2.tar.gz 152817 BLAKE2B 80d091d2b9102735fd89de600f0adc4a4d386dc24282b18a36dd914203cc81ffaf0d88faa9f77e3c29339db24f746c7e87da31ec18e386909701d81b94ecd7ef SHA512 7782b383492c2f6fb3a520ab7a74104e256fb7ba1c7852470d05e85b82a1c4661928739c94a4893736b645b89227f3be2addf7cec9b228fcf5c99fedeb216b77
+DIST wcwidth-0.5.3.tar.gz 157587 BLAKE2B fc03fd0445cff121ae9049e3bf8df429f734a41a449db557cf4607af4eaa6e35d39d3eaf1db066312f7e2aef8e7d9582b182b670743af03295a6b4dd2a857484 SHA512 7537cf6493fc7b2998d0a5f7a3b093fd8e8916e6e39df6932a815d6547b970472a5cc37cb82ba3a2f6c40912c483ed21203fa7b30eafdeec93a51902e3f370aa
diff --git a/dev-python/wcwidth/wcwidth-0.5.3.ebuild b/dev-python/wcwidth/wcwidth-0.5.3.ebuild
new file mode 100644
index 000000000000..93cfddfcb5d7
--- /dev/null
+++ b/dev-python/wcwidth/wcwidth-0.5.3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{10..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Measures number of Terminal column cells of wide-character codes"
+HOMEPAGE="
+ https://pypi.org/project/wcwidth/
+ https://github.com/jquast/wcwidth/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_test() {
+ epytest -o addopts=
+}
+
+python_install_all() {
+ docinto docs
+ dodoc docs/intro.rst
+ distutils-r1_python_install_all
+}