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: Thu, 01 May 2014 16:12:55
Message-Id: 20140501161251.C454F2004C@flycatcher.gentoo.org
1 idella4 14/05/01 16:12:51
2
3 Modified: ChangeLog
4 Added: cloud-init-0.7.5.ebuild
5 Log:
6 bump; patch to exclude tests effectively, upgrade deps, add IUSE test, test phase
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.5 app-emulation/cloud-init/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 16 Mar 2014 21:05:11 -0000 1.4
24 +++ ChangeLog 1 May 2014 16:12:51 -0000 1.5
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-emulation/cloud-init
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/ChangeLog,v 1.4 2014/03/16 21:05:11 prometheanfire Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/ChangeLog,v 1.5 2014/05/01 16:12:51 idella4 Exp $
30 +
31 +*cloud-init-0.7.5 (01 May 2014)
32 +
33 + 01 May 2014; Ian Delaney <idella4@g.o> +cloud-init-0.7.5.ebuild,
34 + +files/cloud-init-0.7.5-tests-exclude.patch:
35 + bump; patch to exclude tests effectively, upgrade deps, add IUSE test, test
36 + phase
37
38 *cloud-init-0.7.4-r1 (16 Mar 2014)
39
40
41
42
43 1.1 app-emulation/cloud-init/cloud-init-0.7.5.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/cloud-init-0.7.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/cloud-init/cloud-init-0.7.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: cloud-init-0.7.5.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $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 $
53
54 EAPI=5
55 PYTHON_COMPAT=( python2_7 )
56
57 inherit distutils-r1 eutils multilib
58
59 DESCRIPTION="Package provides configuration and customization of cloud instance."
60 HOMEPAGE="https://launchpad.net/cloud-init"
61 SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="test"
67
68 RDEPEND="dev-python/cheetah[${PYTHON_USEDEP}]
69 >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
70 dev-python/oauth[${PYTHON_USEDEP}]
71 dev-python/pyserial[${PYTHON_USEDEP}]
72 dev-python/configobj[${PYTHON_USEDEP}]
73 dev-python/pyyaml[${PYTHON_USEDEP}]
74 virtual/python-argparse[${PYTHON_USEDEP}]
75 dev-python/requests[${PYTHON_USEDEP}]
76 dev-python/jsonpatch[${PYTHON_USEDEP}]"
77 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
78 test? ( ${RDEPEND} )"
79
80 PATCHES=( "${FILESDIR}"/${P}-tests-exclude.patch )
81
82 python_test() {
83 emake test
84 }
85
86 python_install() {
87 distutils-r1_python_install
88 for svc in config final init init-local; do
89 newinitd "${FILESDIR}/cloud-${svc}.init" "cloud-${svc}"
90 done
91 }