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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 48FAB158041 for ; Sun, 5 Sep 2021 08:52:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BD11E05AC; Sun, 5 Sep 2021 08:52:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6F53AE05AC for ; Sun, 5 Sep 2021 08:52:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D21F335D35 for ; Sun, 5 Sep 2021 08:52:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EBD67A for ; Sun, 5 Sep 2021 08:52:55 +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: <1630831972.46b22cbe7f9fd41c0189243601f40c21f821463f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pastedeploy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pastedeploy/pastedeploy-2.1.1.ebuild X-VCS-Directories: dev-python/pastedeploy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 46b22cbe7f9fd41c0189243601f40c21f821463f X-VCS-Branch: master Date: Sun, 5 Sep 2021 08:52:55 +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: 35aafc43-fa8e-43bc-9b68-73db8d25d0e7 X-Archives-Hash: 4061cb76d09d859cbdc42334ebd8c752 commit: 46b22cbe7f9fd41c0189243601f40c21f821463f Author: Michał Górny gentoo org> AuthorDate: Sun Sep 5 06:40:18 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Sep 5 08:52:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46b22cbe dev-python/pastedeploy: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pastedeploy/pastedeploy-2.1.1.ebuild | 40 ------------------------- 1 file changed, 40 deletions(-) diff --git a/dev-python/pastedeploy/pastedeploy-2.1.1.ebuild b/dev-python/pastedeploy/pastedeploy-2.1.1.ebuild deleted file mode 100644 index 48502600d35..00000000000 --- a/dev-python/pastedeploy/pastedeploy-2.1.1.ebuild +++ /dev/null @@ -1,40 +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 - -MY_PN="PasteDeploy" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Load, configure, and compose WSGI applications and servers" -HOMEPAGE="https://pypi.org/project/PasteDeploy/" -# pypi tarball does not include tests -SRC_URI="https://github.com/Pylons/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" -IUSE="doc" - -RDEPEND="dev-python/namespace-paste[${PYTHON_USEDEP}]" -BDEPEND="${RDEPEND}" - -distutils_enable_tests pytest - -python_prepare_all() { - sed -i 's:"pytest-runner"::' setup.py || die - - distutils-r1_python_prepare_all -} - -python_install_all() { - distutils-r1_python_install_all - - use doc && dodoc docs/*.txt - find "${D}" -name '*.pth' -delete || die -}