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