Added new ebuild forked from emiddleton-chef-overlay with a version bump

git-svn-id: svn://svn/overlay@11 cac97296-3875-46d4-bff2-57f7a9340a83
This commit is contained in:
Tamás Gérczei 2017-04-01 10:21:32 +00:00
parent 07e268f700
commit 548da96267
2 changed files with 41 additions and 0 deletions

2
vagrant-bin/Manifest Normal file
View File

@ -0,0 +1,2 @@
DIST vagrant_1.9.3_x86_64.deb 87666544 SHA256 faff6befacc7eed3978b4b71f0dbb9c135c01d8a4d13236bda2f9ed53482d2c4 SHA512 4ecbd4d5923e7f45552f05f443c076ad2bb8db3dd716133cc2b47fca7ccaa92a5ecfd6e0bf01c3f0d76eddc08d6933fd53917b946915a43f84b565eeca5099dc WHIRLPOOL 7588c1bd35d562e64fbbd360f5f95904a5ba8d2d4c7a979dcd5870526cb933edb0dbba72f213eb91542f386b67a516635f3f1018f32b3418b72c9fb31781d1a6
EBUILD vagrant-bin-1.9.3.ebuild 715 SHA256 46b572bb692648aebc5c3a93c3ec7c0e9ffc2c7a607c6c3312e45e4d1cdf3dfa SHA512 403e32cecb0eefc8842a8c71d400235d426fda955bcb9b4af2bfc1c7abab43bfa7fbe65cf1af947e86d6befb44fbbcd42780a68bf2bffb272ea7bcdd7df71060 WHIRLPOOL e74f1db0c0df6857d2e94aab6d5840f5017812cff5ffb095ef075fb6d6fb70d963d235eda1197e6593c00e60243b10f82ada1eed7a0948fc7f5d070a61a1a1ce

View File

@ -0,0 +1,39 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
MY_PN=${PN/-bin/}
inherit unpacker eutils
DESCRIPTION="Tool for building and distributing virtual machines"
HOMEPAGE="http://vagrantup.com/"
SRC_URI="https://releases.hashicorp.com/${MY_PN}/${PV}/${MY_PN}_${PV}_x86_64.deb"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
S="${WORKDIR}/opt/${MY_PN}"
DEPEND=""
RDEPEND="${DEPEND}
app-arch/libarchive
net-misc/curl
"
RESTRICT="mirror"
src_unpack() {
unpack_deb ${A}
}
src_install() {
local dir="/opt/${MY_PN}"
dodir ${dir}
cp -ar ./* "${ED}${dir}" || die "copy files failed"
make_wrapper "${MY_PN}" "${dir}/bin/${MY_PN}"
}