Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/blessings/
Date: Sat, 02 Dec 2017 15:09:26
Message-Id: 1512227350.8ec3b93065b8366fd832c179493d23ae1bfe4c45.floppym@gentoo
1 commit: 8ec3b93065b8366fd832c179493d23ae1bfe4c45
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 2 15:08:54 2017 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 2 15:09:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ec3b930
7
8 dev-python/blessings: remove old
9
10 Package-Manager: Portage-2.3.15, Repoman-2.3.6_p7
11
12 dev-python/blessings/blessings-1.6.ebuild | 26 --------------------------
13 1 file changed, 26 deletions(-)
14
15 diff --git a/dev-python/blessings/blessings-1.6.ebuild b/dev-python/blessings/blessings-1.6.ebuild
16 deleted file mode 100644
17 index ac8948b4539..00000000000
18 --- a/dev-python/blessings/blessings-1.6.ebuild
19 +++ /dev/null
20 @@ -1,26 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -PYTHON_COMPAT=( python2_7 python3_{4,5} )
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.python.org/pypi/blessings/"
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 -
39 -DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
40 -
41 -python_test() {
42 - # The tests need an interactive terminal
43 - # https://github.com/erikrose/blessings/issues/117
44 - script -eqc "nosetests -w \"${BUILD_DIR}\"" /dev/null \
45 - || die "tests failed with ${EPYTHON}"
46 -}