commit: 47323424c44cc7f75a2363ffcd9d9c59e5da54f1
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 9 10:55:33 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Feb 10 07:25:15 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47323424
dev-ruby/puppet_forge: fix gemspec to match deps in ebuild
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
dev-ruby/puppet_forge/puppet_forge-2.2.9.ebuild | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/dev-ruby/puppet_forge/puppet_forge-2.2.9.ebuild
b/dev-ruby/puppet_forge/puppet_forge-2.2.9.ebuild
index 7223fbcbc0f..e343cdbdd5d 100644
--- a/dev-ruby/puppet_forge/puppet_forge-2.2.9.ebuild
+++ b/dev-ruby/puppet_forge/puppet_forge-2.2.9.ebuild
@@ -9,6 +9,8 @@ RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
inherit ruby-fakegem
DESCRIPTION="Tools to access Forge API information on Modules, Users, and
Releases"
@@ -30,4 +32,10 @@ ruby_add_rdepend "
all_ruby_prepare() {
# Avoid integration and user specs since they all require network access
rm -rf spec/integration spec/unit/forge/v3/user_spec.rb || die
+
+ # Fix overly restrictive dependencies
+ sed -i \
+ -e '/faraday/ s/0.14.0/0.99.0/' \
+ -e '/faraday_middleware/ s/0.13.0/0.99.0/' \
+ ${RUBY_FAKEGEM_GEMSPEC} || die
}