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.4.3.ebuild ChangeLog
Date: Mon, 03 Jun 2013 19:00:13
Message-Id: 20130603190002.23E972171D@flycatcher.gentoo.org
1 prometheanfire 13/06/03 19:00:02
2
3 Modified: ChangeLog
4 Added: pyrax-1.4.3.ebuild
5 Log:
6 just a version bump for pyrax
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.6 dev-python/pyrax/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyrax/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 3 Apr 2013 15:56:58 -0000 1.5
24 +++ ChangeLog 3 Jun 2013 19:00:02 -0000 1.6
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.5 2013/04/03 15:56:58 prometheanfire Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyrax/ChangeLog,v 1.6 2013/06/03 19:00:02 prometheanfire Exp $
30 +
31 +*pyrax-1.4.3 (03 Jun 2013)
32 +
33 + 03 Jun 2013; Matthew Thode <prometheanfire@g.o> +pyrax-1.4.3.ebuild:
34 + just a version bump for pyrax
35
36 *pyrax-1.3.6 (03 Apr 2013)
37
38
39
40
41 1.1 dev-python/pyrax/pyrax-1.4.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/pyrax-1.4.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/pyrax-1.4.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pyrax-1.4.3.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyrax/pyrax-1.4.3.ebuild,v 1.1 2013/06/03 19:00:02 prometheanfire Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_6 python2_7 )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Python SDK for OpenStack/Rackspace APIs"
58 HOMEPAGE="https://github.com/openstack/python-novaclient"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="Apache-2.0"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="test"
65
66 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
67 test? ( dev-python/mock[${PYTHON_USEDEP}]
68 >=dev-python/python-novaclient-2.13.0[${PYTHON_USEDEP}]
69 dev-python/python-swiftclient[${PYTHON_USEDEP}]
70 virtual/python-unittest2[${PYTHON_USEDEP}] )"
71 RDEPEND="
72 dev-python/httplib2[${PYTHON_USEDEP}]
73 dev-python/keyring[${PYTHON_USEDEP}]
74 dev-python/prettytable[${PYTHON_USEDEP}]
75 >=dev-python/python-novaclient-2.13.0[${PYTHON_USEDEP}]
76 dev-python/python-swiftclient[${PYTHON_USEDEP}]
77 dev-python/rackspace-novaclient[${PYTHON_USEDEP}]
78 dev-python/simplejson[${PYTHON_USEDEP}]"
79
80 python_test() {
81 "${PYTHON}" setup.py nosetests || die
82 }