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: ChangeLog django-oauth-plus-2.1.0-r1.ebuild
Date: Fri, 31 May 2013 10:19:24
Message-Id: 20130531101919.6DC082171D@flycatcher.gentoo.org
1 idella4 13/05/31 10:19:19
2
3 Modified: ChangeLog django-oauth-plus-2.1.0-r1.ebuild
4 Log:
5 fix to test phase, switch to use of manage.py
6
7 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.4 dev-python/django-oauth-plus/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 23 May 2013 17:52:07 -0000 1.3
23 +++ ChangeLog 31 May 2013 10:19:19 -0000 1.4
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-python/django-oauth-plus
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v 1.3 2013/05/23 17:52:07 idella4 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v 1.4 2013/05/31 10:19:19 idella4 Exp $
29 +
30 + 31 May 2013; Ian Delaney <idella4@g.o>
31 + django-oauth-plus-2.1.0-r1.ebuild:
32 + fix to test phase, switch to muse of manage.py
33
34 *django-oauth-plus-2.1.0-r1 (23 May 2013)
35
36
37
38
39 1.2 dev-python/django-oauth-plus/django-oauth-plus-2.1.0-r1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.1.0-r1.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.1.0-r1.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.1.0-r1.ebuild?r1=1.1&r2=1.2
44
45 Index: django-oauth-plus-2.1.0-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.1.0-r1.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- django-oauth-plus-2.1.0-r1.ebuild 23 May 2013 17:52:07 -0000 1.1
52 +++ django-oauth-plus-2.1.0-r1.ebuild 31 May 2013 10:19:19 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.1.0-r1.ebuild,v 1.1 2013/05/23 17:52:07 idella4 Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.1.0-r1.ebuild,v 1.2 2013/05/31 10:19:19 idella4 Exp $
58
59 EAPI=5
60 PYTHON_COMPAT=( python{2_6,2_7} )
61 @@ -23,11 +23,7 @@
62 dev-python/setuptools_hg[${PYTHON_USEDEP}]"
63
64 python_test() {
65 - export DJANGO_SETTINGS_MODULE="django.conf"
66 - export SECRET_KEY='green'
67 - if "${PYTHON}" -c \
68 - "from django.conf import global_settings;global_settings.SECRET_KEY='$SECRET_KEY'" \
69 - -m oauth_provider.tests.tests; then
70 + if "${PYTHON}" oauth_provider/runtests/manage.py test; then
71 einfo "Testsuite passed under ${EPYTHON}"
72 else
73 die "Testsuite failed under ${EPYTHON}"