summaryrefslogtreecommitdiff
path: root/dev-python/python-daemon/python-daemon-2.3.0-r2.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-08-19 11:04:54 +0200
committerMichał Górny <mgorny@gentoo.org>2022-08-19 11:27:33 +0200
commit90f819dd9bbdcd275fae71e8b9005713e276b901 (patch)
tree13223b2b52a3bc33fc0d27218383817c0e50cbc2 /dev-python/python-daemon/python-daemon-2.3.0-r2.ebuild
parent9937cfa9112ac16709e91e712886f4f6f96cc6d8 (diff)
downloadgentoo-90f819dd9bbdcd275fae71e8b9005713e276b901.tar.gz
gentoo-90f819dd9bbdcd275fae71e8b9005713e276b901.tar.bz2
gentoo-90f819dd9bbdcd275fae71e8b9005713e276b901.zip
dev-python/python-daemon: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-daemon/python-daemon-2.3.0-r2.ebuild')
-rw-r--r--dev-python/python-daemon/python-daemon-2.3.0-r2.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-python/python-daemon/python-daemon-2.3.0-r2.ebuild b/dev-python/python-daemon/python-daemon-2.3.0-r2.ebuild
deleted file mode 100644
index 31025d91ad90..000000000000
--- a/dev-python/python-daemon/python-daemon-2.3.0-r2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Library to implement a well-behaved Unix daemon process"
-HOMEPAGE="https://pypi.org/project/python-daemon/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="PSF-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-
-RDEPEND="
- dev-python/lockfile[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
- dev-python/docutils[${PYTHON_USEDEP}]
- dev-python/twine[${PYTHON_USEDEP}]
- test? (
- dev-python/testtools[${PYTHON_USEDEP}]
- dev-python/testscenarios[${PYTHON_USEDEP}]
- )
-"
-
-PATCHES=(
- "${FILESDIR}/${P}-fix-py3.10.patch"
-)
-
-distutils_enable_tests unittest
-
-src_prepare() {
- # fix for >=testtools-2.5.0
- sed -e 's/testtools.helpers.safe_hasattr/hasattr/' \
- -i test/test_metadata.py || die
- distutils-r1_src_prepare
-}