Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/django-celery: django-celery-3.1.16.ebuild ChangeLog
Date: Mon, 29 Sep 2014 05:17:44
Message-Id: 20140929051738.AEA662C0@oystercatcher.gentoo.org
1 idella4 14/09/29 05:17:38
2
3 Modified: ChangeLog
4 Added: django-celery-3.1.16.ebuild
5 Log:
6 bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.20 dev-python/django-celery/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-celery/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-celery/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-celery/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/django-celery/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 21 Sep 2014 03:46:16 -0000 1.19
24 +++ ChangeLog 29 Sep 2014 05:17:38 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/django-celery
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-celery/ChangeLog,v 1.19 2014/09/21 03:46:16 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-celery/ChangeLog,v 1.20 2014/09/29 05:17:38 idella4 Exp $
30 +
31 +*django-celery-3.1.16 (29 Sep 2014)
32 +
33 + 29 Sep 2014; Ian Delaney <idella4@g.o> +django-celery-3.1.16.ebuild:
34 + bump
35
36 *django-celery-3.1.15 (21 Sep 2014)
37
38
39
40
41 1.1 dev-python/django-celery/django-celery-3.1.16.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-celery/django-celery-3.1.16.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-celery/django-celery-3.1.16.ebuild?rev=1.1&content-type=text/plain
45
46 Index: django-celery-3.1.16.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/django-celery/django-celery-3.1.16.ebuild,v 1.1 2014/09/29 05:17:38 idella4 Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Celery Integration for Django"
58 HOMEPAGE="http://celeryproject.org/"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc examples test"
65
66 PY2_USEDEP=$(python_gen_usedep python2_7)
67 RDEPEND=">=dev-python/celery-3.1.15[${PYTHON_USEDEP}]
68 dev-python/django[${PYTHON_USEDEP}]
69 dev-python/pytz[${PYTHON_USEDEP}]"
70 DEPEND="${RDEPEND}
71 dev-python/setuptools[${PYTHON_USEDEP}]
72 test? (
73 dev-python/django-nose[${PYTHON_USEDEP}]
74 >=dev-python/coverage-3.0[${PYTHON_USEDEP}]
75 dev-python/nose-cover3[${PYTHON_USEDEP}]
76 dev-python/mock[${PY2_USEDEP}]
77 dev-python/python-memcached[${PY2_USEDEP}] )
78 doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
79 dev-python/sphinxcontrib-issuetracker[${PY2_USEDEP}]
80 dev-python/python-memcached[${PY2_USEDEP}]
81 )"
82
83 PY27_REQUSE="$(python_gen_useflags 'python2.7')"
84 REQUIRED_USE="
85 doc? ( ${PY27_REQUSE} )"
86
87 python_compile_all() {
88 use doc && emake -C docs html
89 }
90
91 python_test() {
92 # https://github.com/celery/django-celery/issues/342
93 "${PYTHON}" tests/manage.py test
94 }
95
96 python_install_all() {
97 use doc && local HTML_DOCS=( docs/.build/html/. )
98 use examples && local EXAMPLES=( examples/. )
99 distutils-r1_python_install_all
100 }