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 CC774138334 for ; Mon, 17 Jun 2019 05:32:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0BC96E0899; Mon, 17 Jun 2019 05:32:52 +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 71B0BE0874 for ; Mon, 17 Jun 2019 05:32:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C99063462BD for ; Mon, 17 Jun 2019 05:32:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD55B326 for ; Mon, 17 Jun 2019 05:32:47 +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: <1560746345.f044b5c64644ad1fc143aafa1be97c1924a04b7a.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/equatable/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/equatable/Manifest dev-ruby/equatable/equatable-0.6.0.ebuild X-VCS-Directories: dev-ruby/equatable/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: f044b5c64644ad1fc143aafa1be97c1924a04b7a X-VCS-Branch: master Date: Mon, 17 Jun 2019 05:32:47 +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: b42e388a-2a0d-437f-a948-eda263e640da X-Archives-Hash: c761608a1caff4a9c15bec23afca6b94 commit: f044b5c64644ad1fc143aafa1be97c1924a04b7a Author: Hans de Graaff gentoo org> AuthorDate: Mon Jun 17 04:39:05 2019 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Jun 17 04:39:05 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f044b5c6 dev-ruby/equatable: add 0.6.0 Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 dev-ruby/equatable/Manifest | 1 + dev-ruby/equatable/equatable-0.6.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-ruby/equatable/Manifest b/dev-ruby/equatable/Manifest index e4dc8389443..1b89004a93c 100644 --- a/dev-ruby/equatable/Manifest +++ b/dev-ruby/equatable/Manifest @@ -1 +1,2 @@ DIST equatable-0.5.0.gem 10240 BLAKE2B cbc8b0250cba6a89be0205d585a25a0f9c050cee7e1803a8725259a18b4a9b1ed62771ff9407a7b702c293c55de7c8c3000d5c29f445f230c8acbc0a0f7be384 SHA512 968c5497d3d18ec899b34311965421bd3c53a4d55f56ee7594bab1db3ce320e245890b007b1412ea434fc15ad7be2ec6c345068c4aa3cf74e07c146f76039478 +DIST equatable-0.6.0.gem 10752 BLAKE2B 834c39fcd9a3156261ce16f6a24fa952175509cf75d28cb03b7acdab58948388b5ddad034841c28b2162734d74a54592a35b971f4c05d9c884808530157ba1f5 SHA512 43aa5021a9f3bf0a730e4e5aa45dd0dd3c868d713268617f36c4ed17b66775d7f27bd8bdffe4785a9d44da94e7f49feefa991f50f38c1a34868705aa4a92d4e9 diff --git a/dev-ruby/equatable/equatable-0.6.0.ebuild b/dev-ruby/equatable/equatable-0.6.0.ebuild new file mode 100644 index 00000000000..b5520ce3dab --- /dev/null +++ b/dev-ruby/equatable/equatable-0.6.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby24 ruby25 ruby26" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem + +DESCRIPTION="Allows ruby objects to implement equality comparison and inspection methods" +HOMEPAGE="https://github.com/piotrmurach/equatable" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +all_ruby_prepare() { + echo "-rspec_helper" > .rspec || die +}