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: Mon, 27 Jan 2020 07:22:56
Message-Id: 1580109744.a760f5cf0cebb2937ce9698d2247c49b5e54df6b.mgorny@gentoo
1 commit: a760f5cf0cebb2937ce9698d2247c49b5e54df6b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 27 07:18:02 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 27 07:22:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a760f5cf
7
8 dev-python/pastedeploy: Combine both revisions
9
10 There were no major changes in -r1, so just copy stable keywords over
11 and remove old.
12
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 dev-python/pastedeploy/pastedeploy-2.0.1-r1.ebuild | 2 +-
16 dev-python/pastedeploy/pastedeploy-2.0.1.ebuild | 38 ----------------------
17 2 files changed, 1 insertion(+), 39 deletions(-)
18
19 diff --git a/dev-python/pastedeploy/pastedeploy-2.0.1-r1.ebuild b/dev-python/pastedeploy/pastedeploy-2.0.1-r1.ebuild
20 index c0cab0d1ae9..cf1492eec8e 100644
21 --- a/dev-python/pastedeploy/pastedeploy-2.0.1-r1.ebuild
22 +++ b/dev-python/pastedeploy/pastedeploy-2.0.1-r1.ebuild
23 @@ -18,7 +18,7 @@ SRC_URI="https://github.com/Pylons/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
24
25 LICENSE="MIT"
26 SLOT="0"
27 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
28 +KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
29 IUSE="doc"
30
31 RDEPEND="dev-python/namespace-paste[${PYTHON_USEDEP}]"
32
33 diff --git a/dev-python/pastedeploy/pastedeploy-2.0.1.ebuild b/dev-python/pastedeploy/pastedeploy-2.0.1.ebuild
34 deleted file mode 100644
35 index 32725a8d99e..00000000000
36 --- a/dev-python/pastedeploy/pastedeploy-2.0.1.ebuild
37 +++ /dev/null
38 @@ -1,38 +0,0 @@
39 -# Copyright 1999-2020 Gentoo Authors
40 -# Distributed under the terms of the GNU General Public License v2
41 -
42 -EAPI=7
43 -PYTHON_COMPAT=( python2_7 python3_{6,7} )
44 -
45 -inherit distutils-r1
46 -
47 -MY_PN="PasteDeploy"
48 -MY_P="${MY_PN}-${PV}"
49 -
50 -DESCRIPTION="Load, configure, and compose WSGI applications and servers"
51 -HOMEPAGE="https://pypi.org/project/PasteDeploy/"
52 -# pypi tarball does not include tests
53 -SRC_URI="https://github.com/Pylons/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
54 -
55 -LICENSE="MIT"
56 -SLOT="0"
57 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
58 -IUSE="doc test"
59 -RESTRICT="!test? ( test )"
60 -
61 -RDEPEND="dev-python/namespace-paste[${PYTHON_USEDEP}]
62 - dev-python/setuptools[${PYTHON_USEDEP}]"
63 -DEPEND="${RDEPEND}
64 - dev-python/pytest-runner[${PYTHON_USEDEP}]
65 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
66 -
67 -python_test() {
68 - esetup.py test
69 -}
70 -
71 -python_install_all() {
72 - distutils-r1_python_install_all
73 -
74 - use doc && dodoc docs/*.txt
75 - find "${D}" -name '*.pth' -delete || die
76 -}