diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2020-03-12 22:42:24 -0700 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2020-03-12 22:42:24 -0700 |
commit | c84cb3e2f078a4337448827f19c29e31b4906d7d (patch) | |
tree | 71e257647c9c655931806b564afb7f97288e3d68 /app-emulation/vagrant | |
parent | sys-fs/zfs: update live ebuild sed file path (diff) | |
download | gentoo-c84cb3e2f078a4337448827f19c29e31b4906d7d.tar.gz gentoo-c84cb3e2f078a4337448827f19c29e31b4906d7d.tar.bz2 gentoo-c84cb3e2f078a4337448827f19c29e31b4906d7d.zip |
app-emulation/vagrant: revbump, fix ruby_dep dep
Closes: https://github.com/gentoo/gentoo/pull/14938
Closes: https://bugs.gentoo.org/711576
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'app-emulation/vagrant')
-rw-r--r-- | app-emulation/vagrant/vagrant-2.2.7-r1.ebuild (renamed from app-emulation/vagrant/vagrant-2.2.7.ebuild) | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app-emulation/vagrant/vagrant-2.2.7.ebuild b/app-emulation/vagrant/vagrant-2.2.7-r1.ebuild index d81979d0d04a..19daab60aa2d 100644 --- a/app-emulation/vagrant/vagrant-2.2.7.ebuild +++ b/app-emulation/vagrant/vagrant-2.2.7-r1.ebuild @@ -59,7 +59,6 @@ all_ruby_prepare() { # loosen dependencies sed -e '/hashicorp-checkpoint\|i18n\|listen\|net-ssh\|net-scp\|rake\|childprocess/s/~>/>=/' \ - -e '/ruby_dep/s/<=/>=/' \ -i ${PN}.gemspec || die # remove windows-specific gems @@ -70,6 +69,10 @@ all_ruby_prepare() { sed -e '/rb-kqueue/d' \ -i ${PN}.gemspec || die + # remove ruby_dep, it's unused and only listed to loosen ruby implementation deps + sed -e '/ruby_dep/d' \ + -i ${PN}.gemspec || die + sed -e "s/@VAGRANT_VERSION@/${PV}/g" "${FILESDIR}/${PN}.in" > "${PN}" || die } |