Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/plumbum/
Date: Fri, 24 Dec 2021 19:52:47
Message-Id: 1640375440.af4f56a4b9298d862ca98b93da95c949fa470bb7.arthurzam@gentoo
1 commit: af4f56a4b9298d862ca98b93da95c949fa470bb7
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 24 19:50:40 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 24 19:50:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af4f56a4
7
8 dev-python/plumbum: drop 1.7.0-r1
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/plumbum/Manifest | 1 -
13 dev-python/plumbum/plumbum-1.7.0-r1.ebuild | 52 ------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/dev-python/plumbum/Manifest b/dev-python/plumbum/Manifest
17 index 3f99c0c5476b..973006508c9e 100644
18 --- a/dev-python/plumbum/Manifest
19 +++ b/dev-python/plumbum/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST plumbum-1.7.0.tar.gz 318890 BLAKE2B 19ae8a37dff38ac3d263d9400e44ac174c46ff8cef92cf45b9ea31d6d344543fba66de3fd0fcd15acc205af5939f11be6c56e6cd9ca39a666f92f18dcd29b9f7 SHA512 0a12891278c12bb98b8bbb825448375240ee347eb3ca166b9cbb4da3e083979d947a7bf0a843fd9a0b7c9a13d09f24e988ee877f29420a3f29f40e387eec8826
22 DIST plumbum-1.7.1.tar.gz 323014 BLAKE2B 28d9616c3bcb13f1e9cf9c47b4533c62caf630d7eab998e86023256b568f8f038444f8741bb902ed999f04f480bc09159aab075d184f497b00a452bfac57c996 SHA512 d6648acce8e84045cd8c2fc4a90c427fd5ab5a39e49e7a1f10b20ffbca20cc42636183325501e5b577631e4f1c5a1b3e7cae12ec6b89ff853e5a50946c15f3c7
23 DIST plumbum-1.7.2.tar.gz 323051 BLAKE2B a16d9210606ac67abd425fcff109d40836dc969729cc5bf78a5d224c0beabf09d56d35f17809994d758153c6e18e4af91403f7ae0111912447367be68f6592c1 SHA512 77e75988255ca78fa5c253c6d076d63f8f9250a2b153ef23e40f35315e255ea09403d854a19bb265fd658bb9e5f0f705dc7530ecacc40b4b48e33acdf50dddf9
24
25 diff --git a/dev-python/plumbum/plumbum-1.7.0-r1.ebuild b/dev-python/plumbum/plumbum-1.7.0-r1.ebuild
26 deleted file mode 100644
27 index 09603ad72375..000000000000
28 --- a/dev-python/plumbum/plumbum-1.7.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -inherit distutils-r1 optfeature
38 -
39 -DESCRIPTION="A library for shell script-like programs in python"
40 -HOMEPAGE="https://plumbum.readthedocs.io/en/latest/ https://github.com/tomerfiliba/plumbum"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -
47 -BDEPEND="
48 - test? (
49 - dev-python/psutil[${PYTHON_USEDEP}]
50 - dev-python/pytest-timeout[${PYTHON_USEDEP}]
51 - )"
52 -
53 -distutils_enable_tests pytest
54 -
55 -src_prepare() {
56 - sed -e '/addopts/d' -i setup.cfg || die
57 - distutils-r1_src_prepare
58 -}
59 -
60 -python_test() {
61 - local deselect=(
62 - # Need sshd running
63 - tests/test_remote.py
64 - tests/test_utils.py
65 - # Windows specific
66 - tests/test_putty.py
67 - # Needs sudo without password
68 - tests/test_sudo.py
69 - # Wrong assumptions about env handling
70 - tests/test_env.py::TestEnv::test_change_env
71 - tests/test_env.py::TestEnv::test_dictlike
72 - tests/test_local.py::TestLocalPath::test_iterdir
73 - )
74 - epytest ${deselect[@]/#/--deselect }
75 -}
76 -
77 -pkg_postinst() {
78 - optfeature "remote commands via ssh" dev-python/paramiko
79 - optfeature "progress bars in jupyter" dev-python/ipywidgets
80 - optfeature "colored output in jupyter" dev-python/ipython
81 - optfeature "images on the command line" dev-python/pillow
82 -}