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.13.0-r1.ebuild ChangeLog
Date: Fri, 31 May 2013 14:47:00
Message-Id: 20130531144649.CEE022171D@flycatcher.gentoo.org
1 prometheanfire 13/05/31 14:46:49
2
3 Modified: ChangeLog
4 Added: python-novaclient-2.13.0-r1.ebuild
5 Log:
6 updating python-keystoneclient deps to be fully distutils-r1 and update the requests dep to be more in line with reality
7
8 (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
9
10 Revision Changes Path
11 1.11 dev-python/python-novaclient/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 3 May 2013 19:03:54 -0000 1.10
24 +++ ChangeLog 31 May 2013 14:46:49 -0000 1.11
25 @@ -1,6 +1,13 @@
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.10 2013/05/03 19:03:54 prometheanfire Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/ChangeLog,v 1.11 2013/05/31 14:46:49 prometheanfire Exp $
30 +
31 +*python-novaclient-2.13.0-r1 (31 May 2013)
32 +
33 + 31 May 2013; Matthew Thode <prometheanfire@g.o>
34 + +python-novaclient-2.13.0-r1.ebuild:
35 + updating python-keystoneclient deps to be fully distutils-r1 and update the
36 + requests dep to be more in line with reality
37
38 03 May 2013; Matthew Thode <prometheanfire@g.o>
39 python-novaclient-2.10.0-r1.ebuild, python-novaclient-2.11.1-r1.ebuild,
40
41
42
43 1.1 dev-python/python-novaclient/python-novaclient-2.13.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/python-novaclient-2.13.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/python-novaclient-2.13.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: python-novaclient-2.13.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/python-novaclient-2.13.0-r1.ebuild,v 1.1 2013/05/31 14:46:49 prometheanfire Exp $
53
54 EAPI=5
55 PYTHON_COMPAT=( python2_6 python2_7 )
56
57 inherit distutils-r1
58
59 DESCRIPTION="A client for the OpenStack Nova API"
60 HOMEPAGE="https://github.com/openstack/python-novaclient"
61 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62
63 LICENSE="Apache-2.0"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="test"
67
68 #need to package a bunch of stuff, they changed their test suite, again...
69 RESTRICT="test"
70
71 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
72 test? ( >=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}]
73 dev-python/mock[${PYTHON_USEDEP}]
74 dev-python/nose[${PYTHON_USEDEP}]
75 >=dev-python/prettytable-0.6[${PYTHON_USEDEP}]
76 <dev-python/prettytable-0.8[${PYTHON_USEDEP}]
77 dev-python/pytest[${PYTHON_USEDEP}]
78 dev-python/pytest-runner[${PYTHON_USEDEP}]
79 dev-python/requests[${PYTHON_USEDEP}]
80 dev-python/simplejson[${PYTHON_USEDEP}]
81 virtual/python-unittest2[${PYTHON_USEDEP}] )"
82 RDEPEND="virtual/python-argparse[${PYTHON_USEDEP}]
83 dev-python/httplib2[${PYTHON_USEDEP}]
84 >=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}]
85 >=dev-python/prettytable-0.6[${PYTHON_USEDEP}]
86 <dev-python/prettytable-0.7[${PYTHON_USEDEP}]
87 >=dev-python/requests-0.8[${PYTHON_USEDEP}]
88 dev-python/simplejson[${PYTHON_USEDEP}]"
89
90 python_test() {
91 "${PYTHON}" setup.py nosetests || die
92 }