Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/cloud-init: cloud-init-0.7.5.ebuild ChangeLog
Date: Fri, 02 May 2014 01:57:08
Message-Id: 20140502015702.EE0732004C@flycatcher.gentoo.org
1 idella4 14/05/02 01:57:02
2
3 Modified: cloud-init-0.7.5.ebuild ChangeLog
4 Log:
5 add missing test dep, update prettytable, exclude unbroken but rogue tests for now
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 app-emulation/cloud-init/cloud-init-0.7.5.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/cloud-init-0.7.5.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/cloud-init-0.7.5.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/cloud-init-0.7.5.ebuild?r1=1.1&r2=1.2
15
16 Index: cloud-init-0.7.5.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/cloud-init-0.7.5.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- cloud-init-0.7.5.ebuild 1 May 2014 16:12:51 -0000 1.1
23 +++ cloud-init-0.7.5.ebuild 2 May 2014 01:57:02 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/cloud-init-0.7.5.ebuild,v 1.1 2014/05/01 16:12:51 idella4 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/cloud-init-0.7.5.ebuild,v 1.2 2014/05/02 01:57:02 idella4 Exp $
29
30 EAPI=5
31 PYTHON_COMPAT=( python2_7 )
32 @@ -26,10 +26,21 @@
33 dev-python/requests[${PYTHON_USEDEP}]
34 dev-python/jsonpatch[${PYTHON_USEDEP}]"
35 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
36 - test? ( ${RDEPEND} )"
37 + test? ( ${RDEPEND}
38 + sys-apps/iproute2 )"
39
40 PATCHES=( "${FILESDIR}"/${P}-tests-exclude.patch )
41
42 +python_prepare_all() {
43 + # These tests are not broken but expect to locate an installed exe file
44 + # other than where a gentoo system installs it; (/bin/ip sought in /sbin)
45 + # See cloudinit/sources/DataSourceOpenNebula.py for possible patching
46 + sed -e 's:test_hostname:_&:' \
47 + -e 's:test_network_interfaces:_&:' \
48 + -i tests/unittests/test_datasource/test_opennebula.py
49 + distutils-r_python_prepare_all
50 +}
51 +
52 python_test() {
53 emake test
54 }
55
56
57
58 1.6 app-emulation/cloud-init/ChangeLog
59
60 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/ChangeLog?rev=1.6&view=markup
61 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/ChangeLog?rev=1.6&content-type=text/plain
62 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/ChangeLog?r1=1.5&r2=1.6
63
64 Index: ChangeLog
65 ===================================================================
66 RCS file: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/ChangeLog,v
67 retrieving revision 1.5
68 retrieving revision 1.6
69 diff -u -r1.5 -r1.6
70 --- ChangeLog 1 May 2014 16:12:51 -0000 1.5
71 +++ ChangeLog 2 May 2014 01:57:02 -0000 1.6
72 @@ -1,6 +1,10 @@
73 # ChangeLog for app-emulation/cloud-init
74 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
75 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/ChangeLog,v 1.5 2014/05/01 16:12:51 idella4 Exp $
76 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/ChangeLog,v 1.6 2014/05/02 01:57:02 idella4 Exp $
77 +
78 + 02 May 2014; Ian Delaney <idella4@g.o> cloud-init-0.7.5.ebuild:
79 + add missing test dep, update prettytable, exclude unbroken but rogue tests for
80 + now
81
82 *cloud-init-0.7.5 (01 May 2014)