bump(coreos-base/coretest): Update to latest code, add live ebuild.

This increases our default timeout for the docker test to 60 seconds.
Update to our current scheme of keeping everything in the live ebuild.
This commit is contained in:
Michael Marineau 2014-02-11 19:53:17 -08:00
parent 96a501156a
commit 8c7f9af2e6
4 changed files with 35 additions and 30 deletions

View File

@ -0,0 +1 @@
coretest-9999.ebuild

View File

@ -1,29 +0,0 @@
#
# $Header:$
#
EAPI=4
CROS_WORKON_COMMIT="000fa3a301fdfd04b3fe34e3a761285e5f7d12dd"
CROS_WORKON_PROJECT="coreos/coretest"
CROS_WORKON_LOCALNAME="coretest"
CROS_WORKON_REPO="git://github.com"
inherit cros-workon
DESCRIPTION="Sanity tests for CoreOS"
HOMEPAGE="https://github.com/coreos/coretest"
SRC_URI=""
LICENSE="APACHE"
SLOT="0"
KEYWORDS="amd64 arm x86"
IUSE=""
DEPEND=">=dev-lang/go-1.1"
src_compile() {
./build
}
src_install() {
dobin "${S}/${PN}"
}

View File

@ -0,0 +1,34 @@
# Copyright (c) 2014 The CoreOS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=5
CROS_WORKON_PROJECT="coreos/coretest"
CROS_WORKON_LOCALNAME="coretest"
CROS_WORKON_REPO="git://github.com"
if [[ "${PV}" == 9999 ]]; then
KEYWORDS="~amd64 ~arm ~x86"
else
CROS_WORKON_COMMIT="daf0a79a981fd6912bad81978f15461f5e161f11"
KEYWORDS="amd64 arm x86"
fi
inherit cros-workon
DESCRIPTION="Sanity tests for CoreOS"
HOMEPAGE="https://github.com/coreos/coretest"
SRC_URI=""
LICENSE="Apache-2.0"
SLOT="0"
IUSE=""
DEPEND=">=dev-lang/go-1.1"
src_compile() {
./build || die
}
src_install() {
dobin "${S}/${PN}"
}