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-9999.ebuild ChangeLog
Date: Tue, 01 Jan 2013 06:45:54
Message-Id: 20130101064542.AEA892171D@flycatcher.gentoo.org
1 prometheanfire 13/01/01 06:45:42
2
3 Modified: python-novaclient-9999.ebuild ChangeLog
4 Log:
5 better test support and eapi5 and distutils-r1 :D
6
7 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
8
9 Revision Changes Path
10 1.2 dev-python/python-novaclient/python-novaclient-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/python-novaclient-9999.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/python-novaclient-9999.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/python-novaclient-9999.ebuild?r1=1.1&r2=1.2
15
16 Index: python-novaclient-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/python-novaclient-9999.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- python-novaclient-9999.ebuild 31 Dec 2012 18:25:42 -0000 1.1
23 +++ python-novaclient-9999.ebuild 1 Jan 2013 06:45:42 -0000 1.2
24 @@ -1,13 +1,11 @@
25 -# Copyright 1999-2012 Gentoo Foundation
26 +# Copyright 1999-2013 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/python-novaclient-9999.ebuild,v 1.1 2012/12/31 18:25:42 prometheanfire Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/python-novaclient-9999.ebuild,v 1.2 2013/01/01 06:45:42 prometheanfire Exp $
30
31 -EAPI=3
32 -PYTHON_DEPEND="2"
33 -SUPPORT_PYTHON_ABIS="1"
34 -RESTRICT_PYTHON_ABIS="3.*"
35 +EAPI=5
36 +PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
37
38 -inherit distutils git-2
39 +inherit distutils-r1 git-2
40
41 EGIT_REPO_URI="git://github.com/openstack/${PN}.git
42 https://github.com/openstack/${PN}.git"
43 @@ -21,10 +19,21 @@
44 KEYWORDS=""
45 IUSE="test"
46
47 -DEPEND="dev-python/setuptools
48 - test? ( dev-python/nose
49 - dev-python/mock )"
50 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
51 + test? ( dev-python/iso8601
52 + dev-python/mock
53 + dev-python/nose
54 + dev-python/prettytable
55 + dev-python/pytest
56 + dev-python/pytest-runner
57 + dev-python/requests
58 + dev-python/simplejson
59 + dev-python/unittest2 )"
60 RDEPEND="virtual/python-argparse
61 dev-python/httplib2
62 dev-python/prettytable
63 dev-python/simplejson"
64 +
65 +python_test() {
66 + "${PYTHON}" setup.py nosetests || die
67 +}
68
69
70
71 1.2 dev-python/python-novaclient/ChangeLog
72
73 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?rev=1.2&view=markup
74 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?rev=1.2&content-type=text/plain
75 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-novaclient/ChangeLog?r1=1.1&r2=1.2
76
77 Index: ChangeLog
78 ===================================================================
79 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/ChangeLog,v
80 retrieving revision 1.1
81 retrieving revision 1.2
82 diff -u -r1.1 -r1.2
83 --- ChangeLog 31 Dec 2012 18:25:42 -0000 1.1
84 +++ ChangeLog 1 Jan 2013 06:45:42 -0000 1.2
85 @@ -1,10 +1,13 @@
86 # ChangeLog for dev-python/python-novaclient
87 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
88 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/ChangeLog,v 1.1 2012/12/31 18:25:42 prometheanfire Exp $
89 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
90 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-novaclient/ChangeLog,v 1.2 2013/01/01 06:45:42 prometheanfire Exp $
91 +
92 + 01 Jan 2013; Matthew Thode <prometheanfire@g.o>
93 + python-novaclient-9999.ebuild:
94 + better test support and eapi5 and distutils-r1 :D
95
96 *python-novaclient-9999 (31 Dec 2012)
97
98 31 Dec 2012; Matthew Thode <prometheanfire@g.o>
99 +python-novaclient-9999.ebuild, +metadata.xml:
100 initial add of python-novaclient
101 -