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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AF66A15ACFB for ; Mon, 24 Apr 2023 09:18:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E44A6E08CD; Mon, 24 Apr 2023 09:18:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 58DCDE08CD for ; Mon, 24 Apr 2023 09:18:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 22DCF335D28 for ; Mon, 24 Apr 2023 09:18:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B62B8920 for ; Mon, 24 Apr 2023 09:18:55 +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: <1682327924.ec1cefbd929347a9d91f2e696b472f5c7c968dca.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/memoist/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/memoist/memoist-0.16.2-r1.ebuild X-VCS-Directories: dev-ruby/memoist/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: ec1cefbd929347a9d91f2e696b472f5c7c968dca X-VCS-Branch: master Date: Mon, 24 Apr 2023 09:18:55 +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: 9846c3b5-9d99-41c3-b633-793aa6718f4a X-Archives-Hash: b12012d6e36bd2f15eba4320c9e9618e commit: ec1cefbd929347a9d91f2e696b472f5c7c968dca Author: Hans de Graaff gentoo org> AuthorDate: Sun Apr 23 06:29:31 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Apr 24 09:18:44 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec1cefbd dev-ruby/memoist: update EAPI 7 -> 8, add ruby32 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/memoist/memoist-0.16.2-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-ruby/memoist/memoist-0.16.2-r1.ebuild b/dev-ruby/memoist/memoist-0.16.2-r1.ebuild new file mode 100644 index 000000000000..f3d58273dd94 --- /dev/null +++ b/dev-ruby/memoist/memoist-0.16.2-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby30 ruby31 ruby32" + +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 ~riscv ~x86" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/minitest )" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' Rakefile || die +}