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: Sat, 07 Mar 2020 15:03:16
Message-Id: 1583593314.2865c4916873e24c52e8a647a53882164fce0dd2.mgorny@gentoo
1 commit: 2865c4916873e24c52e8a647a53882164fce0dd2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 7 15:01:54 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 7 15:01:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2865c491
7
8 app-text/pytextile: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-text/pytextile/Manifest | 1 -
13 app-text/pytextile/pytextile-2.3.3.ebuild | 41 -------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/app-text/pytextile/Manifest b/app-text/pytextile/Manifest
17 index 781743a9264..16cdcb6a803 100644
18 --- a/app-text/pytextile/Manifest
19 +++ b/app-text/pytextile/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytextile-2.3.3.tar.gz 42277 BLAKE2B a6e6e1d96695f3ada03f5da9bd8bd19b99da345d83c62b1d4f2e765303dfbbbee072da4611f1b29b46d28ed334373c809117940ff0c1238dea3b12fb9076656c SHA512 980c872bfdc056753fa5b344cbc828dbdc9ddfc2656f3cfb5c15b3351cfd9e4016f57af14b60af2f2764e556865301d7923a8f0687c5857fc2201bf10f56ab60
22 DIST pytextile-3.0.3.tar.gz 48560 BLAKE2B f8d3077e2b8e4de7157dcd9ed17f7889301946c2d3034dbbb0171b4930bd7268c65ce1f950552db2b783aa48acae639d5f4ccfcbca96807562b4a6377c3dd220 SHA512 142fe77c8858b0444428f9ca0f24d1a054a1566f85f00fd5cf860bb705a19666249cd03420d258d5acfc9f45052dd25e52767492a60a10d986d86b711b54612f
23
24 diff --git a/app-text/pytextile/pytextile-2.3.3.ebuild b/app-text/pytextile/pytextile-2.3.3.ebuild
25 deleted file mode 100644
26 index 69515f328b8..00000000000
27 --- a/app-text/pytextile/pytextile-2.3.3.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -PYTHON_COMPAT=( python3_6 )
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 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
52 - dev-python/pytest-runner[${PYTHON_USEDEP}]
53 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
54 -RDEPEND="
55 - dev-python/regex[${PYTHON_USEDEP}]
56 - "
57 -
58 -S="${WORKDIR}/${MY_P}"
59 -
60 -python_prepare_all() {
61 - # This resolves a nasty race condition, courtesy of Arfrever
62 - sed -e 's:with-id = 1::' -i setup.cfg || die
63 - # remove useless --cov arg injection
64 - rm pytest.ini || die
65 - distutils-r1_python_prepare_all
66 -}
67 -
68 -python_test() {
69 - py.test || die "Testsuite failed under ${EPYTHON}"
70 -}