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.1.0-r1.ebuild ChangeLog django-oauth-plus-2.0.ebuild django-oauth-plus-2.1.0.ebuild
Date: Thu, 23 May 2013 17:52:14
Message-Id: 20130523175207.D7DE82171D@flycatcher.gentoo.org
1 idella4 13/05/23 17:52:07
2
3 Modified: ChangeLog
4 Added: django-oauth-plus-2.1.0-r1.ebuild
5 Removed: django-oauth-plus-2.0.ebuild
6 django-oauth-plus-2.1.0.ebuild
7 Log:
8 revbump; migrate -> distutils-r1, invoke testsuite, drop old ebuilds
9
10 (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
11
12 Revision Changes Path
13 1.3 dev-python/django-oauth-plus/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?rev=1.3&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?rev=1.3&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/ChangeLog?r1=1.2&r2=1.3
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v
22 retrieving revision 1.2
23 retrieving revision 1.3
24 diff -u -r1.2 -r1.3
25 --- ChangeLog 4 Apr 2013 07:30:02 -0000 1.2
26 +++ ChangeLog 23 May 2013 17:52:07 -0000 1.3
27 @@ -1,6 +1,13 @@
28 # ChangeLog for dev-python/django-oauth-plus
29 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v 1.2 2013/04/04 07:30:02 patrick Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-oauth-plus/ChangeLog,v 1.3 2013/05/23 17:52:07 idella4 Exp $
32 +
33 +*django-oauth-plus-2.1.0-r1 (23 May 2013)
34 +
35 + 23 May 2013; Ian Delaney <idella4@g.o>
36 + +django-oauth-plus-2.1.0-r1.ebuild, -django-oauth-plus-2.0.ebuild,
37 + -django-oauth-plus-2.1.0.ebuild:
38 + revbump; migrate -> distutils-r1, invoke testsuite, drop old ebuilds
39
40 *django-oauth-plus-2.1.0 (04 Apr 2013)
41
42
43
44
45 1.1 dev-python/django-oauth-plus/django-oauth-plus-2.1.0-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.1.0-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-oauth-plus/django-oauth-plus-2.1.0-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: django-oauth-plus-2.1.0-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2013 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $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 $
55
56 EAPI=5
57 PYTHON_COMPAT=( python{2_6,2_7} )
58
59 inherit distutils-r1
60
61 DESCRIPTION="Support of OAuth 1.0a in Django using python-oauth2"
62 HOMEPAGE="http://pypi.python.org/pypi/django-oauth-plus http://code.welldev.org/django-oauth-plus/"
63 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 RDEPEND=">=dev-python/django-1.2.4[${PYTHON_USEDEP}]
71 >=dev-python/oauth2-1.5.170[${PYTHON_USEDEP}]"
72 DEPEND="${RDEPEND}
73 dev-python/setuptools[${PYTHON_USEDEP}]
74 dev-python/setuptools_hg[${PYTHON_USEDEP}]"
75
76 python_test() {
77 export DJANGO_SETTINGS_MODULE="django.conf"
78 export SECRET_KEY='green'
79 if "${PYTHON}" -c \
80 "from django.conf import global_settings;global_settings.SECRET_KEY='$SECRET_KEY'" \
81 -m oauth_provider.tests.tests; then
82 einfo "Testsuite passed under ${EPYTHON}"
83 else
84 die "Testsuite failed under ${EPYTHON}"
85 fi
86 }