diff options
author | Corentin Chary <iksaif@gentoo.org> | 2012-08-31 20:57:44 +0000 |
---|---|---|
committer | Corentin Chary <iksaif@gentoo.org> | 2012-08-31 20:57:44 +0000 |
commit | 2c04bb1899be1d730d22cba0ac56443c4ca8da11 (patch) | |
tree | 1540755e80e531a55d5e626ccf7ae75038057fff /dev-python | |
parent | Bump to 3.0.9. (diff) | |
download | gentoo-2-2c04bb1899be1d730d22cba0ac56443c4ca8da11.tar.gz gentoo-2-2c04bb1899be1d730d22cba0ac56443c4ca8da11.tar.bz2 gentoo-2-2c04bb1899be1d730d22cba0ac56443c4ca8da11.zip |
Bump to 3.0.9.
(Portage version: 2.1.11.12/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/django-celery/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/django-celery/django-celery-3.0.9.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/dev-python/django-celery/ChangeLog b/dev-python/django-celery/ChangeLog index 5dac438463ab..d6140a5e7963 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-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-celery/ChangeLog,v 1.4 2012/08/14 07:23:04 iksaif Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-celery/ChangeLog,v 1.5 2012/08/31 20:57:44 iksaif Exp $ + +*django-celery-3.0.9 (31 Aug 2012) + + 31 Aug 2012; Corentin Chary <iksaif@gentoo.org> +django-celery-3.0.9.ebuild: + Bump to 3.0.9. 14 Aug 2012; Corentin Chary <iksaif@gentoo.org> -django-celery-2.5.5.ebuild: Remove old version. diff --git a/dev-python/django-celery/django-celery-3.0.9.ebuild b/dev-python/django-celery/django-celery-3.0.9.ebuild new file mode 100644 index 000000000000..0ba8519443e6 --- /dev/null +++ b/dev-python/django-celery/django-celery-3.0.9.ebuild @@ -0,0 +1,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 +} |