diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-07-12 18:42:27 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-07-12 18:52:40 +0200 |
commit | ec9abac56eac93be7b6bef4f61cc8043450aab63 (patch) | |
tree | 69b424cf01abe12f15b0de230af2795dee6829af /dev-python/humanize | |
parent | dev-python/httpretty: Remove redundant versions (diff) | |
download | gentoo-ec9abac56eac93be7b6bef4f61cc8043450aab63.tar.gz gentoo-ec9abac56eac93be7b6bef4f61cc8043450aab63.tar.bz2 gentoo-ec9abac56eac93be7b6bef4f61cc8043450aab63.zip |
dev-python/humanize: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/humanize')
-rw-r--r-- | dev-python/humanize/Manifest | 1 | ||||
-rw-r--r-- | dev-python/humanize/humanize-0.5.1.ebuild | 38 |
2 files changed, 0 insertions, 39 deletions
diff --git a/dev-python/humanize/Manifest b/dev-python/humanize/Manifest index de3e9c5045e8..ea2630564c67 100644 --- a/dev-python/humanize/Manifest +++ b/dev-python/humanize/Manifest @@ -1,3 +1,2 @@ -DIST humanize-0.5.1.tar.gz 20507 BLAKE2B 55d7b598b32658b1d4c4741b37b5c33bdc9d63a5a779455e2fb93e1e4c3a0d8fd58e8522ef82734e1ba2b161fd881829373ba3569baffd9ea3271ad7ed3e7568 SHA512 dd7ad7f3c564cc6abcb6b128e50dbea7f19f7f418bfd936aae2472961c53ec71202133c5c2b5b930ef41ef807b51d6ba1210565627ed32c0b41acc0abd32a2d5 DIST humanize-2.4.0.tar.gz 46489 BLAKE2B bb2cfeebd25f4aa073539bb616a5d05db2827dd2aaa6f093d46b51415ef3b954918a45f2434b9ce41845389be986200e23b1cb752e8a0bd03649377ea46fbec6 SHA512 20707a59f2f0bbc52e1e5d906e733561f53c3bc429ce24662ea9014d7f73f87a8f3ae9aa62f2564fafbe9de0d6b250e8fecec4a3cb81968c5b24d61ad9627d1b DIST humanize-2.4.1.tar.gz 46827 BLAKE2B e9b37283c5a4db1c5b2a9ef61919fe02a4e5720711129910e51b0b3481290c9bfa4e29225db75c37d83884c00065fa71b599ed42fac41414f481167d33091a98 SHA512 5d8534d2e97f375c7ec065dd239334a2a5da9d058f7c0312cb2683c3e42f5b8f99e117782e0888a6e5348f43958523df6609c294f5af7c971d81bd29679a0500 diff --git a/dev-python/humanize/humanize-0.5.1.ebuild b/dev-python/humanize/humanize-0.5.1.ebuild deleted file mode 100644 index 9fb7249b70dd..000000000000 --- a/dev-python/humanize/humanize-0.5.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="Common humanization utilities" -HOMEPAGE="https://github.com/jmoiron/humanize/" -# Tests are not included in PyPI tarballs -# https://github.com/jmoiron/humanize/issues/33 -SRC_URI="https://github.com/jmoiron/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/mock[${PYTHON_USEDEP}] ) -" - -python_compile_all() { - if use doc; then - cd docs || die - sphinx-build . _build/html || die - HTML_DOCS=( docs/_build/html/. ) - fi -} - -python_test() { - esetup.py test || die "tests failed with ${EPYTHON}" -} |