aboutsummaryrefslogtreecommitdiff
blob: a1dbc4b800bddd846b77b8b0c7bc647281d60c1e (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
39
40
41
42
43
44
45
46
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=4
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"

inherit distutils eutils

MY_P=${PN/-/_}-${PV}

#MY_PN="${MY_P}-${PV}"
DESCRIPTION="A Django application that will run cron jobs for other django apps"
HOMEPAGE="http://code.google.com/p/django-evolution/ http://pypi.python.org/pypi/django_evolution/"
SRC_URI="mirror://pypi/${PN:0:1}/${MY_P}/${MY_P}.tar.gz"

KEYWORDS="~amd64 ~x86"
IUSE=""
LICENSE="BSD"
SLOT="0"
PYTHON_MODNAME="django_evolution"
S="${WORKDIR}/${MY_P}"

RDEPEND="dev-python/setuptools"
DEPEND="${RDEPEND}
	dev-python/django"

src_test() {
	testing() {
		PYTHONPATH="build-${PYTHON_ABI}/lib/)" "$(PYTHON)" tests/runtests.py
	}
	python_execute_function testing
}

src_install() {
	local msg="Remove tests to avoid file collisions"
	distutils_src_install

	rmtests() {
		rm -rf ${ED}/$(python_get_sitedir)/tests/ || die
	}
	python_execute_function --action-message "${msg}" rmtests
	dodoc docs/*
}