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/irc/
Date: Thu, 31 Mar 2022 16:03:22
Message-Id: 1648741338.b506c1ae34164834a6717a5a636903cb93725181.mgorny@gentoo
1 commit: b506c1ae34164834a6717a5a636903cb93725181
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 31 15:42:18 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 15:42:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b506c1ae
7
8 dev-python/irc: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/irc/irc-20.0.0.ebuild | 44 ----------------------------------------
13 1 file changed, 44 deletions(-)
14
15 diff --git a/dev-python/irc/irc-20.0.0.ebuild b/dev-python/irc/irc-20.0.0.ebuild
16 deleted file mode 100644
17 index 08a3edec28f4..000000000000
18 --- a/dev-python/irc/irc-20.0.0.ebuild
19 +++ /dev/null
20 @@ -1,44 +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
28 -
29 -DESCRIPTION="IRC client framework written in Python"
30 -HOMEPAGE="https://github.com/jaraco/irc"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -IUSE="examples test"
37 -RESTRICT="!test? ( test )"
38 -
39 -RDEPEND="
40 - dev-python/jaraco-collections[${PYTHON_USEDEP}]
41 - >=dev-python/jaraco-functools-1.20[${PYTHON_USEDEP}]
42 - >=dev-python/jaraco-itertools-1.8[${PYTHON_USEDEP}]
43 - dev-python/jaraco-logging[${PYTHON_USEDEP}]
44 - dev-python/jaraco-stream[${PYTHON_USEDEP}]
45 - dev-python/jaraco-text[${PYTHON_USEDEP}]
46 - dev-python/more-itertools[${PYTHON_USEDEP}]
47 - dev-python/pytz[${PYTHON_USEDEP}]
48 - >=dev-python/tempora-1.6[${PYTHON_USEDEP}]
49 -"
50 -BDEPEND="
51 - >=dev-python/setuptools_scm-3.4.1[${PYTHON_USEDEP}]
52 -"
53 -
54 -distutils_enable_sphinx docs '>=dev-python/jaraco-packaging-3.2' \
55 - '>=dev-python/rst-linker-1.9'
56 -distutils_enable_tests pytest
57 -
58 -python_install_all() {
59 - if use examples; then
60 - docompress -x "/usr/share/doc/${PF}/scripts"
61 - dodoc -r scripts
62 - fi
63 - distutils-r1_python_install_all
64 -}