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/cmd2/
Date: Sat, 26 Mar 2022 18:14:56
Message-Id: 1648318154.11079947cea00a2323ac06bcb57aa6df3e4c4e98.arthurzam@gentoo
1 commit: 11079947cea00a2323ac06bcb57aa6df3e4c4e98
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 26 18:09:14 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 26 18:09:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11079947
7
8 dev-python/cmd2: drop 2.3.3
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/cmd2/Manifest | 1 -
13 dev-python/cmd2/cmd2-2.3.3.ebuild | 52 ---------------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/dev-python/cmd2/Manifest b/dev-python/cmd2/Manifest
17 index 614972e417b5..eef60eddc678 100644
18 --- a/dev-python/cmd2/Manifest
19 +++ b/dev-python/cmd2/Manifest
20 @@ -1,2 +1 @@
21 -DIST cmd2-2.3.3.tar.gz 675880 BLAKE2B 216b10d7a1d2eb78106e5af51a6c996ea22ff8ef13503ace6019978152f63d5015e61ab911a839703d2b3506fea4e709d507d147b2af259cf933ad628e52be22 SHA512 30d7a82a1c3d23431a40a7e99f10a4c23227e9ab073ab1d7fd83e516f54e9c90bda10e6072b50c0a2ca435498c1060e06b32a550409721899e28d2662995a8b8
22 DIST cmd2-2.4.0.tar.gz 680118 BLAKE2B 09f4893db7587dce9fd59103f8a1ef54c2b61248dd4aed313a90a390bb50e8927ef7a11dc5ca3af90b5ccf36ce16e0e18f3b555cc961a8c6862f7b8131f190ae SHA512 4ecd4c71294bee86f02b39a588c42a7232309db54459c950f77734926dedc3ec273237b9615bab6ef8a499c65442e3d6f7d2e9f159ccca021db0b450435ffbc0
23
24 diff --git a/dev-python/cmd2/cmd2-2.3.3.ebuild b/dev-python/cmd2/cmd2-2.3.3.ebuild
25 deleted file mode 100644
26 index 6603d301f98e..000000000000
27 --- a/dev-python/cmd2/cmd2-2.3.3.ebuild
28 +++ /dev/null
29 @@ -1,52 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -inherit distutils-r1 virtualx
37 -
38 -DESCRIPTION="Extra features for standard library's cmd module"
39 -HOMEPAGE="https://github.com/python-cmd2/cmd2"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc64 sparc x86 ~amd64-linux ~x86-linux"
45 -
46 -RDEPEND="
47 - dev-python/attrs[${PYTHON_USEDEP}]
48 - >=dev-python/colorama-0.3.7[${PYTHON_USEDEP}]
49 - >=dev-python/pyperclip-1.6[${PYTHON_USEDEP}]
50 - dev-python/six[${PYTHON_USEDEP}]
51 - dev-python/wcwidth[${PYTHON_USEDEP}]
52 -"
53 -# pyperclip uses clipboard backends in the following preference order:
54 -# pygtk, xclip, xsel, klipper, qtpy, pyqt5, pyqt4.
55 -# klipper is known to be broken in Xvfb, and therefore causes test
56 -# failures. to avoid them, we must ensure that one of the backends
57 -# preferred to it is available (i.e. xclip or xsel) + which(1).
58 -BDEPEND="
59 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
60 - test? (
61 - dev-python/pytest-mock[${PYTHON_USEDEP}]
62 - sys-apps/which
63 - || (
64 - x11-misc/xclip
65 - x11-misc/xsel
66 - )
67 - )
68 -"
69 -
70 -distutils_enable_tests pytest
71 -
72 -src_prepare() {
73 - distutils-r1_src_prepare
74 - sed -i -e '/--cov/d' setup.cfg || die
75 -}
76 -
77 -src_test() {
78 - # tests rely on very specific text wrapping...
79 - local -x COLUMNS=80
80 - virtx distutils-r1_src_test
81 -}