Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/humanize/
Date: Thu, 30 Jul 2020 20:41:16
Message-Id: 1596141652.f2fcb454bdf4b3fb9832ed2d1f9a4461138b26f2.mgorny@gentoo
1 commit: f2fcb454bdf4b3fb9832ed2d1f9a4461138b26f2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 20:37:17 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 20:40:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2fcb454
7
8 dev-python/humanize: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/humanize/Manifest | 1 -
13 dev-python/humanize/humanize-2.4.0.ebuild | 36 -------------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/dev-python/humanize/Manifest b/dev-python/humanize/Manifest
17 index ea2630564c6..a85145be7d1 100644
18 --- a/dev-python/humanize/Manifest
19 +++ b/dev-python/humanize/Manifest
20 @@ -1,2 +1 @@
21 -DIST humanize-2.4.0.tar.gz 46489 BLAKE2B bb2cfeebd25f4aa073539bb616a5d05db2827dd2aaa6f093d46b51415ef3b954918a45f2434b9ce41845389be986200e23b1cb752e8a0bd03649377ea46fbec6 SHA512 20707a59f2f0bbc52e1e5d906e733561f53c3bc429ce24662ea9014d7f73f87a8f3ae9aa62f2564fafbe9de0d6b250e8fecec4a3cb81968c5b24d61ad9627d1b
22 DIST humanize-2.4.1.tar.gz 46827 BLAKE2B e9b37283c5a4db1c5b2a9ef61919fe02a4e5720711129910e51b0b3481290c9bfa4e29225db75c37d83884c00065fa71b599ed42fac41414f481167d33091a98 SHA512 5d8534d2e97f375c7ec065dd239334a2a5da9d058f7c0312cb2683c3e42f5b8f99e117782e0888a6e5348f43958523df6609c294f5af7c971d81bd29679a0500
23
24 diff --git a/dev-python/humanize/humanize-2.4.0.ebuild b/dev-python/humanize/humanize-2.4.0.ebuild
25 deleted file mode 100644
26 index fe65045a9ba..00000000000
27 --- a/dev-python/humanize/humanize-2.4.0.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
36 -# The package uses pkg_resources to determine its version
37 -DISTUTILS_USE_SETUPTOOLS=manual
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Common humanization utilities"
42 -HOMEPAGE="https://github.com/jmoiron/humanize/"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
52 -BDEPEND="
53 - dev-python/setuptools[${PYTHON_USEDEP}]
54 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
55 - test? (
56 - dev-python/freezegun[${PYTHON_USEDEP}]
57 - dev-python/pytest[${PYTHON_USEDEP}]
58 - )
59 -"
60 -
61 -python_test() {
62 - # The package uses pkg_resources to determine its version
63 - distutils_install_for_testing
64 - pytest -vv || die "Tests fail with ${EPYTHON}"
65 -}