Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/introspection/
Date: Thu, 16 Mar 2023 07:34:59
Message-Id: 1678952092.ab9eb917c0ed679a1470e28358214eafef336956.graaff@gentoo
1 commit: ab9eb917c0ed679a1470e28358214eafef336956
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 16 06:59:58 2023 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 16 07:34:52 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab9eb917
7
8 dev-ruby/introspection: update EAPI 7 -> 8
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 .../introspection/introspection-0.0.4-r2.ebuild | 28 ++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/dev-ruby/introspection/introspection-0.0.4-r2.ebuild b/dev-ruby/introspection/introspection-0.0.4-r2.ebuild
16 new file mode 100644
17 index 000000000000..9539a60f5f90
18 --- /dev/null
19 +++ b/dev-ruby/introspection/introspection-0.0.4-r2.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2023 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +USE_RUBY="ruby27 ruby30 ruby31 ruby32"
27 +
28 +# No documentation task
29 +RUBY_FAKEGEM_TASK_DOC=""
30 +RUBY_FAKEGEM_EXTRADOC="README.md"
31 +
32 +inherit ruby-fakegem
33 +
34 +DESCRIPTION="Dynamic inspection of the hierarchy of method definitions on a Ruby object"
35 +HOMEPAGE="https://jamesmead.org/"
36 +
37 +LICENSE="MIT"
38 +SLOT="0"
39 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
40 +IUSE=""
41 +
42 +ruby_add_rdepend ">=dev-ruby/metaclass-0.0.1"
43 +
44 +ruby_add_bdepend "test? ( dev-ruby/blankslate )"
45 +
46 +all_ruby_prepare() {
47 + sed -i -e '/bundler/I s:^:#:' Rakefile test/test_helper.rb || die
48 +}