diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-08-10 12:50:21 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-08-10 12:50:21 +0000 |
commit | 482578bb63de8ff5673887b7f5ce5c3b6936a28c (patch) | |
tree | 8bfad4d740f102a10116b3eb548b8c434584888c /dev-python/django-celery | |
parent | Stable for ppc, wrt bug #470570 (diff) | |
download | gentoo-2-482578bb63de8ff5673887b7f5ce5c3b6936a28c.tar.gz gentoo-2-482578bb63de8ff5673887b7f5ce5c3b6936a28c.tar.bz2 gentoo-2-482578bb63de8ff5673887b7f5ce5c3b6936a28c.zip |
Bump
(Portage version: 2.2.0_alpha196/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/django-celery')
-rw-r--r-- | dev-python/django-celery/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/django-celery/django-celery-3.0.21.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/dev-python/django-celery/ChangeLog b/dev-python/django-celery/ChangeLog index 98356106b6bb..dd4b923099cf 100644 --- a/dev-python/django-celery/ChangeLog +++ b/dev-python/django-celery/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/django-celery # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-celery/ChangeLog,v 1.13 2013/07/22 10:07:42 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-celery/ChangeLog,v 1.14 2013/08/10 12:50:21 patrick Exp $ + +*django-celery-3.0.21 (10 Aug 2013) + + 10 Aug 2013; Patrick Lauer <patrick@gentoo.org> +django-celery-3.0.21.ebuild: + Bump 22 Jul 2013; Michał Górny <mgorny@gentoo.org> -django-celery-3.0.17.ebuild: Drop the old version using long-deprecated python-distutils-ng.eclass. diff --git a/dev-python/django-celery/django-celery-3.0.21.ebuild b/dev-python/django-celery/django-celery-3.0.21.ebuild new file mode 100644 index 000000000000..46279712ecf2 --- /dev/null +++ b/dev-python/django-celery/django-celery-3.0.21.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2013 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.21.ebuild,v 1.1 2013/08/10 12:50:21 patrick Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +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="doc examples test" + +RDEPEND=">=dev-python/celery-3.0.17[${PYTHON_USEDEP}] + >=dev-python/django-1.3[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + virtual/python-unittest2[${PYTHON_USEDEP}] + dev-python/django-nose[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + dev-python/nose-cover3[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/python-memcached ) + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinxcontrib-issuetracker[${PYTHON_USEDEP}] + dev-python/python-memcached + )" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + python tests/manage.py test +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/.build/html/. ) + use examples && local EXAMPLES=( examples/. ) + distutils-r1_python_install_all +} |