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/inflect/
Date: Thu, 31 Dec 2020 08:50:40
Message-Id: 1609404328.27ebcb2f48baecdd60ab60d8075ab873bd33c9f0.mgorny@gentoo
1 commit: 27ebcb2f48baecdd60ab60d8075ab873bd33c9f0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 31 08:45:28 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 31 08:45:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27ebcb2f
7
8 dev-python/inflect: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/inflect/Manifest | 1 -
13 dev-python/inflect/inflect-4.1.0.ebuild | 36 ---------------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/dev-python/inflect/Manifest b/dev-python/inflect/Manifest
17 index c25924b8c25..6ecdc2154e4 100644
18 --- a/dev-python/inflect/Manifest
19 +++ b/dev-python/inflect/Manifest
20 @@ -1,2 +1 @@
21 -DIST inflect-4.1.0.tar.gz 72200 BLAKE2B c15f6b0d5d93050283dfc4d691e9fdbc26bb2f71573d6b397834e87af62f3afb8f5cdb0448c531de37e84729c0c6ae0cf4ea7a7b081a9dd784f7c06b962d7def SHA512 9a2ba4777f01475390976f3ac28f046d39d1f86cfdafd161cc7c8d33526aca35d44e6598ccf2a0b68d3511a64b67ed0991b51c78bda8f279cd706fd29a3fa514
22 DIST inflect-5.0.2.tar.gz 71323 BLAKE2B 42b2524b00a8b71aca6f164de9b57708be172ce63bc62480e951d082bd68f082ad2fadb502321a5fc97ffa3af95f26935d0de855144863b9bd1dfbdf3bdae516 SHA512 ea97ec4a4a1a94a6218e60c20d63e483026beb1901abe2fa69f186a823f8a786b9a82af231fc42bf705146f650fdbfa5ff660cfbe821eceb53891ef2e91eaec3
23
24 diff --git a/dev-python/inflect/inflect-4.1.0.ebuild b/dev-python/inflect/inflect-4.1.0.ebuild
25 deleted file mode 100644
26 index 5ed8ab2d118..00000000000
27 --- a/dev-python/inflect/inflect-4.1.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,9} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Correctly inflect words and numbers"
40 -HOMEPAGE="https://github.com/jazzband/inflect"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv s390 sparc x86"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="
50 - $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' pypy3 python3_{6,7})
51 -"
52 -BDEPEND="
53 - >=dev-python/setuptools_scm-3.4.1[${PYTHON_USEDEP}]
54 - dev-python/toml[${PYTHON_USEDEP}]
55 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
56 -"
57 -
58 -distutils_enable_sphinx docs '>=dev-python/jaraco-packaging-3.2' \
59 - '>=dev-python/rst-linker-1.9' dev-python/alabaster
60 -
61 -python_test() {
62 - # Override pytest options to skip flake8
63 - pytest -vv tests --override-ini="addopts=--doctest-modules" \
64 - || die "tests failed with ${EPYTHON}"
65 -}