Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pecan/
Date: Fri, 23 Aug 2019 16:42:42
Message-Id: 1566578551.61759eec45c53860170967d4e9ab89f5346d7c56.prometheanfire@gentoo
1 commit: 61759eec45c53860170967d4e9ab89f5346d7c56
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 23 16:42:08 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 23 16:42:31 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61759eec
7
8 dev-python/pecan: use python_gen_cond_dep for py27 deps
9
10 Fixes: https://bugs.gentoo.org/692448
11
12 Package-Manager: Portage-2.3.69, Repoman-2.3.17
13 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
14
15 dev-python/pecan/pecan-1.3.3-r1.ebuild | 26 ++++++++++++++++++++++++++
16 1 file changed, 26 insertions(+)
17
18 diff --git a/dev-python/pecan/pecan-1.3.3-r1.ebuild b/dev-python/pecan/pecan-1.3.3-r1.ebuild
19 new file mode 100644
20 index 00000000000..e8f8563568b
21 --- /dev/null
22 +++ b/dev-python/pecan/pecan-1.3.3-r1.ebuild
23 @@ -0,0 +1,26 @@
24 +# Copyright 1999-2019 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
29 +
30 +inherit distutils-r1
31 +
32 +DESCRIPTION="A WSGI object-dispatching web framework, lean, fast, with few dependencies."
33 +HOMEPAGE="https://pypi.org/project/pecan/"
34 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
35 +
36 +LICENSE="BSD"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~arm64 ~x86"
39 +IUSE=""
40 +
41 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
42 +RDEPEND="
43 + virtual/python-singledispatch[${PYTHON_USEDEP}]
44 + $(python_gen_cond_dep 'dev-python/ordereddict[${PYTHON_USEDEP}]' python2_7)
45 + >=dev-python/webob-1.4[${PYTHON_USEDEP}]
46 + >=dev-python/mako-0.4.0[${PYTHON_USEDEP}]
47 + >=dev-python/webtest-1.3.1[${PYTHON_USEDEP}]
48 + dev-python/six[${PYTHON_USEDEP}]
49 + >=dev-python/logutils-0.3.0[${PYTHON_USEDEP}]"