fix(coreos-base/coreos-init): versioning was all messed up

the versioning on this package was all messed up. -9999 was a link to
the current version and neither of them were masked so new code never
got built. For now lets make coreos-init-0.0.1-r3 the latest release so
everyone rebuilds.
This commit is contained in:
Brandon Philips 2013-05-28 16:34:00 -07:00
parent 2526ff05e2
commit d1dd5f9264
2 changed files with 36 additions and 3 deletions

View File

@ -3,8 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
CROS_WORKON_COMMIT="ea3cd573f8d47f15f7e4808a838f0066777bed16"
CROS_WORKON_TREE="849f1bf8c2dd07edda676636f278674b93c49414"
CROS_WORKON_COMMIT="42a2dc50a0d170611bb5681948a454a81f455573"
CROS_WORKON_PROJECT="coreos/init"
CROS_WORKON_LOCALNAME="init"

View File

@ -1 +0,0 @@
coreos-init-0.0.1-r2.ebuild

View File

@ -0,0 +1,35 @@
# 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"
inherit cros-workon systemd
DESCRIPTION="Init scripts for CoreOS"
HOMEPAGE="http://www.coreos.com/"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="nfs"
DEPEND=""
RDEPEND="sys-apps/systemd"
src_install() {
into / # We want /sbin, not /usr/sbin, etc.
dosbin coreos_startup
systemd_dounit coreos-startup.service
systemd_enable_service basic.target coreos-startup.service
systemd_dounit update-engine.service
systemd_enable_service multi-user.target update-engine.service
systemd_enable_service multi-user.target sshd.socket
}