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/pexpect/
Date: Tue, 31 May 2022 07:23:02
Message-Id: 1653981769.99046c61444b6f56f1289996a430ac9028481612.mgorny@gentoo
1 commit: 99046c61444b6f56f1289996a430ac9028481612
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 31 07:19:29 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 31 07:22:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99046c61
7
8 dev-python/pexpect: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pexpect/pexpect-4.8.0-r2.ebuild | 44 ------------------------------
13 1 file changed, 44 deletions(-)
14
15 diff --git a/dev-python/pexpect/pexpect-4.8.0-r2.ebuild b/dev-python/pexpect/pexpect-4.8.0-r2.ebuild
16 deleted file mode 100644
17 index 9e985d413abf..000000000000
18 --- a/dev-python/pexpect/pexpect-4.8.0-r2.ebuild
19 +++ /dev/null
20 @@ -1,44 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
27 -PYTHON_REQ_USE="threads(+)"
28 -DISTUTILS_USE_SETUPTOOLS=no
29 -
30 -inherit distutils-r1
31 -
32 -DESCRIPTION="Python module for spawning child apps and responding to expected patterns"
33 -HOMEPAGE="https://pexpect.readthedocs.io/ https://pypi.org/project/pexpect/ https://github.com/pexpect/pexpect/"
34 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
35 -
36 -LICENSE="MIT"
37 -SLOT="0"
38 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
39 -IUSE="examples"
40 -
41 -RDEPEND=">=dev-python/ptyprocess-0.5[${PYTHON_USEDEP}]"
42 -
43 -PATCHES=(
44 - "${FILESDIR}"/${P}-sphinx-3.patch
45 - "${FILESDIR}"/${P}-fix-PS1.patch
46 -)
47 -
48 -distutils_enable_tests pytest
49 -distutils_enable_sphinx doc
50 -
51 -src_test() {
52 - # workaround new readline defaults
53 - echo "set enable-bracketed-paste off" > "${T}"/inputrc || die
54 - local -x INPUTRC="${T}"/inputrc
55 - distutils-r1_src_test
56 -}
57 -
58 -python_install_all() {
59 - if use examples; then
60 - dodoc -r examples
61 - docompress -x /usr/share/doc/${PF}/examples
62 - fi
63 - distutils-r1_python_install_all
64 -}