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/curtsies/
Date: Mon, 11 May 2020 16:49:04
Message-Id: 1589215729.068a0f3d61c08efe2c3d252606d37a1e6446030b.mgorny@gentoo
1 commit: 068a0f3d61c08efe2c3d252606d37a1e6446030b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 11 16:29:21 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 11 16:48:49 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=068a0f3d
7
8 dev-python/curtsies: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/curtsies/curtsies-0.3.0.ebuild | 36 -------------------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/dev-python/curtsies/curtsies-0.3.0.ebuild b/dev-python/curtsies/curtsies-0.3.0.ebuild
16 deleted file mode 100644
17 index 4fe2ea79b56..00000000000
18 --- a/dev-python/curtsies/curtsies-0.3.0.ebuild
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_6 )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Curses-like terminal wrapper, with colored strings"
31 -HOMEPAGE="https://github.com/thomasballinger/curtsies"
32 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 -
34 -SLOT="0"
35 -LICENSE="MIT"
36 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
37 -IUSE="test"
38 -RESTRICT="!test? ( test )"
39 -
40 -RDEPEND="
41 - >=dev-python/blessings-1.5[${PYTHON_USEDEP}]
42 - dev-python/pyte[${PYTHON_USEDEP}]
43 - >=dev-python/wcwidth-0.1.4[${PYTHON_USEDEP}]
44 -"
45 -DEPEND="${RDEPEND}
46 - dev-python/setuptools[${PYTHON_USEDEP}]
47 - test? (
48 - dev-python/mock[${PYTHON_USEDEP}]
49 - dev-python/nose[${PYTHON_USEDEP}]
50 - dev-python/pyte[${PYTHON_USEDEP}]
51 - )
52 -"
53 -
54 -python_test() {
55 - nosetests --verbose tests || die
56 -}