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/plumbum/
Date: Thu, 31 Mar 2022 19:18:18
Message-Id: 1648754264.85cafcdb0fb8978d7ac0fa530870fbc54d2e1a10.mgorny@gentoo
1 commit: 85cafcdb0fb8978d7ac0fa530870fbc54d2e1a10
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 31 19:17:44 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 19:17:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85cafcdb
7
8 dev-python/plumbum: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/plumbum/plumbum-1.7.2.ebuild | 50 ---------------------------------
13 1 file changed, 50 deletions(-)
14
15 diff --git a/dev-python/plumbum/plumbum-1.7.2.ebuild b/dev-python/plumbum/plumbum-1.7.2.ebuild
16 deleted file mode 100644
17 index 1c7d193c0d43..000000000000
18 --- a/dev-python/plumbum/plumbum-1.7.2.ebuild
19 +++ /dev/null
20 @@ -1,50 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -inherit distutils-r1 optfeature
28 -
29 -DESCRIPTION="A library for shell script-like programs in python"
30 -HOMEPAGE="https://plumbum.readthedocs.io/en/latest/ https://github.com/tomerfiliba/plumbum"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -
37 -BDEPEND="
38 - test? (
39 - dev-python/psutil[${PYTHON_USEDEP}]
40 - dev-python/pytest-mock[${PYTHON_USEDEP}]
41 - dev-python/pytest-timeout[${PYTHON_USEDEP}]
42 - )"
43 -
44 -distutils_enable_tests pytest
45 -
46 -EPYTEST_DESELECT=(
47 - # Need sshd running
48 - tests/test_remote.py
49 - tests/test_utils.py
50 - # Windows specific
51 - tests/test_putty.py
52 - # Needs sudo without password
53 - tests/test_sudo.py
54 - # Wrong assumptions about env handling
55 - tests/test_env.py::TestEnv::test_change_env
56 - tests/test_env.py::TestEnv::test_dictlike
57 - tests/test_local.py::TestLocalPath::test_iterdir
58 -)
59 -
60 -src_prepare() {
61 - sed -e '/addopts/d' -i setup.cfg || die
62 - distutils-r1_src_prepare
63 -}
64 -
65 -pkg_postinst() {
66 - optfeature "remote commands via ssh" dev-python/paramiko
67 - optfeature "progress bars in jupyter" dev-python/ipywidgets
68 - optfeature "colored output in jupyter" dev-python/ipython
69 - optfeature "images on the command line" dev-python/pillow
70 -}