bump(app-emulation/docker): Update to 0.5.3, cleanup ebuild.

Now we use a tarball instead of git and set the correct license. Wow!
This commit is contained in:
Michael Marineau 2013-08-19 15:09:32 -04:00
parent 79f896292c
commit f43fef7261
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST docker-0.5.3.tar.gz 1910016 SHA256 c6be25b6c91c985285b770c3c6ea35df0410fb13219191e7899365b256d9bb06 SHA512 2fba79d39cb12aa81372c7cf1c2cd881a555913c4fb0f63124255cfabc1fd8cda3b5e92183e1a76b5287a83b989958d8793f5254b626172d9c99325a7de35d43 WHIRLPOOL 4e5475fc5dfdd26c932a32fa9ae09191ddcc334d7149d202c284832368dd66148df8dad9e1da1b72f2481590ed46f5cb9f629e602815f50129b9831e1ab2d48d

View File

@ -0,0 +1,31 @@
# Copyright 2013 The CoreOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="Docker container management"
HOMEPAGE="http://docker.io"
SRC_URI="https://github.com/dotcloud/docker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64"
IUSE=""
DEPEND=">=dev-lang/go-1.1"
RDEPEND="
app-emulation/lxc
net-misc/bridge-utils
sys-apps/iproute2
app-arch/libarchive
net-misc/curl
sys-fs/aufs-util
"
src_install() {
dobin ${S}/bin/${PN}
keepdir /var/lib/${PN}/graph
keepdir /var/lib/${PN}/containers
systemd_dounit "${FILESDIR}"/${PN}.service
systemd_enable_service multi-user.target ${PN}.service
}