From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BB076138350 for ; Fri, 13 Mar 2020 05:43:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACD28E0DB8; Fri, 13 Mar 2020 05:43:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 887E5E0DB8 for ; Fri, 13 Mar 2020 05:43:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00B0B34EF9D for ; Fri, 13 Mar 2020 05:43:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C0AB164 for ; Fri, 13 Mar 2020 05:43:25 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1584078144.c84cb3e2f078a4337448827f19c29e31b4906d7d.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/vagrant/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/vagrant/vagrant-2.2.7-r1.ebuild app-emulation/vagrant/vagrant-2.2.7.ebuild X-VCS-Directories: app-emulation/vagrant/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: c84cb3e2f078a4337448827f19c29e31b4906d7d X-VCS-Branch: master Date: Fri, 13 Mar 2020 05:43:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 596433d6-ecd7-48d9-9ee2-96e8448720ba X-Archives-Hash: de62acb54bc71617221156bfb06deae2 commit: c84cb3e2f078a4337448827f19c29e31b4906d7d Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Mar 13 05:42:24 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Mar 13 05:42:24 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c84cb3e2 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 gentoo.org> .../vagrant/{vagrant-2.2.7.ebuild => vagrant-2.2.7-r1.ebuild} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-emulation/vagrant/vagrant-2.2.7.ebuild b/app-emulation/vagrant/vagrant-2.2.7-r1.ebuild similarity index 94% rename from app-emulation/vagrant/vagrant-2.2.7.ebuild rename to app-emulation/vagrant/vagrant-2.2.7-r1.ebuild index d81979d0d04..19daab60aa2 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 }