Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/oauthlib: oauthlib-0.3.0.ebuild ChangeLog
Date: Fri, 24 Aug 2012 09:26:37
Message-Id: 20120824092621.CF1C82056C@flycatcher.gentoo.org
1 patrick 12/08/24 09:26:21
2
3 Modified: ChangeLog
4 Added: oauthlib-0.3.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha122/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.9 dev-python/oauthlib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauthlib/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauthlib/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauthlib/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/oauthlib/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 19 Aug 2012 18:48:05 -0000 1.8
24 +++ ChangeLog 24 Aug 2012 09:26:21 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/oauthlib
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/ChangeLog,v 1.8 2012/08/19 18:48:05 johu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/ChangeLog,v 1.9 2012/08/24 09:26:21 patrick Exp $
30 +
31 +*oauthlib-0.3.0 (24 Aug 2012)
32 +
33 + 24 Aug 2012; Patrick Lauer <patrick@g.o> +oauthlib-0.3.0.ebuild:
34 + Bump
35
36 19 Aug 2012; Johannes Huber <johu@g.o> oauthlib-0.1.3.ebuild:
37 Stable for x86, wrt bug #431758
38 @@ -29,4 +34,3 @@
39 08 May 2012; Mike Gilbert <floppym@g.o> +metadata.xml,
40 +oauthlib-0.1.3.ebuild:
41 New ebuild; dependency for bug 415173.
42 -
43
44
45
46 1.1 dev-python/oauthlib/oauthlib-0.3.0.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauthlib/oauthlib-0.3.0.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oauthlib/oauthlib-0.3.0.ebuild?rev=1.1&content-type=text/plain
50
51 Index: oauthlib-0.3.0.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-python/oauthlib/oauthlib-0.3.0.ebuild,v 1.1 2012/08/24 09:26:21 patrick Exp $
56
57 EAPI="4"
58
59 PYTHON_DEPEND="2:2.6"
60 SUPPORT_PYTHON_ABIS="1"
61 RESTRICT_PYTHON_ABIS="2.5 3.*"
62 DISTUTILS_SRC_TEST="nosetests"
63 # Tests depend on dict order, see https://github.com/idangazit/oauthlib/issues/40
64 PYTHON_TESTS_RESTRICTED_ABIS="*-pypy-*"
65
66 inherit distutils
67
68 DESCRIPTION="A generic, spec-compliant, thorough implementation of the OAuth request-signing logic"
69 HOMEPAGE="https://github.com/idangazit/oauthlib
70 http://pypi.python.org/pypi/oauthlib"
71 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
72
73 LICENSE="BSD"
74 SLOT="0"
75 KEYWORDS="~amd64 ~arm ~x86"
76 IUSE="test"
77
78 RDEPEND="dev-python/rsa"
79 DEPEND="${RDEPEND}
80 dev-python/setuptools
81 test? ( dev-python/unittest2
82 dev-python/pycrypto )"
83
84 src_test() {
85 touch tests/__init__.py
86 distutils_src_test
87 }
88
89 src_install() {
90 rm -f tests/__init__.py
91 distutils_src_install
92 }