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 61D16138334 for ; Fri, 18 Oct 2019 06:37:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 843DBE08D9; Fri, 18 Oct 2019 06:37: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 65295E08C4 for ; Fri, 18 Oct 2019 06:37:21 +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 4A78434BFF1 for ; Fri, 18 Oct 2019 06:37:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC8C388B for ; Fri, 18 Oct 2019 06:37:18 +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: <1571380629.4ba24b32b18acd02f9fba532f4a1be98b2ca9d0a.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/wisper/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/wisper/Manifest dev-ruby/wisper/wisper-2.0.1.ebuild X-VCS-Directories: dev-ruby/wisper/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 4ba24b32b18acd02f9fba532f4a1be98b2ca9d0a X-VCS-Branch: master Date: Fri, 18 Oct 2019 06:37:18 +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: afd14836-1cd6-4be0-b065-0c5838864ad3 X-Archives-Hash: db24470123e8d5872ae50a75c21ea6e7 commit: 4ba24b32b18acd02f9fba532f4a1be98b2ca9d0a Author: Hans de Graaff gentoo org> AuthorDate: Fri Oct 18 06:36:40 2019 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Oct 18 06:37:09 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ba24b32 dev-ruby/wisper: add 2.0.1 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/wisper/Manifest | 1 + dev-ruby/wisper/wisper-2.0.1.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-ruby/wisper/Manifest b/dev-ruby/wisper/Manifest index 23734d1e5f0..828c6253042 100644 --- a/dev-ruby/wisper/Manifest +++ b/dev-ruby/wisper/Manifest @@ -1 +1,2 @@ DIST wisper-2.0.0.gem 21504 BLAKE2B 6a15adcc4424810ebaeab3bc77a1508df52fb96817edb4e04a620196eeef0e4ff773dcb384e11be93effc13773a642db96f83d93651bac97f137d70985514123 SHA512 0c932f799ea1bb4c9d11ebee72a36d5b2c6c3547ab50d44dcab3e666b00b6e2068bec76d3417d2e7f62cb33c7450aafabcfd2b823b4080946a2fc1731240b521 +DIST wisper-2.0.1.gem 26112 BLAKE2B 3dc78cecb80e052ec8bc308d02e5093ca55fc7d26a1dd98614907707d62d15e0cea1a20c7843ca7e6ee175800d320c3ef5854396505aaf0648161153b0e61368 SHA512 3518c218c0cb4ceb5d96260f7ac8845fb2f35d4a77c478cb56f1251fc29910a655ce070ebf3c17eaffd7d144ac54b436420bd2b2c4f72a8743f68dfdd72a514c diff --git a/dev-ruby/wisper/wisper-2.0.1.ebuild b/dev-ruby/wisper/wisper-2.0.1.ebuild new file mode 100644 index 00000000000..5231ea77d3e --- /dev/null +++ b/dev-ruby/wisper/wisper-2.0.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby24 ruby25 ruby26" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_BINWRAP="" + +inherit ruby-fakegem + +DESCRIPTION="A micro library providing objects with Publish-Subscribe capabilities" +HOMEPAGE="https://github.com/krisleech/wisper" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +all_ruby_prepare() { + sed -i -e '/coverall/I s:^:#:' spec/spec_helper.rb || die +}