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-oauth-plus: django-oauth-plus-2.2.4.ebuild ChangeLog
Date: Mon, 27 Jan 2014 02:24:47
Message-Id: 20140127022442.DDF7F2004E@flycatcher.gentoo.org
1 idella4 14/01/27 02:24:42
2
3 Modified: ChangeLog
4 Added: django-oauth-plus-2.2.4.ebuild
5 Log:
6 bump; update deps, test phase
7
8 (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.8 dev-python/django-oauth-plus/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 2 Oct 2013 06:12:16 -0000 1.7
24 +++ ChangeLog 27 Jan 2014 02:24:42 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/django-oauth-plus
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v 1.7 2013/10/02 06:12:16 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v 1.8 2014/01/27 02:24:42 idella4 Exp $
31 +
32 +*django-oauth-plus-2.2.4 (27 Jan 2014)
33 +
34 + 27 Jan 2014; Ian Delaney <idella4@g.o> +django-oauth-plus-2.2.4.ebuild:
35 + bump; update deps, test phase
36
37 *django-oauth-plus-2.1.5 (02 Oct 2013)
38
39
40
41
42 1.1 dev-python/django-oauth-plus/django-oauth-plus-2.2.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.2.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.2.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: django-oauth-plus-2.2.4.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.2.4.ebuild,v 1.1 2014/01/27 02:24:42 idella4 Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_6,2_7} )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Support of OAuth 1.0a in Django using python-oauth2"
59 HOMEPAGE="http://pypi.python.org/pypi/django-oauth-plus http://code.welldev.org/django-oauth-plus/"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="test"
66
67 RDEPEND=">=dev-python/django-1.3[${PYTHON_USEDEP}]
68 >=dev-python/oauth2-1.5.170[${PYTHON_USEDEP}]
69 >=dev-python/south-0.7.5[${PYTHON_USEDEP}]"
70 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
71 dev-python/setuptools_hg[${PYTHON_USEDEP}]
72 test? ( ${RDEPEND} )"
73
74 python_test() {
75 PYTHONPATH=.:oauth_provider
76 if "${PYTHON}" oauth_provider/runtests/runtests.py; then
77 einfo "Testsuite passed under ${EPYTHON}"
78 else
79 die "Testsuite failed under ${EPYTHON}"
80 fi
81 }