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: metadata.xml ChangeLog python-novaclient-9999.ebuild
Date: Mon, 31 Dec 2012 18:25:52
Message-Id: 20121231182542.AC9022171D@flycatcher.gentoo.org
1 prometheanfire 12/12/31 18:25:42
2
3 Added: metadata.xml ChangeLog
4 python-novaclient-9999.ebuild
5 Log:
6 initial add of python-novaclient
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.1 dev-python/python-novaclient/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <maintainer>
22 <email>prometheanfire@g.o</email>
23 <name>Matthew Thode</name>
24 </maintainer>
25 <longdescription lang="en">
26 This is a client for the OpenStack Nova API.
27 There's a Python API (the novaclient module),
28 and a command-line script (nova).
29 Each implements 100% of the OpenStack Nova API.
30 </longdescription>
31 </pkgmetadata>
32
33
34
35
36 1.1 dev-python/python-novaclient/ChangeLog
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?rev=1.1&content-type=text/plain
40
41 Index: ChangeLog
42 ===================================================================
43 # ChangeLog for dev-python/python-novaclient
44 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
45 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/ChangeLog,v 1.1 2012/12/31 18:25:42 prometheanfire Exp $
46
47 *python-novaclient-9999 (31 Dec 2012)
48
49 31 Dec 2012; Matthew Thode <prometheanfire@g.o>
50 +python-novaclient-9999.ebuild, +metadata.xml:
51 initial add of python-novaclient
52
53
54
55
56 1.1 dev-python/python-novaclient/python-novaclient-9999.ebuild
57
58 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/python-novaclient-9999.ebuild?rev=1.1&view=markup
59 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/python-novaclient-9999.ebuild?rev=1.1&content-type=text/plain
60
61 Index: python-novaclient-9999.ebuild
62 ===================================================================
63 # Copyright 1999-2012 Gentoo Foundation
64 # Distributed under the terms of the GNU General Public License v2
65 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/python-novaclient-9999.ebuild,v 1.1 2012/12/31 18:25:42 prometheanfire Exp $
66
67 EAPI=3
68 PYTHON_DEPEND="2"
69 SUPPORT_PYTHON_ABIS="1"
70 RESTRICT_PYTHON_ABIS="3.*"
71
72 inherit distutils git-2
73
74 EGIT_REPO_URI="git://github.com/openstack/${PN}.git
75 https://github.com/openstack/${PN}.git"
76
77 DESCRIPTION="This is a client for the OpenStack Nova API."
78 HOMEPAGE="https://github.com/openstack/python-novaclient"
79 #SRC_URI="git://github.com/openstack/python-novaclient.git"
80
81 LICENSE="Apache-2.0"
82 SLOT="0"
83 KEYWORDS=""
84 IUSE="test"
85
86 DEPEND="dev-python/setuptools
87 test? ( dev-python/nose
88 dev-python/mock )"
89 RDEPEND="virtual/python-argparse
90 dev-python/httplib2
91 dev-python/prettytable
92 dev-python/simplejson"