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/pastedeploy/
Date: Sun, 05 Sep 2021 08:52:59
Message-Id: 1630831972.46b22cbe7f9fd41c0189243601f40c21f821463f.mgorny@gentoo
1 commit: 46b22cbe7f9fd41c0189243601f40c21f821463f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 5 06:40:18 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 5 08:52:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46b22cbe
7
8 dev-python/pastedeploy: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pastedeploy/pastedeploy-2.1.1.ebuild | 40 -------------------------
13 1 file changed, 40 deletions(-)
14
15 diff --git a/dev-python/pastedeploy/pastedeploy-2.1.1.ebuild b/dev-python/pastedeploy/pastedeploy-2.1.1.ebuild
16 deleted file mode 100644
17 index 48502600d35..00000000000
18 --- a/dev-python/pastedeploy/pastedeploy-2.1.1.ebuild
19 +++ /dev/null
20 @@ -1,40 +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 -MY_PN="PasteDeploy"
32 -MY_P="${MY_PN}-${PV}"
33 -
34 -DESCRIPTION="Load, configure, and compose WSGI applications and servers"
35 -HOMEPAGE="https://pypi.org/project/PasteDeploy/"
36 -# pypi tarball does not include tests
37 -SRC_URI="https://github.com/Pylons/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
38 -
39 -LICENSE="MIT"
40 -SLOT="0"
41 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
42 -IUSE="doc"
43 -
44 -RDEPEND="dev-python/namespace-paste[${PYTHON_USEDEP}]"
45 -BDEPEND="${RDEPEND}"
46 -
47 -distutils_enable_tests pytest
48 -
49 -python_prepare_all() {
50 - sed -i 's:"pytest-runner"::' setup.py || die
51 -
52 - distutils-r1_python_prepare_all
53 -}
54 -
55 -python_install_all() {
56 - distutils-r1_python_install_all
57 -
58 - use doc && dodoc docs/*.txt
59 - find "${D}" -name '*.pth' -delete || die
60 -}