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/python-novaclient: python-novaclient-2.10.0.ebuild ChangeLog
Date: Tue, 01 Jan 2013 08:57:15
Message-Id: 20130101085705.3E0352171D@flycatcher.gentoo.org
1 prometheanfire 13/01/01 08:57:05
2
3 Modified: ChangeLog
4 Added: python-novaclient-2.10.0.ebuild
5 Log:
6 adding python-novaclient-2.10.0 to tree
7
8 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
9
10 Revision Changes Path
11 1.3 dev-python/python-novaclient/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 1 Jan 2013 06:45:42 -0000 1.2
24 +++ ChangeLog 1 Jan 2013 08:57:05 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/python-novaclient
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/ChangeLog,v 1.2 2013/01/01 06:45:42 prometheanfire Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/ChangeLog,v 1.3 2013/01/01 08:57:05 prometheanfire Exp $
30 +
31 +*python-novaclient-2.10.0 (01 Jan 2013)
32 +
33 + 01 Jan 2013; Matthew Thode <prometheanfire@g.o>
34 + +python-novaclient-2.10.0.ebuild:
35 + adding python-novaclient-2.10.0 to tree
36
37 01 Jan 2013; Matthew Thode <prometheanfire@g.o>
38 python-novaclient-9999.ebuild:
39
40
41
42 1.1 dev-python/python-novaclient/python-novaclient-2.10.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/python-novaclient-2.10.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/python-novaclient-2.10.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: python-novaclient-2.10.0.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/python-novaclient-2.10.0.ebuild,v 1.1 2013/01/01 08:57:05 prometheanfire Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
55
56 inherit distutils-r1
57
58 DESCRIPTION="This is a client for the OpenStack Nova API."
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"
66
67 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
68 test? ( dev-python/iso8601
69 dev-python/mock
70 dev-python/nose
71 dev-python/prettytable
72 dev-python/pytest
73 dev-python/pytest-runner
74 dev-python/requests
75 dev-python/simplejson
76 dev-python/unittest2 )"
77 RDEPEND="virtual/python-argparse
78 dev-python/httplib2
79 dev-python/prettytable
80 dev-python/simplejson"
81
82 python_test() {
83 "${PYTHON}" setup.py nosetests || die
84 }