summaryrefslogtreecommitdiff
blob: 0ba8519443e63f1b1f2c81fc57955773bad2d463 (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-celery/django-celery-3.0.9.ebuild,v 1.1 2012/08/31 20:57:44 iksaif Exp $

EAPI="4"
PYTHON_COMPAT="python2_7"

inherit python-distutils-ng

DESCRIPTION="Celery Integration for Django"
HOMEPAGE="http://celeryproject.org/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

RDEPEND=">=dev-python/celery-3.0.9
	>=dev-python/django-1.3"
DEPEND="${RDEPEND}
	test? ( dev-python/django-nose )
	dev-python/setuptools"

python_test() {
	${PYTHON} setup.py test
}