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-social-auth: django-social-auth-0.7.23.ebuild ChangeLog django-social-auth-0.6.8.ebuild
Date: Tue, 28 May 2013 15:56:00
Message-Id: 20130528155552.C776C2171D@flycatcher.gentoo.org
1 idella4 13/05/28 15:55:52
2
3 Modified: ChangeLog
4 Added: django-social-auth-0.7.23.ebuild
5 Removed: django-social-auth-0.6.8.ebuild
6 Log:
7 bump, remove old
8
9 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.3 dev-python/django-social-auth/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-social-auth/ChangeLog?rev=1.3&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-social-auth/ChangeLog?rev=1.3&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-social-auth/ChangeLog?r1=1.2&r2=1.3
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/django-social-auth/ChangeLog,v
21 retrieving revision 1.2
22 retrieving revision 1.3
23 diff -u -r1.2 -r1.3
24 --- ChangeLog 13 Nov 2012 10:34:30 -0000 1.2
25 +++ ChangeLog 28 May 2013 15:55:52 -0000 1.3
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/django-social-auth
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-social-auth/ChangeLog,v 1.2 2012/11/13 10:34:30 idella4 Exp $
30 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-social-auth/ChangeLog,v 1.3 2013/05/28 15:55:52 idella4 Exp $
32 +
33 +*django-social-auth-0.7.23 (28 May 2013)
34 +
35 + 28 May 2013; Ian Delaney <idella4@g.o>
36 + +django-social-auth-0.7.23.ebuild, -django-social-auth-0.6.8.ebuild:
37 + bump, remove old
38
39 14 Nov 2012; Ian Delaney <idella4@g.o> metadata.xml:
40 Updating maintainer, metadata.xml
41
42
43
44 1.1 dev-python/django-social-auth/django-social-auth-0.7.23.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-social-auth/django-social-auth-0.7.23.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-social-auth/django-social-auth-0.7.23.ebuild?rev=1.1&content-type=text/plain
48
49 Index: django-social-auth-0.7.23.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-python/django-social-auth/django-social-auth-0.7.23.ebuild,v 1.1 2013/05/28 15:55:52 idella4 Exp $
54
55 EAPI=5
56 PYTHON_COMPAT=( python{2_6,2_7} )
57
58 inherit distutils-r1
59
60 DESCRIPTION="An easy to setup social authentication/authorization mechanism for Django projects"
61 HOMEPAGE="http://pypi.python.org/pypi/django-social-auth/"
62 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 LICENSE="BSD"
67 SLOT="0"
68
69 RDEPEND=">=dev-python/django-1.3.2[${PYTHON_USEDEP}]
70 >=dev-python/oauth2-1.5.170[${PYTHON_USEDEP}]
71 >=dev-python/python-openid-2.2[${PYTHON_USEDEP}]"
72 DEPEND="${RDEPEND}
73 dev-python/setuptools[${PYTHON_USEDEP}]"
74
75 python_test() {
76 export DJANGO_SETTINGS_MODULE="django.conf"
77 export SECRET_KEY='green'
78 local test
79 for test in social_auth/tests/{base.py,client.py,facebook.py,google.py,odnoklassniki.py,twitter.py}
80 do
81 if ! "${PYTHON}" -c \
82 "from django.conf import global_settings;global_settings.SECRET_KEY='$SECRET_KEY'" $test
83 then
84 die "test ${test} failed under ${EPYTHON}"
85 else
86 einfo "test ${test} passed"
87 fi
88 done
89 einfo "All tests passed under ${EPYTHON}"
90 }