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 E1AF31382C5 for ; Fri, 26 Jun 2020 12:42:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D518E08F5; Fri, 26 Jun 2020 12:42:21 +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 2FD22E08F5 for ; Fri, 26 Jun 2020 12:42:20 +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 902B634F033 for ; Fri, 26 Jun 2020 12:42:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B34B72AB for ; Fri, 26 Jun 2020 12:42:15 +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: <1593175321.3e468f21b9f3d83a45d0498a02921f8503ccac15.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/vcr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/vcr/metadata.xml dev-ruby/vcr/vcr-4.0.0.ebuild dev-ruby/vcr/vcr-5.1.0.ebuild dev-ruby/vcr/vcr-6.0.0.ebuild X-VCS-Directories: dev-ruby/vcr/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 3e468f21b9f3d83a45d0498a02921f8503ccac15 X-VCS-Branch: master Date: Fri, 26 Jun 2020 12:42:15 +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: f6840ee8-81f4-45a8-aad3-5fcf3e060e34 X-Archives-Hash: 1536e6d0cfefb0e3f84b59125b95334d commit: 3e468f21b9f3d83a45d0498a02921f8503ccac15 Author: Hans de Graaff gentoo org> AuthorDate: Fri Jun 26 12:22:41 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Jun 26 12:42:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e468f21 dev-ruby/vcr: add json USE flag Add support for casettes serialized in JSON by adding the required dependency for it. Bug: https://bugs.gentoo.org/729484 Package-Manager: Portage-2.3.99, Repoman-2.3.23 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/vcr/metadata.xml | 3 +++ dev-ruby/vcr/vcr-4.0.0.ebuild | 8 +++++--- dev-ruby/vcr/vcr-5.1.0.ebuild | 4 +++- dev-ruby/vcr/vcr-6.0.0.ebuild | 4 +++- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/dev-ruby/vcr/metadata.xml b/dev-ruby/vcr/metadata.xml index 3e7ac4fc6b7..588668ce56b 100644 --- a/dev-ruby/vcr/metadata.xml +++ b/dev-ruby/vcr/metadata.xml @@ -8,4 +8,7 @@ myronmarston/vcr + + Add support for casettes serialized with JSON + diff --git a/dev-ruby/vcr/vcr-4.0.0.ebuild b/dev-ruby/vcr/vcr-4.0.0.ebuild index cae5212ae31..096a7318138 100644 --- a/dev-ruby/vcr/vcr-4.0.0.ebuild +++ b/dev-ruby/vcr/vcr-4.0.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -USE_RUBY="ruby23 ruby24 ruby25 ruby26" +USE_RUBY="ruby24 ruby25 ruby26" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md CONTRIBUTING.md README.md Upgrade.md" @@ -16,8 +16,10 @@ LICENSE="MIT" KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86" SLOT="3" -IUSE="test" +IUSE="json test" # Tests require all supported HTTP libraries to be present, and it is # not possible to avoid some of them without very extensive patches. RESTRICT="test" + +ruby_add_rdepend "json? ( dev-ruby/multi_json )" diff --git a/dev-ruby/vcr/vcr-5.1.0.ebuild b/dev-ruby/vcr/vcr-5.1.0.ebuild index ca4669a2923..c6e6cd0a24d 100644 --- a/dev-ruby/vcr/vcr-5.1.0.ebuild +++ b/dev-ruby/vcr/vcr-5.1.0.ebuild @@ -17,8 +17,10 @@ LICENSE="MIT" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" SLOT="$(ver_cut 1)" -IUSE="test" +IUSE="json test" # Tests require all supported HTTP libraries to be present, and it is # not possible to avoid some of them without very extensive patches. RESTRICT="test" + +ruby_add_rdepend "json? ( dev-ruby/multi_json )" diff --git a/dev-ruby/vcr/vcr-6.0.0.ebuild b/dev-ruby/vcr/vcr-6.0.0.ebuild index ca4669a2923..9df479fba6a 100644 --- a/dev-ruby/vcr/vcr-6.0.0.ebuild +++ b/dev-ruby/vcr/vcr-6.0.0.ebuild @@ -17,8 +17,10 @@ LICENSE="MIT" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" SLOT="$(ver_cut 1)" -IUSE="test" +IUSE="json test" # Tests require all supported HTTP libraries to be present, and it is # not possible to avoid some of them without very extensive patches. RESTRICT="test" + +ruby_add_rdepend "json? ( dev-ruby/json )"