diff options
Diffstat (limited to 'dev-python/wcwidth')
-rw-r--r-- | dev-python/wcwidth/Manifest | 2 | ||||
-rw-r--r-- | dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild | 38 |
2 files changed, 0 insertions, 40 deletions
diff --git a/dev-python/wcwidth/Manifest b/dev-python/wcwidth/Manifest index e673c064b073..d9dfdb532740 100644 --- a/dev-python/wcwidth/Manifest +++ b/dev-python/wcwidth/Manifest @@ -1,5 +1,3 @@ -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 -EBUILD wcwidth-0.2.5-r1.ebuild 995 BLAKE2B 8ce789e26ba19903b520089f13de52920b255d2b77202bf0d9b2be6f11e92e6e6c850f991f6b2c1edccad4e66c4f3d462ed608d8b3fc30ed33439e484cf887d1 SHA512 9eb62216d2359d3587a3ccc579e29d1f157397bfc76ab80ca394b80470c24cd9b549719b02d568e064e363feaddfef95865939345d5c130e4767fd8d79ed4f92 EBUILD wcwidth-0.2.6.ebuild 882 BLAKE2B 50ab3a59fef2e87d3733d88e7161aa74883db9befb8b5ba4aca45cc83ef11bcb69bf4aff2af7bbbffb0381b1e0fb94d67cfa3bac9c715495e9ed268ba1ff0645 SHA512 158c3e6774d15ace921d5e6f4fa15c483e342945e0da4fccd08019d0523c2e17f88717e063183bd0512a7db6a290823ab38091bf000a84d2da4b2c84668abb97 MISC metadata.xml 402 BLAKE2B 86714d496f80fe46cb313bed026135b2712ddfb47fea5994d0021516aa6ad28eb5fc52d37b37a7a224ec0613681b27ee039f4ac734430d94aafe4ec8946cecc7 SHA512 85c0e684f66a5582ca63d6f72c4e69101e8ec30f8e03c52e972fa36a2e6b6d2a8f019fb33a1e39e73fb37de25c82b906b18ac626afdd0a93d97db2ddcf485063 diff --git a/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild b/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild deleted file mode 100644 index 307b4f39f405..000000000000 --- a/dev-python/wcwidth/wcwidth-0.2.5-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..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 - sed -i -e 's:test_package_version:_&:' tests/test_core.py || die - - # causes pytest to fail, bug 775077 - sed -i '/^looponfailroots =/d' tox.ini || die - distutils-r1_src_prepare -} - -python_install_all() { - docinto docs - dodoc docs/intro.rst - distutils-r1_python_install_all -} |