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 02DB5138359 for ; Sat, 26 Sep 2020 07:20:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F319DE0798; Sat, 26 Sep 2020 07:20:23 +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 D9250E0798 for ; Sat, 26 Sep 2020 07:20:23 +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 296FD33BDF4 for ; Sat, 26 Sep 2020 07:20:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 946CE365 for ; Sat, 26 Sep 2020 07:20:06 +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: <1601104802.70ec42c96d23a9b84a5a8ff4e4da204a78cf067d.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/spy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/spy/Manifest dev-ruby/spy/spy-1.0.1.ebuild X-VCS-Directories: dev-ruby/spy/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 70ec42c96d23a9b84a5a8ff4e4da204a78cf067d X-VCS-Branch: master Date: Sat, 26 Sep 2020 07:20:06 +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: 9cb0e14f-9edd-4efe-80b0-2976d573d72f X-Archives-Hash: c171922473800e83f12d53a9065e8396 commit: 70ec42c96d23a9b84a5a8ff4e4da204a78cf067d Author: Hans de Graaff gentoo org> AuthorDate: Sat Sep 26 07:18:10 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Sep 26 07:20:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70ec42c9 dev-ruby/spy: add 1.0.1 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/spy/Manifest | 1 + dev-ruby/spy/spy-1.0.1.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-ruby/spy/Manifest b/dev-ruby/spy/Manifest index 53df2ffc97c..9ffc4706fe6 100644 --- a/dev-ruby/spy/Manifest +++ b/dev-ruby/spy/Manifest @@ -1 +1,2 @@ DIST spy-1.0.0.gem 33280 BLAKE2B e85c6de9ad9eedd61f95d0a22a87d402949fffe925af3c525a9ed7842ec4582a5063caa6767ece7c2c6f470d10abd44015c0e02a4f31f21c85d6db6b6a28c2a3 SHA512 adea03cd0c2e60f964887c3a80a29deabe7bf1d98f2b5490e8ed833e64c53144437fca636ec1cfa9413f93dbcf154b2cd27afc9363b33c37d99db7cb4790b358 +DIST spy-1.0.1.gem 33280 BLAKE2B cd5f0b6f74da5f693b2718ba7021359fe9292455ffc2c79510efce1fd40f84ffc49b92ea78d449e9722ee00c1d804e82ba88b3481c0297e58c0d7a8c177dbc85 SHA512 c9d7060b92f748897b2a5421df13024047c7418c1e0ba8e83b84d1a27372dcb2ed70fe2021ef23dee86f45dc5c326adb55a5ffbdc4f78895b2c6cf31838cc335 diff --git a/dev-ruby/spy/spy-1.0.1.ebuild b/dev-ruby/spy/spy-1.0.1.ebuild new file mode 100644 index 00000000000..c7879c23402 --- /dev/null +++ b/dev-ruby/spy/spy-1.0.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md" + +inherit multilib ruby-fakegem + +DESCRIPTION="A simple opinionated mocking framework" +HOMEPAGE="https://github.com/ryanong/spy" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/minitest:0 )" + +all_ruby_prepare() { + sed -i -e "/bundler/d" -e "/pry/d" -e "/[Cc]overalls/d" -e '/[Rr]eporters/d' Rakefile test/test_helper.rb || die +}