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 7671113997F for ; Sat, 9 Nov 2019 06:11:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6ED33E092A; Sat, 9 Nov 2019 06:11:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 54FEFE092A for ; Sat, 9 Nov 2019 06:11:41 +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 1FC2234CAFD for ; Sat, 9 Nov 2019 06:11:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED9438A9 for ; Sat, 9 Nov 2019 06:11:36 +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: <1573279888.a1f5ee76d1f181af2f4ea773395fad37a8e3a3eb.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/memoist/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/memoist/Manifest dev-ruby/memoist/memoist-0.16.1.ebuild X-VCS-Directories: dev-ruby/memoist/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: a1f5ee76d1f181af2f4ea773395fad37a8e3a3eb X-VCS-Branch: master Date: Sat, 9 Nov 2019 06:11:36 +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: 9995c392-2ea1-423d-bcc3-3c7261c26a9b X-Archives-Hash: a8a158c98c2ecd409d844431aa752b19 commit: a1f5ee76d1f181af2f4ea773395fad37a8e3a3eb Author: Hans de Graaff gentoo org> AuthorDate: Sat Nov 9 06:11:28 2019 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Nov 9 06:11:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1f5ee76 dev-ruby/memoist: add 0.16.1 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/memoist/Manifest | 1 + dev-ruby/memoist/memoist-0.16.1.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-ruby/memoist/Manifest b/dev-ruby/memoist/Manifest index 5c2d4885e08..17c92157543 100644 --- a/dev-ruby/memoist/Manifest +++ b/dev-ruby/memoist/Manifest @@ -1 +1,2 @@ DIST memoist-0.16.0.gem 12288 BLAKE2B 268d0ad8b197101b7a1af0e9c67fae7cabe7d4d91bbf7bbd4435f4390176faad46d2a2f0699830bed86eb39acceb698870cd7b0a79cb1038390478d37596c700 SHA512 55a560793cfb911ef15085de6fac2816e8340b9939394a4c2c01264e0da3ca4008081916a0431e6f76e6b90c0294305cbd0803643f159f946973ff4dc7c94df5 +DIST memoist-0.16.1.gem 13824 BLAKE2B 0f5f67c8d206602adf53093e0a840d38f31b5b91403b56061e9dcce754ef1c9effb4d9edc4ce85128051bb91ddd2c1152396f28cc2da6bcb7d02af7c43342307 SHA512 bd5212e9821e185e900be1cdd22670743546ec81ec498327fa452cfaf43a7f55b94ccfa7e30483abd6a0952db9ef357b49667ba966a157920d6bfad1a971dd08 diff --git a/dev-ruby/memoist/memoist-0.16.1.ebuild b/dev-ruby/memoist/memoist-0.16.1.ebuild new file mode 100644 index 00000000000..f35cca6299a --- /dev/null +++ b/dev-ruby/memoist/memoist-0.16.1.ebuild @@ -0,0 +1,23 @@ +# 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_EXTRADOC="README.md" + +inherit ruby-fakegem +DESCRIPTION="ActiveSupport::Memoizable with a few enhancements" +HOMEPAGE="https://github.com/matthewrudy/memoist" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/minitest )" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' Rakefile || die +}