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: app-text/pytextile/
Date: Mon, 31 May 2021 20:22:18
Message-Id: 1622492388.209360c7fde730829b698c712e2adf9e4f564c17.mgorny@gentoo
1 commit: 209360c7fde730829b698c712e2adf9e4f564c17
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 20:19:48 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 20:19:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=209360c7
7
8 app-text/pytextile: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-text/pytextile/Manifest | 1 -
13 app-text/pytextile/pytextile-3.0.3.ebuild | 45 -------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/app-text/pytextile/Manifest b/app-text/pytextile/Manifest
17 index 692dc66e6b3..08cfb9abe24 100644
18 --- a/app-text/pytextile/Manifest
19 +++ b/app-text/pytextile/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytextile-3.0.3.tar.gz 48560 BLAKE2B f8d3077e2b8e4de7157dcd9ed17f7889301946c2d3034dbbb0171b4930bd7268c65ce1f950552db2b783aa48acae639d5f4ccfcbca96807562b4a6377c3dd220 SHA512 142fe77c8858b0444428f9ca0f24d1a054a1566f85f00fd5cf860bb705a19666249cd03420d258d5acfc9f45052dd25e52767492a60a10d986d86b711b54612f
22 DIST pytextile-4.0.1.tar.gz 49282 BLAKE2B b51220ff33fe43b83d0aefee840b5170747015073fbe88934798c2505c3455e9805eee8815ec8068521c88a44a309bd0eb32e84757d088536f1c12a1f9bc0ca0 SHA512 e299663fd71b935e9c948649baba80584b1339dd3393a3f37b39475fe1d6a4addaaa2adcd16ba57b4c5db43ab9f8de6e9332871915b1fff7b7882ad5e8d64580
23
24 diff --git a/app-text/pytextile/pytextile-3.0.3.ebuild b/app-text/pytextile/pytextile-3.0.3.ebuild
25 deleted file mode 100644
26 index c760aa34679..00000000000
27 --- a/app-text/pytextile/pytextile-3.0.3.ebuild
28 +++ /dev/null
29 @@ -1,45 +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 -PYTHON_COMPAT=( python3_7 )
35 -
36 -inherit distutils-r1
37 -
38 -MY_PN="python-textile"
39 -MY_P="${MY_PN}-${PV}"
40 -
41 -DESCRIPTION="A Python port of Textile, A humane web text generator"
42 -HOMEPAGE="https://github.com/textile/python-textile"
43 -SRC_URI="https://github.com/textile/python-textile/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="amd64 ppc ppc64 sparc x86"
48 -IUSE="test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="
52 - dev-python/html5lib[${PYTHON_USEDEP}]
53 - dev-python/regex[${PYTHON_USEDEP}]
54 - dev-python/six[${PYTHON_USEDEP}]"
55 -DEPEND="
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - test? (
58 - ${RDEPEND}
59 - dev-python/pytest[${PYTHON_USEDEP}]
60 - )"
61 -
62 -S="${WORKDIR}/${MY_P}"
63 -
64 -src_prepare() {
65 - default
66 - # remove useless --cov arg injection
67 - rm pytest.ini || die
68 - # remove useless pytest-runner dep
69 - sed -e "s/pytest-runner//g" -i setup.py || die
70 -}
71 -
72 -python_test() {
73 - pytest || die "Testsuite failed under ${EPYTHON}"
74 -}