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-recaptcha: django-recaptcha-1.0.2.ebuild ChangeLog
Date: Tue, 23 Sep 2014 13:52:51
Message-Id: 20140923135243.38EFF609C@oystercatcher.gentoo.org
1 idella4 14/09/23 13:52:43
2
3 Modified: ChangeLog
4 Added: django-recaptcha-1.0.2.ebuild
5 Log:
6 bump; add pypy support
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.11 dev-python/django-recaptcha/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-recaptcha/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-recaptcha/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-recaptcha/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/django-recaptcha/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 10 May 2014 23:43:59 -0000 1.10
24 +++ ChangeLog 23 Sep 2014 13:52:43 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/django-recaptcha
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-recaptcha/ChangeLog,v 1.10 2014/05/10 23:43:59 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-recaptcha/ChangeLog,v 1.11 2014/09/23 13:52:43 idella4 Exp $
30 +
31 +*django-recaptcha-1.0.2 (23 Sep 2014)
32 +
33 + 23 Sep 2014; Ian Delaney <idella4@g.o> +django-recaptcha-1.0.2.ebuild:
34 + bump; add pypy support
35
36 10 May 2014; Patrick Lauer <patrick@g.o> django-recaptcha-1.0.ebuild:
37 Fix python_compat until django catches up
38
39
40
41 1.1 dev-python/django-recaptcha/django-recaptcha-1.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-recaptcha/django-recaptcha-1.0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-recaptcha/django-recaptcha-1.0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: django-recaptcha-1.0.2.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-recaptcha/django-recaptcha-1.0.2.ebuild,v 1.1 2014/09/23 13:52:43 idella4 Exp $
51
52 EAPI="5"
53
54 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
55 inherit distutils-r1
56
57 DESCRIPTION="Django recaptcha form field/widget app"
58 HOMEPAGE="http://github.com/praekelt/django-recaptcha http://pypi.python.org/pypi/django-recaptcha"
59 #SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60 SRC_URI="https://github.com/praekelt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="test"
66 # test suite setup doesn't work, hopelessly underdone, passes under tox
67 RESTRICT="test"
68
69 RDEPEND="dev-python/django[${PYTHON_USEDEP}]"
70 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
71 test? ( ${RDEPEND}
72 >=dev-python/django-setuptest-0.0.6[${PYTHON_USEDEP}] )"
73
74 python_test() {
75 esetup.py test
76 }