diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2023-01-15 10:38:47 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2023-01-15 10:38:47 +0000 |
| commit | 2a876cc05753fe0d1db1ff2685de863cf87a8b4f (patch) | |
| tree | 24976b20d32385be51bb44f655a370eb90329658 /dev-python/wcwidth | |
| parent | 5c62666d60512e057cfdc1e0a0548b22a1666b0e (diff) | |
| download | baldeagleos-repo-2a876cc05753fe0d1db1ff2685de863cf87a8b4f.tar.gz baldeagleos-repo-2a876cc05753fe0d1db1ff2685de863cf87a8b4f.tar.xz baldeagleos-repo-2a876cc05753fe0d1db1ff2685de863cf87a8b4f.zip | |
Adding metadata
Diffstat (limited to 'dev-python/wcwidth')
| -rw-r--r-- | dev-python/wcwidth/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild | 2 | ||||
| -rw-r--r-- | dev-python/wcwidth/wcwidth-0.2.6.ebuild | 39 |
3 files changed, 41 insertions, 1 deletions
diff --git a/dev-python/wcwidth/Manifest b/dev-python/wcwidth/Manifest index d91815164490..0b1b5b13deb5 100644 --- a/dev-python/wcwidth/Manifest +++ b/dev-python/wcwidth/Manifest @@ -1 +1,2 @@ DIST wcwidth-0.2.5.gh.tar.gz 47514 BLAKE2B 0ac5fb08283c23039453408da2edac36e2079fde8fc903002785e2e0f8bed55d1d6a291181097f73e4ec8152b6eaa4f4553b0b39fe1cadc7a99bacb2d7e55d2c SHA512 3f1f1fefd3ee9f06ea2051842e8c3bb09a92501f031124b8514bec444eaa8594ab9649534b4264340d475716d5a6571dbe5ae932f685160defd75c19295e60f9 +DIST wcwidth-0.2.6.gh.tar.gz 51990 BLAKE2B 8561e06aaf92f48246bacfb4012358067d81d4d9eeb33a0406eb012b5c22841ac66ff5760df2d5ea6a5d48a1880b4b9cbbcddf7a5eba5f663f6a559005f657ad SHA512 1f97cb6ef6a804da1d062b8dafb146a3e21261e63a644bad88bed74101be1371c753c2645db5ad25868fe9641fce9b13bd5dc920496b00e1d73d406f69631ac9 diff --git a/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild b/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild index 596a06baea27..bcce4fc61873 100644 --- a/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild +++ b/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 diff --git a/dev-python/wcwidth/wcwidth-0.2.6.ebuild b/dev-python/wcwidth/wcwidth-0.2.6.ebuild new file mode 100644 index 000000000000..8166435f7663 --- /dev/null +++ b/dev-python/wcwidth/wcwidth-0.2.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{7,8,9,10,11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Measures number of Terminal column cells of wide-character codes" +HOMEPAGE=" + https://pypi.org/project/wcwidth/ + https://github.com/jquast/wcwidth/ +" +SRC_URI=" + https://github.com/jquast/wcwidth/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +distutils_enable_tests pytest + +src_prepare() { + sed -e 's:--cov-append::' \ + -e 's:--cov-report=html::' \ + -e 's:--cov=wcwidth::' \ + -i tox.ini || die + distutils-r1_src_prepare +} + +python_install_all() { + docinto docs + dodoc docs/intro.rst + distutils-r1_python_install_all +} |
