diff options
author | Andrej Rode <mail@andrejro.de> | 2017-05-23 09:56:32 +0200 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2017-05-25 10:05:29 -0700 |
commit | 0670b01670fb6429557fd6ba1100be68522bc629 (patch) | |
tree | 264cbe58c15df81a466f38bc14ab0d9ff79d7b81 /app-emulation/docker-machine-kvm/docker-machine-kvm-0.10.0.ebuild | |
parent | sys-libs/uclibc-ng: version 1.0.23 stable on ppc (diff) | |
download | gentoo-0670b01670fb6429557fd6ba1100be68522bc629.tar.gz gentoo-0670b01670fb6429557fd6ba1100be68522bc629.tar.bz2 gentoo-0670b01670fb6429557fd6ba1100be68522bc629.zip |
app-emulation/docker-machine-kvm: version bump to 0.10.0
Bug: https://bugs.gentoo.org/show_bug.cgi?id=619424
Diffstat (limited to 'app-emulation/docker-machine-kvm/docker-machine-kvm-0.10.0.ebuild')
-rw-r--r-- | app-emulation/docker-machine-kvm/docker-machine-kvm-0.10.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app-emulation/docker-machine-kvm/docker-machine-kvm-0.10.0.ebuild b/app-emulation/docker-machine-kvm/docker-machine-kvm-0.10.0.ebuild new file mode 100644 index 000000000000..aee05fbbadef --- /dev/null +++ b/app-emulation/docker-machine-kvm/docker-machine-kvm-0.10.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGO_PN="github.com/dhiltgen/${PN}" +EGO_VENDOR=( + "github.com/docker/machine v${PV}" + "github.com/libvirt/libvirt-go c3209e4ba8b8dda65c85ca0ac04302e55895caf7" +) + +inherit golang-build golang-vcs-snapshot + +KEYWORDS="~amd64" +DESCRIPTION="KVM driver for docker-machine" + +HOMEPAGE="http://${EGO_PN}" +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" +COMMON_DEPEND="app-emulation/libvirt:=[qemu,virt-network]" +DEPEND=">=dev-lang/go-1.6:= + ${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" + +SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz + ${EGO_VENDOR_URI}" + +src_compile() { + export GOPATH=${S} + cd "${S}"/src/${EGO_PN}/cmd/${PN/kvm/driver-kvm} || die + emake build || die +} + +src_install() { + dobin "${S}/src/${EGO_PN}/cmd/${PN/kvm/driver-kvm}/${PN/kvm/driver-kvm}" + dodoc "${S}/src/${EGO_PN}/README.md" +} |