From f43fef7261274e26a4e58f731cfe403f8fc2a405 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Mon, 19 Aug 2013 15:09:32 -0400 Subject: [PATCH] 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! --- .../app-emulation/docker/Manifest | 1 + .../app-emulation/docker/docker-0.5.3.ebuild | 31 +++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 sdk_container/src/third_party/coreos-overlay/app-emulation/docker/Manifest create mode 100644 sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-0.5.3.ebuild diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/Manifest b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/Manifest new file mode 100644 index 0000000000..d1c6aa7c5b --- /dev/null +++ b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/Manifest @@ -0,0 +1 @@ +DIST docker-0.5.3.tar.gz 1910016 SHA256 c6be25b6c91c985285b770c3c6ea35df0410fb13219191e7899365b256d9bb06 SHA512 2fba79d39cb12aa81372c7cf1c2cd881a555913c4fb0f63124255cfabc1fd8cda3b5e92183e1a76b5287a83b989958d8793f5254b626172d9c99325a7de35d43 WHIRLPOOL 4e5475fc5dfdd26c932a32fa9ae09191ddcc334d7149d202c284832368dd66148df8dad9e1da1b72f2481590ed46f5cb9f629e602815f50129b9831e1ab2d48d diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-0.5.3.ebuild b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-0.5.3.ebuild new file mode 100644 index 0000000000..0f8734bced --- /dev/null +++ b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-0.5.3.ebuild @@ -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 +}