summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Thode <prometheanfire@gentoo.org>2014-05-20 20:57:08 +0000
committerMatthew Thode <prometheanfire@gentoo.org>2014-05-20 20:57:08 +0000
commit96aa052dc99f054ce629ca0b0e6e1beb030de066 (patch)
tree9376b75844315484976d9c25c40ec83990c4e883 /app-emulation/cloud-init
parentAdd ~arm keyword. (diff)
downloadgentoo-2-96aa052dc99f054ce629ca0b0e6e1beb030de066.tar.gz
gentoo-2-96aa052dc99f054ce629ca0b0e6e1beb030de066.tar.bz2
gentoo-2-96aa052dc99f054ce629ca0b0e6e1beb030de066.zip
removing old and jankey
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
Diffstat (limited to 'app-emulation/cloud-init')
-rw-r--r--app-emulation/cloud-init/ChangeLog7
-rw-r--r--app-emulation/cloud-init/cloud-init-0.7.4-r1.ebuild42
-rw-r--r--app-emulation/cloud-init/files/cloud-config.init16
-rw-r--r--app-emulation/cloud-init/files/cloud-final.init14
-rw-r--r--app-emulation/cloud-init/files/cloud-init-local.init15
-rw-r--r--app-emulation/cloud-init/files/cloud-init.init16
6 files changed, 6 insertions, 104 deletions
diff --git a/app-emulation/cloud-init/ChangeLog b/app-emulation/cloud-init/ChangeLog
index b4f3a8d0c780..523f12303090 100644
--- a/app-emulation/cloud-init/ChangeLog
+++ b/app-emulation/cloud-init/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-emulation/cloud-init
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/ChangeLog,v 1.7 2014/05/20 20:55:30 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/ChangeLog,v 1.8 2014/05/20 20:57:08 prometheanfire Exp $
+
+ 20 May 2014; Matthew Thode <prometheanfire@gentoo.org>
+ -cloud-init-0.7.4-r1.ebuild, -files/cloud-config.init,
+ -files/cloud-final.init, -files/cloud-init-local.init, -files/cloud-init.init:
+ removing old and jankey
*cloud-init-0.7.5-r1 (20 May 2014)
diff --git a/app-emulation/cloud-init/cloud-init-0.7.4-r1.ebuild b/app-emulation/cloud-init/cloud-init-0.7.4-r1.ebuild
deleted file mode 100644
index a8004a5ab45d..000000000000
--- a/app-emulation/cloud-init/cloud-init-0.7.4-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/cloud-init-0.7.4-r1.ebuild,v 1.1 2014/03/16 21:05:11 prometheanfire Exp $
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 eutils multilib
-
-DESCRIPTION="Package provides configuration and customization of cloud instance."
-HOMEPAGE="https://launchpad.net/cloud-init"
-SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-
-RDEPEND="dev-python/cheetah[${PYTHON_USEDEP}]
- dev-python/prettytable[${PYTHON_USEDEP}]
- dev-python/oauth[${PYTHON_USEDEP}]
- dev-python/pyserial[${PYTHON_USEDEP}]
- dev-python/configobj[${PYTHON_USEDEP}]
- dev-python/pyyaml[${PYTHON_USEDEP}]
- virtual/python-argparse[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP}]
- dev-python/boto[${PYTHON_USEDEP}]
- dev-python/jsonpatch[${PYTHON_USEDEP}]"
-
-src_prepare() {
- sed -i "s/'tests'//g" "${S}/setup.py"
- rm -R "${S}/tests"
-}
-
-python_install() {
- distutils-r1_python_install
- for svc in config final init init-local; do
- newinitd "${FILESDIR}/cloud-${svc}.init" "cloud-${svc}"
- done
-}
diff --git a/app-emulation/cloud-init/files/cloud-config.init b/app-emulation/cloud-init/files/cloud-config.init
deleted file mode 100644
index 64d80017ea57..000000000000
--- a/app-emulation/cloud-init/files/cloud-config.init
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/files/cloud-config.init,v 1.1 2014/03/16 21:05:12 prometheanfire Exp $
-
-depend() {
- after cloud-init-local
- after cloud-init
- before cloud-final
- provide cloud-config
-}
-
-start() {
- cloud-init modules --mode config
- eend 0
-}
diff --git a/app-emulation/cloud-init/files/cloud-final.init b/app-emulation/cloud-init/files/cloud-final.init
deleted file mode 100644
index ace74d69f672..000000000000
--- a/app-emulation/cloud-init/files/cloud-final.init
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/files/cloud-final.init,v 1.1 2014/03/16 21:05:12 prometheanfire Exp $
-
-depend() {
- after cloud-config
- provide cloud-final
-}
-
-start() {
- cloud-init modules --mode final
- eend 0
-}
diff --git a/app-emulation/cloud-init/files/cloud-init-local.init b/app-emulation/cloud-init/files/cloud-init-local.init
deleted file mode 100644
index 0c8e9df223f5..000000000000
--- a/app-emulation/cloud-init/files/cloud-init-local.init
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/files/cloud-init-local.init,v 1.1 2014/03/16 21:05:12 prometheanfire Exp $
-
-depend() {
- after net
- before cloud-init
- provide cloud-init-local
-}
-
-start() {
- cloud-init init --local
- eend 0
-}
diff --git a/app-emulation/cloud-init/files/cloud-init.init b/app-emulation/cloud-init/files/cloud-init.init
deleted file mode 100644
index 151faf502256..000000000000
--- a/app-emulation/cloud-init/files/cloud-init.init
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/files/cloud-init.init,v 1.1 2014/03/16 21:05:12 prometheanfire Exp $
-
-# add depends for network, dns, fs etc
-depend() {
- after cloud-init-local
- before cloud-config
- provide cloud-init
-}
-
-start() {
- cloud-init init
- eend 0
-}