Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/django-oauth-plus: django-oauth-plus-2.1.5.ebuild ChangeLog
Date: Wed, 02 Oct 2013 06:12:22
Message-Id: 20131002061216.B4BA82004C@flycatcher.gentoo.org
1 patrick 13/10/02 06:12:16
2
3 Modified: ChangeLog
4 Added: django-oauth-plus-2.1.5.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.7 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.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 26 Aug 2013 03:08:02 -0000 1.6
24 +++ ChangeLog 2 Oct 2013 06:12:16 -0000 1.7
25 @@ -1,6 +1,12 @@
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.6 2013/08/26 03:08:02 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v 1.7 2013/10/02 06:12:16 patrick Exp $
30 +
31 +*django-oauth-plus-2.1.5 (02 Oct 2013)
32 +
33 + 02 Oct 2013; Patrick Lauer <patrick@g.o>
34 + +django-oauth-plus-2.1.5.ebuild:
35 + Bump
36
37 *django-oauth-plus-2.1.4 (26 Aug 2013)
38
39
40
41
42 1.1 dev-python/django-oauth-plus/django-oauth-plus-2.1.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.1.5.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.1.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: django-oauth-plus-2.1.5.ebuild
48 ===================================================================
49 # Copyright 1999-2013 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.1.5.ebuild,v 1.1 2013/10/02 06:12:16 patrick 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.2.4[${PYTHON_USEDEP}]
68 >=dev-python/oauth2-1.5.170[${PYTHON_USEDEP}]"
69 DEPEND="${RDEPEND}
70 dev-python/setuptools[${PYTHON_USEDEP}]
71 dev-python/setuptools_hg[${PYTHON_USEDEP}]
72 test? ( dev-python/south[${PYTHON_USEDEP}] )"
73
74 python_test() {
75 if "${PYTHON}" oauth_provider/runtests/manage.py test; then
76 einfo "Testsuite passed under ${EPYTHON}"
77 else
78 die "Testsuite failed under ${EPYTHON}"
79 fi
80 }