diff options
author | Pacho Ramos <pacho@gentoo.org> | 2017-07-14 13:11:14 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2017-07-14 13:11:14 +0200 |
commit | 18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5 (patch) | |
tree | 8e471f785bcc3b4f8397761c5d0fe49f25a6e719 /app-emulation | |
parent | Remove hardmasked packages (diff) | |
download | gentoo-18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5.tar.gz gentoo-18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5.tar.bz2 gentoo-18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5.zip |
Remove hardmasked packages
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/domi/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/domi/domi-20060816.ebuild | 39 | ||||
-rw-r--r-- | app-emulation/domi/files/domi.conf | 95 | ||||
-rw-r--r-- | app-emulation/domi/metadata.xml | 6 |
4 files changed, 0 insertions, 141 deletions
diff --git a/app-emulation/domi/Manifest b/app-emulation/domi/Manifest deleted file mode 100644 index 469488ebbc05..000000000000 --- a/app-emulation/domi/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST domi-20060816-153213.tar.gz 15503 SHA256 2eba3bbd36738764a1443544388472dbc603db81974b74402954d2693d231c78 SHA512 ea8fea65860f399ea1f4474f7cba957c29298b126c6b8aded1af07a09e987bad6d5fbe9af552977d33480562e28e77774690c6f5d6958e29f3533c892a69c207 WHIRLPOOL 0d71ff2cc25496e6c3dfa35f5a7f96a071a0ff2ec683f709a9479f89f4b98f8d8ce37ceb1982289e6f1f853a78f22b694e83a2b1d4eaa6ce0dcf60e079df02d8 diff --git a/app-emulation/domi/domi-20060816.ebuild b/app-emulation/domi/domi-20060816.ebuild deleted file mode 100644 index 21b8a3ac1a4e..000000000000 --- a/app-emulation/domi/domi-20060816.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils -DESCRIPTION="Scripts for building Xen domains" -HOMEPAGE="http://www.bytesex.org" -EXTRA_VERSION="153213" -SRC_URI="http://dl.bytesex.org/cvs-snapshots/${P}-${EXTRA_VERSION}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -DEPEND=" - app-emulation/xen-tools - app-arch/rpm - sys-block/parted - sys-apps/yum - sys-fs/lvm2 - sys-fs/multipath-tools -" -# there are some other depends we may need depending on the target system -# these packages aren't in gentoo yet. feel free to submit ebuilds via bugzilla. -# y2pmsh -RESTRICT="test" - -S=${WORKDIR}/${PN} - -src_configure() { - sed -i -e 's@/usr/local@/usr@' "${S}"/Makefile - sed -i -e 's:/dev/loop\$:/dev/loop/\$:' "${S}"/domi -} - -src_install() { - emake DESTDIR="${D}" install - insinto /etc - doins "${FILESDIR}"/domi.conf || die -} diff --git a/app-emulation/domi/files/domi.conf b/app-emulation/domi/files/domi.conf deleted file mode 100644 index 429a16505156..000000000000 --- a/app-emulation/domi/files/domi.conf +++ /dev/null @@ -1,95 +0,0 @@ -#!/bin/bash -#This script is generated by http://bugs.gentoo.org/show_bug.cgi?id=112407 and the domi.man file -#domi - xen domain installer /etc/domi.conf -#domi is a shell script which sets up virtual machines. It creates -#virtual disks using either LVM or image files and installs a linux -#distribution on the newly created disk. -# -#domi reads the configuration from /etc/domi.conf and the config file -#passed on the command line. Then goes ahead and sets up the virtual -#disk without asking further questions, so be careful. -#The config files are simply sourced. Thus the syntax for setting the -#config options is the usual shell variable style, i.e. VAR="value", -#hashmark works for comments and so on. -############################################ -#DOMI_NAME="myexample" # Required -DOMI_NAME=" " - -##Name of the virtual machine. -#Distribution to install. Valid choices are suse, fedora, debian and gentoo. -#DOMI_DISTRO="gentoo" # Required. -DOMI_DISTRO="" - -#DOMI_CACHE Location where downloaded files are cached. -#Default: /var/cache/domi -DOMI_CACHE="/var/cache/domi" - -#DOMI_FSTYPE File system to use -#Default: ext2 -DOMI_FSTYPE="ext2" - -#DOMI_PASSWD Initial root password -#Default: root -DOMI_PASSWD="secret" - -#DOMI_VDISK -#Name of the virtual disk (inside the vm). "xvda" should do just -#fine with all modern, udev-based distros which create the device -#nodes automatically. In case of trouble you can try "hda" instead. -#Default: xvda -DOMI_VDISK="xvda" - -#DOMI_XEN_CONF -#Recommended. -#If specified the script writes a initial Xen config file to the given -#location. -#DOMI_XEN_CONF="/etc/xen/auto/myexample-startscript" -DOMI_XEN_CONF=" " - -#DOMI_XEN_KERNEL Xen kernel (for the Xen config file). -#Default: /boot/vmlinuz-xen -#DOMI_XEN_KERNEL="/path/to/the/DomU-kernel" -DOMI_XEN_KERNEL="" - -#DOMI_XEN_MEMORY -#Main memory (for the Xen config file, in megabytes). -#Default: 128 -DOMI_XEN_MEMORY="128" - -#DOMI_DISK_VG -#LVM volume group to use for storage. If specied the script will -#create a volume with DOMI_NAME in that volume group and use it to -#setup the virtual disk. -#Recommended. -#DOMI_DISK_VG="volg-md9"# without a "/" -DOMI_DISK_VG="" - -#DOMI_DISK_FILE -#If you don't use LVM you can specify an image file to use for the -#virtual disk. Setting either DOMI_DISK_VG or DOMI_DISK_FILE is -#required. -#DOMI_DISK_FILE="/path/to/my/myexample.file" -DOMI_DISK_FILE="" - -#DOMI_DISK_SPARSE -#Set this to some non-empty value to make domi use sparse file for the -#disk images. Has no effect if you use LVM. - -#DOMI_DISK_SIZE -#Default: 4096 -#Size of the virtual disk, in megabytes. -DOMI_DISK_SIZE="4096" - -#DOMI_SWAP_SIZE -#Default: 256 -#Size of the swap partition, in megabytes. -DOMI_SWAP_SIZE="256" - -#DOMI_ROOT_SIZE -#Default: DOMI_DISK_SIZE - DOMI_SWAP_SIZE -#Size if the root filesystem, in megabytes - -#DOMI_HOOK_POST -#Custom postinstall script to run. - -################### diff --git a/app-emulation/domi/metadata.xml b/app-emulation/domi/metadata.xml deleted file mode 100644 index 3dc4519c4b48..000000000000 --- a/app-emulation/domi/metadata.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <longdescription>Scripts for building Xen domains</longdescription> -</pkgmetadata> |