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: Tue, 01 Nov 2016 06:28:53
Message-Id: 1477981660.9513576ea313ba241e6aac100ac6f307a681ece3.graaff@gentoo
1 commit: 9513576ea313ba241e6aac100ac6f307a681ece3
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 06:27:40 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 06:27:40 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9513576e
7
8 dev-ruby/introspection: add 0.0.4
9
10 Package-Manager: portage-2.3.0
11
12 dev-ruby/introspection/Manifest | 1 +
13 dev-ruby/introspection/introspection-0.0.4.ebuild | 27 +++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-ruby/introspection/Manifest b/dev-ruby/introspection/Manifest
17 index 09c6442..6c1081d 100644
18 --- a/dev-ruby/introspection/Manifest
19 +++ b/dev-ruby/introspection/Manifest
20 @@ -1 +1,2 @@
21 DIST introspection-0.0.3.gem 9216 SHA256 3933d9573f20e00cf26a03bb7c3f765ed136da5ca01dc9c5987875877538323c SHA512 423722f402a8a5cb5f415c498cf754a2b5084b0a89ada48b982a97e3951d9af4bcd675d5dc4a2eacdd0673bf08facaba845e767e3e248e0a8ec922eddbc53c37 WHIRLPOOL 1402be6c805c09850c4705970c91aed6e7763f26483f0e131c12d5feee3bf5985de23612e39c055b9a84f70fd513d78c8be31d1cc719591160f2626699a05581
22 +DIST introspection-0.0.4.gem 9216 SHA256 8abd4f906cc644aa39bf879f28ec9a0267452342c5689d6c75f40336655c56f8 SHA512 c228827ac9d8a82a104e78daadf038c674cd464bf726fc3bd1efa82e9d9cab37f6ee909f578585e7846378f0b755ed4d60fa119fd699f6c40188ea2de4ac7084 WHIRLPOOL b5d8df9c9b0db1eba7524185fd3cc12715ba1ad5a8997c38a9f6789ff5f594b9f775409dd1ead5f1f0ce43614966d13ef909f7c956526ec7e5a9c787b864a882
23
24 diff --git a/dev-ruby/introspection/introspection-0.0.4.ebuild b/dev-ruby/introspection/introspection-0.0.4.ebuild
25 new file mode 100644
26 index 00000000..33dbf22
27 --- /dev/null
28 +++ b/dev-ruby/introspection/introspection-0.0.4.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +USE_RUBY="ruby20 ruby21 ruby22 ruby23"
37 +
38 +# No documentation task
39 +RUBY_FAKEGEM_TASK_DOC=""
40 +RUBY_FAKEGEM_EXTRADOC="README.md"
41 +
42 +inherit ruby-fakegem
43 +
44 +DESCRIPTION="Dynamic inspection of the hierarchy of method definitions on a Ruby object"
45 +HOMEPAGE="http://jamesmead.org/"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
50 +IUSE=""
51 +
52 +ruby_add_rdepend ">=dev-ruby/metaclass-0.0.1"
53 +
54 +all_ruby_prepare() {
55 + sed -i -e '/bundler/I s:^:#:' Rakefile test/test_helper.rb || die
56 +}