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/dockerpty/
Date: Thu, 26 Mar 2020 20:53:05
Message-Id: 1585255593.33a6fdfb1133bd918042d34a617c0a7136f9b842.mgorny@gentoo
1 commit: 33a6fdfb1133bd918042d34a617c0a7136f9b842
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 26 20:46:33 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 26 20:46:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33a6fdfb
7
8 dev-python/dockerpty: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/dockerpty/dockerpty-0.4.1.ebuild | 31 -----------------------------
13 1 file changed, 31 deletions(-)
14
15 diff --git a/dev-python/dockerpty/dockerpty-0.4.1.ebuild b/dev-python/dockerpty/dockerpty-0.4.1.ebuild
16 deleted file mode 100644
17 index ed9f5eba34e..00000000000
18 --- a/dev-python/dockerpty/dockerpty-0.4.1.ebuild
19 +++ /dev/null
20 @@ -1,31 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -PYTHON_COMPAT=( python3_6 )
26 -
27 -inherit distutils-r1 vcs-snapshot
28 -
29 -DESCRIPTION="Python library to use the pseudo-tty of a docker container"
30 -HOMEPAGE="https://github.com/d11wtq/dockerpty"
31 -SRC_URI="https://github.com/d11wtq/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="Apache-2.0"
34 -SLOT="0"
35 -KEYWORDS="amd64"
36 -IUSE="test"
37 -RESTRICT="!test? ( test )"
38 -
39 -DEPEND="
40 - dev-python/setuptools[${PYTHON_USEDEP}]
41 - test? (
42 - >=dev-python/docker-py-0.7.0_rc2[${PYTHON_USEDEP}]
43 - >=dev-python/expects-0.4[${PYTHON_USEDEP}]
44 - >=dev-python/pytest-2.5.2[${PYTHON_USEDEP}]
45 - )
46 -"
47 -RDEPEND=">=dev-python/six-1.3.0[${PYTHON_USEDEP}]"
48 -
49 -python_test() {
50 - py.test tests || die "Tests failed under ${EPYTHON}"
51 -}