Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/oauthlib: ChangeLog oauthlib-0.6.1.ebuild
Date: Sat, 25 Jan 2014 09:45:56
Message-Id: 20140125094551.929ED2004C@flycatcher.gentoo.org
1 radhermit 14/01/25 09:45:51
2
3 Modified: ChangeLog
4 Added: oauthlib-0.6.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.31 dev-python/oauthlib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauthlib/ChangeLog?rev=1.31&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauthlib/ChangeLog?rev=1.31&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauthlib/ChangeLog?r1=1.30&r2=1.31
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/oauthlib/ChangeLog,v
20 retrieving revision 1.30
21 retrieving revision 1.31
22 diff -u -r1.30 -r1.31
23 --- ChangeLog 18 Sep 2013 06:24:42 -0000 1.30
24 +++ ChangeLog 25 Jan 2014 09:45:51 -0000 1.31
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/oauthlib
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/ChangeLog,v 1.30 2013/09/18 06:24:42 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/ChangeLog,v 1.31 2014/01/25 09:45:51 radhermit Exp $
31 +
32 +*oauthlib-0.6.1 (25 Jan 2014)
33 +
34 + 25 Jan 2014; Tim Harder <radhermit@g.o> +oauthlib-0.6.1.ebuild:
35 + Version bump.
36
37 *oauthlib-0.6.0 (18 Sep 2013)
38
39
40
41
42 1.1 dev-python/oauthlib/oauthlib-0.6.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauthlib/oauthlib-0.6.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauthlib/oauthlib-0.6.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: oauthlib-0.6.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/oauthlib-0.6.1.ebuild,v 1.1 2014/01/25 09:45:51 radhermit Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
55
56 inherit distutils-r1
57
58 DESCRIPTION="A generic, spec-compliant, thorough implementation of the OAuth request-signing logic"
59 HOMEPAGE="https://github.com/idan/oauthlib http://pypi.python.org/pypi/oauthlib"
60 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~x86"
65 IUSE="test"
66
67 # >=pycrypto-2.6-r1 for python3 support
68 # unittest2 for python2 compat
69 RDEPEND=">=dev-python/pycrypto-2.6-r1"
70 DEPEND="${RDEPEND}
71 dev-python/setuptools[${PYTHON_USEDEP}]
72 test? (
73 dev-python/nose[${PYTHON_USEDEP}]
74 virtual/python-unittest2[${PYTHON_USEDEP}]
75 dev-python/mock[${PYTHON_USEDEP}]
76 )"
77
78 python_test() {
79 nosetests || die
80 }