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/pydispatcher/
Date: Mon, 16 May 2022 13:24:32
Message-Id: 1652707262.da9c45bc3e458b8e468955613573d53d199fbb86.mgorny@gentoo
1 commit: da9c45bc3e458b8e468955613573d53d199fbb86
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 16 13:21:02 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 16 13:21:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da9c45bc
7
8 dev-python/pydispatcher: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pydispatcher/pydispatcher-2.1.2.ebuild | 32 -----------------------
13 1 file changed, 32 deletions(-)
14
15 diff --git a/dev-python/pydispatcher/pydispatcher-2.1.2.ebuild b/dev-python/pydispatcher/pydispatcher-2.1.2.ebuild
16 deleted file mode 100644
17 index 005057144550..000000000000
18 --- a/dev-python/pydispatcher/pydispatcher-2.1.2.ebuild
19 +++ /dev/null
20 @@ -1,32 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -PYTHON_COMPAT=( python3_{7..9} )
26 -
27 -inherit distutils-r1
28 -
29 -MY_P="PyPyDispatcher-${PV}"
30 -DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism"
31 -HOMEPAGE="https://github.com/scrapy/pypydispatcher https://pypi.org/project/PyPyDispatcher/"
32 -SRC_URI="mirror://pypi/${MY_P::1}/${MY_P%-*}/${MY_P}.tar.gz"
33 -S=${WORKDIR}/${MY_P}
34 -
35 -LICENSE="BSD"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
38 -IUSE="doc"
39 -
40 -distutils_enable_tests unittest
41 -
42 -python_compile_all() {
43 - if use doc; then
44 - cd docs/pydoc || die
45 - "${EPYTHON}" builddocs.py || die
46 - fi
47 -}
48 -
49 -python_install_all() {
50 - use doc && local HTML_DOCS=( docs/pydoc/. )
51 - distutils-r1_python_install_all
52 -}