Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dockerpty/
Date: Sat, 29 Feb 2020 22:43:51
Message-Id: 1583015547.bff05139db5a07ce2564333a86c19bfb426da25f.sping@gentoo
1 commit: bff05139db5a07ce2564333a86c19bfb426da25f
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 29 22:32:27 2020 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 29 22:32:27 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bff05139
7
8 dev-python/dockerpty: EAPI 7 + py37
9
10 Bug: https://bugs.gentoo.org/711092
11 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
12 Package-Manager: Portage-2.3.84, Repoman-2.3.20
13
14 dev-python/dockerpty/dockerpty-0.4.1-r1.ebuild | 30 ++++++++++++++++++++++++++
15 1 file changed, 30 insertions(+)
16
17 diff --git a/dev-python/dockerpty/dockerpty-0.4.1-r1.ebuild b/dev-python/dockerpty/dockerpty-0.4.1-r1.ebuild
18 new file mode 100644
19 index 00000000000..ce54aae93e9
20 --- /dev/null
21 +++ b/dev-python/dockerpty/dockerpty-0.4.1-r1.ebuild
22 @@ -0,0 +1,30 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +PYTHON_COMPAT=( python3_{6,7} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Python library to use the pseudo-tty of a docker container"
32 +HOMEPAGE="https://github.com/d11wtq/dockerpty"
33 +SRC_URI="https://github.com/d11wtq/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="Apache-2.0"
36 +SLOT="0"
37 +KEYWORDS="~amd64"
38 +IUSE="test"
39 +RESTRICT="!test? ( test )"
40 +
41 +DEPEND="
42 + test? (
43 + >=dev-python/docker-py-0.7.0_rc2[${PYTHON_USEDEP}]
44 + >=dev-python/expects-0.4[${PYTHON_USEDEP}]
45 + >=dev-python/pytest-2.5.2[${PYTHON_USEDEP}]
46 + )
47 +"
48 +RDEPEND=">=dev-python/six-1.3.0[${PYTHON_USEDEP}]"
49 +
50 +python_test() {
51 + py.test tests || die "Tests failed under ${EPYTHON}"
52 +}