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 0ED7D139335 for ; Sun, 27 Jun 2021 05:50:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 301F2E086F; Sun, 27 Jun 2021 05:50:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 14BAFE0823 for ; Sun, 27 Jun 2021 05:50:26 +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 EB7CE33E55B for ; Sun, 27 Jun 2021 05:50:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 629497B6 for ; Sun, 27 Jun 2021 05:50:23 +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: <1624773019.cb3bac8ecec2ad5b4468445561d71364b3fc720d.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/instance_storage/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/instance_storage/Manifest dev-ruby/instance_storage/instance_storage-2.0.0.ebuild X-VCS-Directories: dev-ruby/instance_storage/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: cb3bac8ecec2ad5b4468445561d71364b3fc720d X-VCS-Branch: master Date: Sun, 27 Jun 2021 05:50:23 +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: e9efbac3-a79a-40a2-abb1-b8dc2da0e7e3 X-Archives-Hash: 54181f9a149ba85103579616edda8562 commit: cb3bac8ecec2ad5b4468445561d71364b3fc720d Author: Hans de Graaff gentoo org> AuthorDate: Sun Jun 27 05:48:05 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Jun 27 05:50:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb3bac8e dev-ruby/instance_storage: add 2.0.0 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/instance_storage/Manifest | 1 + .../instance_storage/instance_storage-2.0.0.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-ruby/instance_storage/Manifest b/dev-ruby/instance_storage/Manifest index ca6b42a1cf2..461362a7d91 100644 --- a/dev-ruby/instance_storage/Manifest +++ b/dev-ruby/instance_storage/Manifest @@ -1 +1,2 @@ DIST instance_storage-1.0.0.gem 7680 BLAKE2B e8c4f90c90c6efebcbaa577ab17824f4d759782f1b3985679200ca97b89f04245c562f6d9aa96ac894d488417f4e393bb7faf28ab18aa3f3ede1e03365706a29 SHA512 45ff98b3d0ab47d3459d868eb1b0075abb83b23bbc3a9b84f261077bdddc385ed016e81d01c19f93fa6cffd7cb9020ce1e22411636709f18af09a76c7d44598f +DIST instance_storage-2.0.0.gem 8192 BLAKE2B e71926c7c35691d5d46a438b3ebcf2e138f079ece1d6ef0b8845927425acc86ff0f09a2afe17b5bca3d0c9beb9bfc69c61e3c3a6c9ccca9a9e9398a86f6fd9d4 SHA512 ad986dd1220b19f171c9808c4692bbb9a9e4f6cb59ab6bf403e5a53b4af5f753941b76cba754d9d56a300b8adef8937094764985a994e8a87c7f99949c0e264a diff --git a/dev-ruby/instance_storage/instance_storage-2.0.0.ebuild b/dev-ruby/instance_storage/instance_storage-2.0.0.ebuild new file mode 100644 index 00000000000..3050aecf527 --- /dev/null +++ b/dev-ruby/instance_storage/instance_storage-2.0.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem +DESCRIPTION="Manage class instances with dictionary" +HOMEPAGE="https://rubygems.org/gems/instance_storage/" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64 ~x86" +IUSE="" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' Rakefile test/instance_storage_test.rb || die +}