blob: 0b72ea6d7c2dfe71f5cfbd14cff1a8421a1cd398 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
inherit distutils-r1
DESCRIPTION="A small open source Python web framework"
HOMEPAGE="http://www.pylonsproject.org/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="repoze"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="test"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/chameleon[${PYTHON_USEDEP}]
dev-python/mako[${PYTHON_USEDEP}]
dev-python/webob[${PYTHON_USEDEP}]
dev-python/repoze-lru[${PYTHON_USEDEP}]
dev-python/mako[${PYTHON_USEDEP}]
dev-python/zope-deprecation[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]
dev-python/translationstring[${PYTHON_USEDEP}]
dev-python/pastedeploy[${PYTHON_USEDEP}]
dev-python/venusian[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? ( dev-python/webtest[${PYTHON_USEDEP}]
$(python_gen_cond_dep \
'dev-python/zope-component[${PYTHON_USEDEP}]' \
'python2*' pypy)
)"
python_test() {
esetup.py test
}
|