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/blessings/
Date: Mon, 11 May 2020 16:49:03
Message-Id: 1589215727.ae05950195ba976f075e3225b4e4d92cffd6b5ce.mgorny@gentoo
1 commit: ae05950195ba976f075e3225b4e4d92cffd6b5ce
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 11 16:23:43 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 11 16:48:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae059501
7
8 dev-python/blessings: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/blessings/blessings-1.7.ebuild | 43 -------------------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/dev-python/blessings/blessings-1.7.ebuild b/dev-python/blessings/blessings-1.7.ebuild
16 deleted file mode 100644
17 index 4530868483c..00000000000
18 --- a/dev-python/blessings/blessings-1.7.ebuild
19 +++ /dev/null
20 @@ -1,43 +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=( pypy3 python3_{6,7} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="A thin, practical wrapper around terminal coloring, styling, and positioning"
31 -HOMEPAGE="https://github.com/erikrose/blessings https://pypi.org/project/blessings/"
32 -# https://github.com/erikrose/blessings/pull/136
33 -SRC_URI="https://github.com/erikrose/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 -
35 -SLOT="0"
36 -LICENSE="MIT"
37 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
38 -IUSE="doc test"
39 -RESTRICT="!test? ( test )"
40 -
41 -RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
42 -BDEPEND="
43 - dev-python/setuptools[${PYTHON_USEDEP}]
44 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
45 - test? (
46 - ${RDEPEND}
47 - dev-python/nose[${PYTHON_USEDEP}]
48 - )
49 -"
50 -
51 -python_compile_all() {
52 - if use doc; then
53 - sphinx-build docs/ docs/_build/html || die
54 - HTML_DOCS=( docs/_build/html/. )
55 - fi
56 -}
57 -
58 -python_test() {
59 - # The tests need an interactive terminal
60 - # https://github.com/erikrose/blessings/issues/117
61 - script -eqc "nosetests -v -w \"${BUILD_DIR}\"" /dev/null \
62 - || die "tests failed with ${EPYTHON}"
63 -}