blob: ba6f596cb42bd5afe90ec0c6e478f7a274f2d046 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
test? ( http://dev.gentoo.org/~tampakrap/tarballs/${PN}-demoapp-0.4.5_p20120427.tar.bz2 )"
DESCRIPTION="an XSLT template system for Django"
HOMEPAGE="https://pypi.python.org/pypi/django-xslt/"
KEYWORDS="amd64 x86"
IUSE="test"
LICENSE="BSD"
SLOT="0"
RDEPEND=""
DEPEND="${RDEPEND}
dev-python/django[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/lxml[${PYTHON_USEDEP}] )"
python_test() {
export SECRET_KEY="green"
pushd "${WORKDIR}/demoapp" > /dev/null
if ! "${PYTHON}" -c "from django.conf import global_settings;global_settings.SECRET_KEY='$SECRET_KEY'" \
manage.py test; then
die "tests failed under ${EPYTHON}"
else
einfo "tests passed under ${EPYTHON}"
fi
}
|