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 199B815A7D9 for ; Thu, 16 Mar 2023 07:34:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51B36E0794; Thu, 16 Mar 2023 07:34: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 36525E0794 for ; Thu, 16 Mar 2023 07:34: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 2EBD9335DAF for ; Thu, 16 Mar 2023 07:34:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A79498DA for ; Thu, 16 Mar 2023 07:34: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: <1678952092.ab9eb917c0ed679a1470e28358214eafef336956.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/introspection/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/introspection/introspection-0.0.4-r2.ebuild X-VCS-Directories: dev-ruby/introspection/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: ab9eb917c0ed679a1470e28358214eafef336956 X-VCS-Branch: master Date: Thu, 16 Mar 2023 07:34: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: 870871f0-345b-44fc-974a-4a53a69e5ca6 X-Archives-Hash: 724ddb3c77c5bd50c5b02888d0d230c8 commit: ab9eb917c0ed679a1470e28358214eafef336956 Author: Hans de Graaff gentoo org> AuthorDate: Thu Mar 16 06:59:58 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Thu Mar 16 07:34:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab9eb917 dev-ruby/introspection: update EAPI 7 -> 8 Signed-off-by: Hans de Graaff gentoo.org> .../introspection/introspection-0.0.4-r2.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-ruby/introspection/introspection-0.0.4-r2.ebuild b/dev-ruby/introspection/introspection-0.0.4-r2.ebuild new file mode 100644 index 000000000000..9539a60f5f90 --- /dev/null +++ b/dev-ruby/introspection/introspection-0.0.4-r2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby27 ruby30 ruby31 ruby32" + +# No documentation task +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem + +DESCRIPTION="Dynamic inspection of the hierarchy of method definitions on a Ruby object" +HOMEPAGE="https://jamesmead.org/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/metaclass-0.0.1" + +ruby_add_bdepend "test? ( dev-ruby/blankslate )" + +all_ruby_prepare() { + sed -i -e '/bundler/I s:^:#:' Rakefile test/test_helper.rb || die +}