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/oauth2: oauth2-1.5.211-r1.ebuild ChangeLog
Date: Tue, 30 Sep 2014 02:53:57
Message-Id: 20140930025352.065FEB9C@oystercatcher.gentoo.org
1 idella4 14/09/30 02:53:52
2
3 Modified: oauth2-1.5.211-r1.ebuild ChangeLog
4 Log:
5 drop py2.6 add pypy support, correct deps setup
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.3 dev-python/oauth2/oauth2-1.5.211-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauth2/oauth2-1.5.211-r1.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauth2/oauth2-1.5.211-r1.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauth2/oauth2-1.5.211-r1.ebuild?r1=1.2&r2=1.3
15
16 Index: oauth2-1.5.211-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/oauth2/oauth2-1.5.211-r1.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- oauth2-1.5.211-r1.ebuild 5 Sep 2013 18:47:16 -0000 1.2
23 +++ oauth2-1.5.211-r1.ebuild 30 Sep 2014 02:53:51 -0000 1.3
24 @@ -1,9 +1,9 @@
25 -# Copyright 1999-2013 Gentoo Foundation
26 +# Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oauth2/oauth2-1.5.211-r1.ebuild,v 1.2 2013/09/05 18:47:16 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/oauth2/oauth2-1.5.211-r1.ebuild,v 1.3 2014/09/30 02:53:51 idella4 Exp $
30
31 EAPI=5
32 -PYTHON_COMPAT=( python{2_6,2_7} )
33 +PYTHON_COMPAT=( python2_7 pypy )
34
35 inherit distutils-r1
36
37 @@ -17,9 +17,8 @@
38 IUSE="test"
39
40 RDEPEND="dev-python/httplib2[${PYTHON_USEDEP}]"
41 -DEPEND="${RDEPEND}
42 - dev-python/setuptools[${PYTHON_USEDEP}]
43 - test? (
44 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
45 + test? ( ${RDEPEND}
46 dev-python/coverage[${PYTHON_USEDEP}]
47 dev-python/mock[${PYTHON_USEDEP}]
48 )"
49
50
51
52 1.10 dev-python/oauth2/ChangeLog
53
54 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauth2/ChangeLog?rev=1.10&view=markup
55 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauth2/ChangeLog?rev=1.10&content-type=text/plain
56 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauth2/ChangeLog?r1=1.9&r2=1.10
57
58 Index: ChangeLog
59 ===================================================================
60 RCS file: /var/cvsroot/gentoo-x86/dev-python/oauth2/ChangeLog,v
61 retrieving revision 1.9
62 retrieving revision 1.10
63 diff -u -r1.9 -r1.10
64 --- ChangeLog 5 Sep 2013 18:47:16 -0000 1.9
65 +++ ChangeLog 30 Sep 2014 02:53:51 -0000 1.10
66 @@ -1,6 +1,9 @@
67 # ChangeLog for dev-python/oauth2
68 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
69 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oauth2/ChangeLog,v 1.9 2013/09/05 18:47:16 mgorny Exp $
70 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
71 +# $Header: /var/cvsroot/gentoo-x86/dev-python/oauth2/ChangeLog,v 1.10 2014/09/30 02:53:51 idella4 Exp $
72 +
73 + 30 Sep 2014; Ian Delaney <idella4@g.o> oauth2-1.5.211-r1.ebuild:
74 + drop py2.6 add pypy support, correct deps setup
75
76 05 Sep 2013; Michał Górny <mgorny@g.o> oauth2-1.5.211-r1.ebuild:
77 Clean up PYTHON_COMPAT from old implementations.