From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 34B6F158094 for ; Tue, 28 Jun 2022 04:04:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 446CBE0AE8; Tue, 28 Jun 2022 04:03:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2D697E0AE8 for ; Tue, 28 Jun 2022 04:03:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 12FA03416C9 for ; Tue, 28 Jun 2022 04:03:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22C14526 for ; Tue, 28 Jun 2022 04:03:54 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1656389028.f487d26fbec88157d48b648e7412d1ed5c2be91a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-daemon/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-daemon/python-daemon-2.3.0-r1.ebuild X-VCS-Directories: dev-python/python-daemon/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f487d26fbec88157d48b648e7412d1ed5c2be91a X-VCS-Branch: master Date: Tue, 28 Jun 2022 04:03:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f8c29e5b-a94f-4fee-939d-e6bf33db3b8e X-Archives-Hash: 8ba9eb19fc10a39b0ca8db0453159d1a commit: f487d26fbec88157d48b648e7412d1ed5c2be91a Author: Michał Górny gentoo org> AuthorDate: Tue Jun 28 03:56:53 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 28 04:03:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f487d26f dev-python/python-daemon: Remove old Signed-off-by: Michał Górny gentoo.org> .../python-daemon/python-daemon-2.3.0-r1.ebuild | 43 ---------------------- 1 file changed, 43 deletions(-) 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 deleted file mode 100644 index 6cb93f1a8363..000000000000 --- a/dev-python/python-daemon/python-daemon-2.3.0-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{8..10} 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 -}