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 A5B96138334 for ; Sun, 10 Feb 2019 07:25:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F050E0B9E; Sun, 10 Feb 2019 07:25:34 +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 DD6CFE0B9B for ; Sun, 10 Feb 2019 07:25:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D3B4F335D03 for ; Sun, 10 Feb 2019 07:25:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BE3050D for ; Sun, 10 Feb 2019 07:25:31 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1549783515.47323424c44cc7f75a2363ffcd9d9c59e5da54f1.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/puppet_forge/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/puppet_forge/puppet_forge-2.2.9.ebuild X-VCS-Directories: dev-ruby/puppet_forge/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 47323424c44cc7f75a2363ffcd9d9c59e5da54f1 X-VCS-Branch: master Date: Sun, 10 Feb 2019 07:25:31 +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: 178c76af-c576-4792-bef0-171c34a30b6a X-Archives-Hash: e3b1b931a4ffeb3c08ec410387547883 commit: 47323424c44cc7f75a2363ffcd9d9c59e5da54f1 Author: Hans de Graaff gentoo org> AuthorDate: Sat Feb 9 10:55:33 2019 +0000 Commit: Hans de Graaff gentoo 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 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 }