mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 15:09:04 +02:00
40 lines
865 B
Bash
40 lines
865 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby32 ruby33 ruby34"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
|
|
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
|
RUBY_FAKEGEM_GEMSPEC="vagrant_cloud.gemspec"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Vagrant Cloud API Library"
|
|
HOMEPAGE="https://github.com/hashicorp/vagrant_cloud"
|
|
SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
IUSE="test"
|
|
|
|
ruby_add_rdepend "
|
|
dev-ruby/excon:1
|
|
>=dev-ruby/log4r-1.1.10:0
|
|
dev-ruby/oauth2:2
|
|
>=dev-ruby/rexml-3.3:3
|
|
"
|
|
ruby_add_bdepend ">=dev-ruby/rake-12.3
|
|
test? (
|
|
>=dev-ruby/webmock-3.0
|
|
)
|
|
"
|
|
|
|
all_ruby_prepare() {
|
|
# # loosen dependencies
|
|
sed -e 's:require_relative ":require "./:' \
|
|
-e '/rake/s/~>/>=/' \
|
|
-i ${PN}.gemspec || die
|
|
}
|