Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-social-auth: python-social-auth-0.2.10.ebuild ChangeLog
Date: Sat, 30 May 2015 13:27:55
Message-Id: 20150530132745.E24EBA00@oystercatcher.gentoo.org
1 maksbotan 15/05/30 13:27:45
2
3 Modified: ChangeLog
4 Added: python-social-auth-0.2.10.ebuild
5 Log:
6 Bump to 0.2.10
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
9
10 Revision Changes Path
11 1.5 dev-python/python-social-auth/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-social-auth/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-social-auth/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-social-auth/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-social-auth/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 6 Mar 2015 22:35:17 -0000 1.4
24 +++ ChangeLog 30 May 2015 13:27:45 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/python-social-auth
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-social-auth/ChangeLog,v 1.4 2015/03/06 22:35:17 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-social-auth/ChangeLog,v 1.5 2015/05/30 13:27:45 maksbotan Exp $
30 +
31 +*python-social-auth-0.2.10 (30 May 2015)
32 +
33 + 30 May 2015; Maxim Koltsov <maksbotan@g.o>
34 + +python-social-auth-0.2.10.ebuild:
35 + Bump to 0.2.10
36
37 06 Mar 2015; Pacho Ramos <pacho@g.o> python-social-auth-0.1.26.ebuild:
38 amd64 stable, bug 540290
39
40
41
42 1.1 dev-python/python-social-auth/python-social-auth-0.2.10.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-social-auth/python-social-auth-0.2.10.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-social-auth/python-social-auth-0.2.10.ebuild?rev=1.1&content-type=text/plain
46
47 Index: python-social-auth-0.2.10.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-social-auth/python-social-auth-0.2.10.ebuild,v 1.1 2015/05/30 13:27:45 maksbotan Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
56
57 inherit distutils-r1
58
59 DESCRIPTION="Easy to setup social auth mechanism with support for several frameworks and auth providers"
60 HOMEPAGE="http://psa.matiasaguirre.net/"
61 SRC_URI="https://github.com/omab/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
62
63 LICENSE="BSD"
64 SLOT="0"
65 KEYWORDS="~amd64"
66 IUSE="doc examples test"
67
68 RDEPEND="
69 $(python_gen_cond_dep \
70 'dev-python/python-openid[${PYTHON_USEDEP}]' 'python2*')
71 $(python_gen_cond_dep \
72 'dev-python/python3-openid[${PYTHON_USEDEP}]' 'python3*')
73 >=dev-python/oauthlib-0.3.8[${PYTHON_USEDEP}]
74 >=dev-python/pyjwt-1.2.0[${PYTHON_USEDEP}]
75 dev-python/requests[${PYTHON_USEDEP}]
76 dev-python/requests-oauthlib[${PYTHON_USEDEP}]
77 >=dev-python/six-1.2.0[${PYTHON_USEDEP}]
78 "
79 DEPEND="${DEPEND}
80 dev-python/setuptools[${PYTHON_USEDEP}]
81 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
82 "
83 # tests require internet
84 #"
85 # test? (
86 # dev-python/coverage[${PYTHON_USEDEP}]
87 # dev-python/httpretty[${PYTHON_USEDEP}]
88 # dev-python/mock[${PYTHON_USEDEP}]
89 # dev-python/nose[${PYTHON_USEDEP}]
90 # dev-python/sure[${PYTHON_USEDEP}]
91 # )
92 #"
93
94 python_compile_all() {
95 use doc && emake -C docs html
96 }
97
98 python_install_all() {
99 use doc && local HTML_DOCS=( docs/_build/html/. )
100 use examples && local EXAMPLES=( examples/. )
101 distutils-r1_python_install_all
102 }
103
104 #python_test() {
105 # "${S}"/social/tests/run_tests.sh || die "Tests failed on ${EPYTHON}"
106 #}