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/python-daemon/
Date: Tue, 28 Jun 2022 04:04:00
Message-Id: 1656389028.f487d26fbec88157d48b648e7412d1ed5c2be91a.mgorny@gentoo
1 commit: f487d26fbec88157d48b648e7412d1ed5c2be91a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 28 03:56:53 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 28 04:03:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f487d26f
7
8 dev-python/python-daemon: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../python-daemon/python-daemon-2.3.0-r1.ebuild | 43 ----------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/dev-python/python-daemon/python-daemon-2.3.0-r1.ebuild b/dev-python/python-daemon/python-daemon-2.3.0-r1.ebuild
16 deleted file mode 100644
17 index 6cb93f1a8363..000000000000
18 --- a/dev-python/python-daemon/python-daemon-2.3.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,43 +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 -DISTUTILS_USE_SETUPTOOLS=rdepend
27 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Library to implement a well-behaved Unix daemon process"
32 -HOMEPAGE="https://pypi.org/project/python-daemon/"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="PSF-2"
36 -SLOT="0"
37 -KEYWORDS="amd64 arm x86"
38 -
39 -RDEPEND="
40 - dev-python/lockfile[${PYTHON_USEDEP}]
41 -"
42 -
43 -BDEPEND="
44 - dev-python/docutils[${PYTHON_USEDEP}]
45 - dev-python/twine[${PYTHON_USEDEP}]
46 - test? (
47 - dev-python/testtools[${PYTHON_USEDEP}]
48 - dev-python/testscenarios[${PYTHON_USEDEP}]
49 - )
50 -"
51 -
52 -PATCHES=(
53 - "${FILESDIR}/${P}-fix-py3.10.patch"
54 -)
55 -
56 -distutils_enable_tests unittest
57 -
58 -src_prepare() {
59 - # fix for >=testtools-2.5.0
60 - sed -e 's/testtools.helpers.safe_hasattr/hasattr/' \
61 - -i test/test_metadata.py || die
62 - distutils-r1_src_prepare
63 -}