coreos-init: fix ebuild name/symlink

Previous update renamed the live ebuild instead of symlink by mistake.
This commit is contained in:
Michael Marineau 2016-05-02 20:39:10 -07:00
parent e9dd14134d
commit 67b14a463a
3 changed files with 57 additions and 57 deletions

View File

@ -1,56 +0,0 @@
# Copyright (c) 2013 The CoreOS Authors. All rights reserved.
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
CROS_WORKON_PROJECT="coreos/init"
CROS_WORKON_LOCALNAME="init"
CROS_WORKON_REPO="git://github.com"
if [[ "${PV}" == 9999 ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
else
CROS_WORKON_COMMIT="d05fab1c8e5878129c3e365977f1a57fd11216a6"
KEYWORDS="amd64 arm arm64 x86"
fi
inherit cros-workon systemd
DESCRIPTION="Init scripts for CoreOS"
HOMEPAGE="http://www.coreos.com/"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
IUSE="test symlink-usr"
REQUIRED_USE="symlink-usr"
# Daemons we enable here must installed during build/install in addition to
# during runtime so the systemd unit enable step works.
DEPEND="
app-emulation/docker
net-misc/openssh
net-nds/rpcbind
!<dev-db/etcd-0.0.1-r6
!coreos-base/oem-service
test? ( dev-lang/python:2.7 )
"
RDEPEND="${DEPEND}
app-admin/logrotate
sys-block/parted
sys-apps/gptfdisk
>=sys-apps/systemd-207-r5
>=coreos-base/coreos-cloudinit-0.1.2-r5
"
src_install() {
emake DESTDIR="${D}" install
# Enable some sockets that aren't enabled by their own ebuilds.
systemd_enable_service sockets.target sshd.socket
systemd_enable_service sockets.target docker.socket
# Enable some services that aren't enabled elsewhere.
systemd_enable_service rpcbind.target rpcbind.service
}

View File

@ -0,0 +1 @@
coreos-init-9999.ebuild

View File

@ -0,0 +1,56 @@
# Copyright (c) 2013 The CoreOS Authors. All rights reserved.
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
CROS_WORKON_PROJECT="coreos/init"
CROS_WORKON_LOCALNAME="init"
CROS_WORKON_REPO="git://github.com"
if [[ "${PV}" == 9999 ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
else
CROS_WORKON_COMMIT="d05fab1c8e5878129c3e365977f1a57fd11216a6"
KEYWORDS="amd64 arm arm64 x86"
fi
inherit cros-workon systemd
DESCRIPTION="Init scripts for CoreOS"
HOMEPAGE="http://www.coreos.com/"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
IUSE="test symlink-usr"
REQUIRED_USE="symlink-usr"
# Daemons we enable here must installed during build/install in addition to
# during runtime so the systemd unit enable step works.
DEPEND="
app-emulation/docker
net-misc/openssh
net-nds/rpcbind
!<dev-db/etcd-0.0.1-r6
!coreos-base/oem-service
test? ( dev-lang/python:2.7 )
"
RDEPEND="${DEPEND}
app-admin/logrotate
sys-block/parted
sys-apps/gptfdisk
>=sys-apps/systemd-207-r5
>=coreos-base/coreos-cloudinit-0.1.2-r5
"
src_install() {
emake DESTDIR="${D}" install
# Enable some sockets that aren't enabled by their own ebuilds.
systemd_enable_service sockets.target sshd.socket
systemd_enable_service sockets.target docker.socket
# Enable some services that aren't enabled elsewhere.
systemd_enable_service rpcbind.target rpcbind.service
}