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/binding_of_caller/
Date: Sun, 22 Oct 2017 06:16:47
Message-Id: 1508652959.068d5e856e9f5a09b881ed791b3d60918c57d302.graaff@gentoo
1 commit: 068d5e856e9f5a09b881ed791b3d60918c57d302
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 22 06:15:59 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 22 06:15:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=068d5e85
7
8 dev-ruby/binding_of_caller: add 0.7.3
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 dev-ruby/binding_of_caller/Manifest | 1 +
13 .../binding_of_caller-0.7.3.ebuild | 26 ++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-ruby/binding_of_caller/Manifest b/dev-ruby/binding_of_caller/Manifest
17 index 4c7382e3a35..280e12be21c 100644
18 --- a/dev-ruby/binding_of_caller/Manifest
19 +++ b/dev-ruby/binding_of_caller/Manifest
20 @@ -1 +1,2 @@
21 DIST binding_of_caller-0.7.2.gem 85504 SHA256 d327682ce1d8e8cc46e282a46052946af0de16bef734014c63df0aac66334f96 SHA512 6eb114070c3f15801c4f2454433630c207c2fb93afcf5906fa1288985303ff87c54ca07273b623bc2d3f76dc5bf363feb1561e109f599776a785aab65dfd7132 WHIRLPOOL 1ccfe6389e0a62730015e2e9bc3b0c20278e9175411561ab913225179e2bc37e58b66aa45cdd8fac32ec67c68a7838471a92140ffe1eb0be5a419b9a551721db
22 +DIST binding_of_caller-0.7.3.gem 87552 SHA256 c32ba3d6a64a1272118e09d40ae1b0f496924c35baef7149859ee52a453f2ec0 SHA512 e16bfc1fffe7e7d87013506a28f2894c3737a9dfd149ab4c7deee7332e6a3b8eecde5d837a58defcb0ad45a6a8d01ffd7b1e32a9395fa895d2dc84d8e534e547 WHIRLPOOL 5095fd9fb3e253f3893a94579f00234558c32b11bcab32a20cd6bb05a9145f15f452b51e16ad2ceec1a4b08a74adf17222d3b665513458e7445cff6e496cc040
23
24 diff --git a/dev-ruby/binding_of_caller/binding_of_caller-0.7.3.ebuild b/dev-ruby/binding_of_caller/binding_of_caller-0.7.3.ebuild
25 new file mode 100644
26 index 00000000000..db88afa35d4
27 --- /dev/null
28 +++ b/dev-ruby/binding_of_caller/binding_of_caller-0.7.3.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +USE_RUBY="ruby22 ruby23 ruby24"
35 +
36 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
37 +RUBY_FAKEGEM_EXTRADOC="HISTORY README.md"
38 +
39 +inherit ruby-fakegem
40 +
41 +DESCRIPTION="Retrieve the binding of a method's caller"
42 +HOMEPAGE="https://github.com/banister/binding_of_caller"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE="test"
48 +
49 +ruby_add_rdepend ">=dev-ruby/debug_inspector-0.0.1"
50 +
51 +ruby_add_bdepend "test? ( dev-ruby/bacon )"
52 +
53 +each_ruby_test() {
54 + ${RUBY} -S bacon -Itest -rubygems -a -q || die
55 +}