Gentoo Archives: gentoo-commits

From: "Matt Thode (prometheanfire)" <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyrax: pyrax-1.7.2.ebuild ChangeLog
Date: Tue, 01 Apr 2014 19:21:57
Message-Id: 20140401192148.5EA0B2005C@flycatcher.gentoo.org
1 prometheanfire 14/04/01 19:21:48
2
3 Modified: ChangeLog
4 Added: pyrax-1.7.2.ebuild
5 Log:
6 bup!
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
9
10 Revision Changes Path
11 1.12 dev-python/pyrax/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyrax/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 17 Nov 2013 04:20:42 -0000 1.11
24 +++ ChangeLog 1 Apr 2014 19:21:48 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pyrax
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyrax/ChangeLog,v 1.11 2013/11/17 04:20:42 prometheanfire Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyrax/ChangeLog,v 1.12 2014/04/01 19:21:48 prometheanfire Exp $
31 +
32 +*pyrax-1.7.2 (01 Apr 2014)
33 +
34 + 01 Apr 2014; Matthew Thode <prometheanfire@g.o> +pyrax-1.7.2.ebuild:
35 + bup!
36
37 17 Nov 2013; Matthew Thode <prometheanfire@g.o> pyrax-1.6.1.ebuild:
38 1.6.1 with restricted tests due to upstream bug
39
40
41
42 1.1 dev-python/pyrax/pyrax-1.7.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/pyrax-1.7.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/pyrax-1.7.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pyrax-1.7.2.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/pyrax/pyrax-1.7.2.ebuild,v 1.1 2014/04/01 19:21:48 prometheanfire Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python2_7 )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Python SDK for OpenStack/Rackspace APIs"
59 HOMEPAGE="https://github.com/openstack/python-novaclient"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="Apache-2.0"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="test keyring"
66
67 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
68 test? ( dev-python/mock[${PYTHON_USEDEP}]
69 dev-python/nose[${PYTHON_USEDEP}]
70 >=dev-python/six-1.5.2[${PYTHON_USEDEP}]
71 >=dev-python/requests-2.2.1[${PYTHON_USEDEP}]
72 keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
73 >=dev-python/python-novaclient-2.13.0[${PYTHON_USEDEP}]
74 dev-python/rackspace-novaclient[${PYTHON_USEDEP}]
75 >=dev-python/python-swiftclient-1.5.0[${PYTHON_USEDEP}] )"
76 RDEPEND=">=dev-python/requests-2.2.1[${PYTHON_USEDEP}]
77 >=dev-python/six-1.5.2[${PYTHON_USEDEP}]
78 keyring? ( dev-python/keyring[${PYTHON_USEDEP}] )
79 >=dev-python/python-novaclient-2.13.0[${PYTHON_USEDEP}]
80 >=dev-python/python-swiftclient-1.5.0[${PYTHON_USEDEP}]
81 dev-python/rackspace-novaclient[${PYTHON_USEDEP}]"
82
83 python_test() {
84 "${PYTHON}" -m nose -v tests/unit --with-coverage --cover-package=pyrax || die
85 # "${PYTHON}" -m nose -w tests/unit || die
86 # nosetests --with-coverage --cover-package=pyrax --cover-erase -w tests/unit/ || die
87 }